-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
44 lines (44 loc) · 881 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
{
"compileOnSave": false,
"compilerOptions": {
"module": "CommonJS",
"strict": true,
"noEmit": false,
"importHelpers": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"preserveSymlinks": false,
"preserveWatchOutput": true,
"pretty": true,
"sourceMap": false,
"baseUrl": ".",
"outDir": "./dist",
"declaration": true,
"noImplicitAny": false,
"target": "es5",
"types": [
"node",
],
"paths": {
"tslib": [
"node_modules/tslib/tslib.d.ts"
]
},
"lib": [
"esnext",
"es2015.promise"
]
},
"include": [
"src/**/*.ts",
"test/**/*.ts",
],
"exclude": [
"node_modules",
"test/**/*.ts",
]
}