-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
35 lines (35 loc) · 1.14 KB
/
tsconfig.base.json
File metadata and controls
35 lines (35 loc) · 1.14 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
33
34
35
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2022",
"module": "esnext",
"lib": ["ES2022", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@idem/shared-models": ["packages/shared-models/src"],
"@idem/shared-models/*": ["packages/shared-models/src/*"],
"@idem/shared-auth-client": ["packages/shared-auth-client/src"],
"@idem/shared-auth-client/*": ["packages/shared-auth-client/src/*"],
"@idem/shared-styles": ["packages/shared-styles"],
"@idem/shared-styles/*": ["packages/shared-styles/*"]
},
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": false,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true
},
"exclude": ["node_modules", "tmp", "dist", "build"]
}