-
Notifications
You must be signed in to change notification settings - Fork 8
/
tsconfig.json
62 lines (59 loc) · 1.53 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
59
60
61
62
{
"compilerOptions": {
// Output
"outDir": "./lib",
"target": "es6",
"module": "es6",
"sourceMap": true,
"declaration": true,
"removeComments": false,
"alwaysStrict": true,
"newLine": "LF",
// Module resolution, libs and types
"moduleResolution": "node",
"lib": [
"es5",
"es2015.core",
"es2015.collection",
"es2015.iterable",
"es2015.symbol",
"es2015.symbol.wellknown"
],
"baseUrl": ".",
"paths": {
"*": [
"packages/@types/*",
"*"
]
},
"typeRoots": [
"./node_modules/@types",
"./packages/@types"
],
/*"types": [
"node"
],*/
// Type System
// Remove @internal annotated symbols from .d.ts files
"stripInternal": true,
"strictNullChecks": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noImplicitAny": false, //TODO: fix this
"noImplicitReturns": true,
"noImplicitUseStrict": false,
"noFallthroughCasesInSwitch": true,
"noImplicitThis": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
// Compiler
"diagnostics": true,
"pretty": true,
"listFiles": true,
"listEmittedFiles": true
},
"compileOnSave": false,
"include": [
"./src"
]
}