-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
58 lines (58 loc) · 1.2 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"compilerOptions": {
"outDir": "./dist",
"allowJs": false,
"allowSyntheticDefaultImports": true,
"charset": "utf8",
"checkJs": false,
"emitBOM": false,
"newLine": "lf",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": false,
"lib": [
"dom",
"dom.iterable",
"esnext",
"es6",
"es2015.promise"
],
"noImplicitAny": false,
"noImplicitReturns": true,
"suppressImplicitAnyIndexErrors": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noImplicitThis": true,
"resolveJsonModule": true,
"noUnusedParameters": true,
"importHelpers": true,
"noEmitHelpers": true,
"moduleResolution": "node",
"pretty": true,
"target": "es5",
"module": "commonjs",
"jsx": "react",
"typeRoots": [
"./node_modules/@types",
"./typings"
],
"baseUrl": ".",
"paths": {
"*": [
"./src/*"
]
},
},
"include": [
"src/**/*",
"typings/nconf/nconf.d.ts"
],
"exclude": [
"node_modules",
"dist",
"build"
]
}