-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
30 lines (30 loc) · 1.01 KB
/
tsconfig.base.json
File metadata and controls
30 lines (30 loc) · 1.01 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
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@itxtech/fdnext-core": ["packages/core/src/index.ts"],
"@itxtech/fdnext-core/node": ["packages/core/src/loaders/node.ts"],
"@itxtech/fdnext-dsl": ["packages/dsl/src/index.ts"],
"@itxtech/fdnext-server": ["packages/server/src/index.ts"],
"@itxtech/fdnext-cli": ["packages/cli/src/index.ts"],
"@itxtech/fdnext-compat-test": ["packages/compat-test/src/index.ts"],
"@itxtech/fdnext-fdbgen": ["packages/fdbgen/src/index.ts"],
"@itxtech/fdnext-resources": ["packages/resources/index.ts"]
},
"target": "ESNext",
"lib": ["ESNext"],
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"declaration": true,
"declarationMap": true,
"sourceMap": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"types": ["node"],
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true
}
}