forked from NeuraLegion/bright-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
40 lines (40 loc) · 921 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"baseUrl": ".",
"outDir": "dist",
"target": "es2015",
"lib": [
"es2016"
],
"newLine": "LF",
"module": "commonjs",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"strict": true,
"strictNullChecks": false,
"sourceMap": true,
"skipLibCheck": true,
"importHelpers": true,
"downlevelIteration": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noEmitOnError": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"noUnusedParameters": true,
"forceConsistentCasingInFileNames": true,
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"typeRoots": [
"node_modules/@types",
"typings"
]
},
"exclude": [
"**/node_modules",
"**/.*/",
"**/dist",
"**/*.spec.ts"
]
}