-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
39 lines (39 loc) · 1.08 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
{
"version": "2.6.2",
"compilerOptions": {
"module": "CommonJS",
"moduleResolution": "node",
"target": "es5",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"jsx": "react",
"noImplicitAny": false,
"preserveConstEnums": true,
"declaration": false,
"pretty": false,
"removeComments": false,
"sourceMap": true,
"lib": ["ES2015", "ES2016", "ES2017"],
"outDir": "./build-js",
"skipLibCheck": true,
"typeRoots": [
"./node_modules/@types"
]
},
"include": [
"./node_modules/@types/**/*.d.ts",
"./node_modules/typescript/lib/lib.es6.d.ts",
"./node_modules/typescript/lib/lib.es2016.d.ts",
"./node_modules/typescript/lib/lib.es2017.d.ts",
"./node_modules/typescript/lib/lib.es2015.symbol.d.ts",
"./*.ts",
"./ts/*.ts",
"./ts/**/*.ts"
],
"exclude": [
"*.json",
"*.kjsm"
]
}