-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
50 lines (50 loc) · 1.25 KB
/
tsconfig.json
File metadata and controls
50 lines (50 loc) · 1.25 KB
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
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"isolatedModules": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noEmitHelpers": true,
"importHelpers": true,
"declaration": false,
"noImplicitAny": true,
"removeComments": true,
"sourceMap": true,
"outDir": "build/",
"noLib": false,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true,
"moduleResolution": "node",
"strictNullChecks": true,
"noImplicitThis": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"lib": [
"dom",
"es5",
"es6",
"es2016" // TODO: make sure to include a polyfill for findIndex
],
"types": [
"lodash",
"ace",
"jasmine",
"socket.io-client"
]
},
"awesomeTypescriptLoaderOptions": {
"resolveGlobs": true,
"forkChecker": true
},
"exclude": [
"node_modules",
"server"
],
"buildOnSave": false,
"compileOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}