-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
39 lines (39 loc) · 1.05 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
{
"compilerOptions": {
"moduleResolution": "node",
"module": "es2015",
"target": "es2015",
"lib": ["dom", "es6", "es2015", "es2016", "es2017", "scripthost"],
"sourceMap": true,
// "declaration": true,
// "declarationDir": "./declarations",
"alwaysStrict": true,
"noEmitOnError": true,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"strictNullChecks": true,
// "noUnusedParameters": true,
// "noUnusedLocals": true,
// "noFallthroughCasesInSwitch": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"baseUrl": ".",
"paths": {
},
// "traceResolution": true,
"types": ["node", "jasmine"],
"jsx": "react",
"jsxFactory": "FooBar.dom"
},
"include": [
"src/**/*"
],
"exclude": [
"bin",
"modules",
"node_modules",
"spec"
]
}