-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
32 lines (32 loc) · 1.05 KB
/
tsconfig.base.json
File metadata and controls
32 lines (32 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"extends": "@tsconfig/node24/tsconfig.json",
"compilerOptions": {
"lib": [
"es2024",
"ESNext.Array",
"ESNext.Collection",
"ESNext.Error",
"ESNext.Iterator",
"ESNext.Promise",
"dom"
],
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"verbatimModuleSyntax": true,
"isolatedModules": true,
"allowImportingTsExtensions": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@stackables/bridge-types": ["./packages/bridge-types/src/index.ts"],
"@stackables/bridge-core": ["./packages/bridge-core/src/index.ts"],
"@stackables/bridge-stdlib": ["./packages/bridge-stdlib/src/index.ts"],
"@stackables/bridge-parser": ["./packages/bridge-parser/src/index.ts"],
"@stackables/bridge-compiler": ["./packages/bridge-compiler/src/index.ts"],
"@stackables/bridge-graphql": ["./packages/bridge-graphql/src/index.ts"],
"@stackables/bridge": ["./packages/bridge/src/index.ts"]
}
}
}