-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
44 lines (44 loc) · 910 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
{
"compilerOptions": {
"experimentalDecorators": true,
"baseUrl": ".",
"target": "es6",
"module": "ESNext",
"lib": [
"dom",
"dom.Iterable",
"es5",
"es2015.promise",
"es2015",
"es2016",
"es2017",
"es2018",
"es2019",
"es2020",
"WebWorker"
],
"allowJs": true,
"alwaysStrict": true,
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"moduleResolution": "node",
"declaration": true,
"importHelpers": true,
"outDir": "./output",
"strict": true,
"preserveSymlinks": true,
"esModuleInterop": true,
"typeRoots": ["node_modules/@types"],
"allowSyntheticDefaultImports": true,
},
"include": ["lib/**/*"],
"exclude": [
"node_modules",
"**/*.spec.ts",
"**/dist/**",
"**/static/**",
"**/config/**",
"**/*.test.ts"
]
}