-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
42 lines (42 loc) · 1.11 KB
/
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
41
42
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationDir": "dist",
"outDir": "dist",
"rootDir": "src",
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"noEmit": false,
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": false,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveConstEnums": true,
"resolveJsonModule": true,
"removeComments": false,
"skipLibCheck": true,
"sourceMap": false,
"strict": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"suppressImplicitAnyIndexErrors": false,
"moduleResolution": "node",
"target": "es6",
"module": "commonjs",
"lib": [
"es6"
]
},
"exclude": ["node_modules", "src/**/*.spec.ts"],
"include": ["src"]
}