-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
46 lines (45 loc) · 1.08 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
{
"compilerOptions": {
"baseUrl": "./src",
"outDir": "./dist",
"target": "ES2015", // we'll transpile down to ES5 in Babel
"lib": ["ES2015", "DOM"],
"allowJs": false,
"checkJs": false,
"alwaysStrict": true,
"sourceMap": true,
"charset": "utf8",
"newLine": "lf",
"skipLibCheck": true, // skip type checking of *.d.ts files
"allowSyntheticDefaultImports": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"downlevelIteration": true,
"forceConsistentCasingInFileNames": true,
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitUseStrict": false,
"noStrictGenericChecks": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": true,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"importsNotUsedAsValues": "error"
},
"include": [
"./src"
],
"exclude": [
"./node_modules"
],
"ts-node": {
"module": "commonjs"
}
}