-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
45 lines (45 loc) · 1.15 KB
/
Copy pathtsconfig.json
File metadata and controls
45 lines (45 loc) · 1.15 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
{
"compilerOptions": {
"strictNullChecks": false,
"noImplicitAny": false,
"noImplicitThis": false,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveConstEnums": true,
"allowUnusedLabels": true,
"allowUnreachableCode": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"noEmit": false,
"noEmitOnError": true,
"noEmitHelpers": true,
"importHelpers": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"pretty": true,
"declaration": false,
"isolatedModules": false,
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"noResolve": false,
"removeComments": false,
"sourceMap": true,
"target": "esnext",
"baseUrl": ".",
"rootDir": ".",
"outDir": "out",
"paths": {
"~*": ["node_modules/*"],
"@*": ["packages/*"]
}
},
"exclude": [
"**/#*", // all files where names starts with #
"**/out", // all 'out' directories
"**/tmp", // all 'tmp' directories
"**/dist" // all 'dist' directories
]
}