-
Notifications
You must be signed in to change notification settings - Fork 26
/
tsconfig.json
48 lines (48 loc) · 991 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
39
40
41
42
43
44
45
46
47
48
{
"compileOnSave": true,
"compilerOptions": {
"target": "es5",
"module": "none",
"lib": [
"es5",
"es2015.promise",
"dom",
//"webworker"
],
"outFile": "build/development/lzutf8.js",
"watch": false,
"sourceMap": true,
"removeComments": false,
"noEmitHelpers": false,
"noEmitOnError": true,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"allowJs": false,
"declaration": true,
"strictNullChecks": true,
"noLib": false,
"noEmit": false,
"noFallthroughCasesInSwitch": false,
"newLine": "LF",
"emitBOM": false,
"noUnusedLocals": true,
"noUnusedParameters": false,
"skipLibCheck": false,
"alwaysStrict": false,
"pretty": false
},
"include": [
"src/Globals/**/*.ts",
"src/**/*.ts",
"tests/src/Environment/**/*.ts",
"tests/src/Common/**/*.ts",
"tests/src/**/*.ts",
"benchmarks/src/**/*.ts",
"cli/src/**/*.ts"
],
"exclude": [
"node_modules"
]
}