-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
tsconfig-base.json
38 lines (38 loc) · 1.05 KB
/
tsconfig-base.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
{
"compilerOptions": {
"target": "es6",
"module": "esnext",
"typeRoots": ["./node_modules/@types", "types"],
"lib": ["dom", "esnext", "dom.iterable", "scripthost"],
"strict": true,
"esModuleInterop": true,
"jsx": "preserve",
"skipLibCheck": true,
"allowUnreachableCode": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": false,
"noImplicitAny": true,
"noUnusedParameters": false,
"noImplicitThis": true,
"noEmitOnError": false,
"strictNullChecks": true,
"allowJs": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true
},
"exclude": ["./node_modules/**/*", "./lib/**/*", "./es/**/*", "./dist/**/*"],
"ts-node": {
"compilerOptions": {
"module": "CommonJS",
"resolveJsonModule": true,
"noImplicitAny": false,
"noEmitOnError": false,
"noUnusedLocals": false,
"noUnusedParameters": false
}
}
}