-
Notifications
You must be signed in to change notification settings - Fork 26
/
tsconfig.json
38 lines (38 loc) · 1013 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
{
"compilerOptions": {
"module": "ES6",
"outDir": "./lib/esm",
"moduleResolution": "node",
"skipLibCheck": true,
"importHelpers": false,
"target": "es6",
"removeComments": true,
"strict": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"declaration": true,
"sourceMap": false,
"inlineSourceMap": true,
"preserveConstEnums": true,
"noImplicitAny": true,
"noEmitOnError": true,
"noEmitHelpers": false,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"experimentalDecorators": true,
"strictNullChecks": true,
"pretty": true,
"forceConsistentCasingInFileNames": true,
"noUnusedLocals": true,
"jsx": "react",
"lib": ["es2017", "es2016", "dom"],
"baseUrl": ".",
"paths": {
"*": ["src/*", "node_modules/*"]
}
},
"exclude": ["lib", "node_modules", "**/*.spec.*"],
"include": ["src/**/*"]
}