-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
45 lines (45 loc) · 977 Bytes
/
tsconfig.json
File metadata and controls
45 lines (45 loc) · 977 Bytes
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
// http://www.typescriptlang.org/docs/handbook/compiler-options.html
{
"compilerOptions": {
"strict": true,
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"importHelpers": true,
"sourceMap": true,
"rootDir": "src",
"outDir": "pack/js",
"diagnostics": true,
"declaration": true,
"declarationDir": "build",
"downlevelIteration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitOnError": true,
"noImplicitReturns": true,
"preserveConstEnums": true,
"newLine": "LF",
"pretty": true,
"typeRoots": [
"node_modules/@types"
],
"lib": [
"dom",
"es6",
"es7",
"es2016.array.include",
"es2017.object",
"es2017.sharedmemory",
"esnext",
"esnext.asynciterable"
]
},
"include": [
"./src/**/*.ts"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}