-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
55 lines (55 loc) · 1.29 KB
/
Copy pathtsconfig.base.json
File metadata and controls
55 lines (55 loc) · 1.29 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"sourceMap": false,
"declaration": false,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"importHelpers": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"moduleResolution": "node",
"target": "es2017",
"module": "esnext",
"lib": [
"es2020",
"dom"
],
"paths": {
"@utils": [
"packages/core/src/utils/index.ts"
],
"@global": [
"packages/core/src/global/index.ts"
],
"@baloise/ds-core": [
"packages/core/src/index.ts"
],
"@baloise/ds-tokens": [
"packages/tokens/dist/tokens.js"
],
"@baloise/ds-playwright": [
"packages/playwright/src/index.ts"
],
"libs-output-target-angular": [
"libs/output-target-angular/src/index.ts"
],
"libs-output-target-web": [
"libs/output-target-web/src/index.ts"
]
}
},
"exclude": [
"node_modules",
"tmp"
]
}