-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
43 lines (43 loc) · 911 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
{
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"tests",
"data",
"dist",
"dist.esm"
],
"compilerOptions": {
"target": "es2015",
"module": "es2015",
"lib": [
"es2017",
"es7",
"es6",
"dom"
],
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"emitDeclarationOnly": false,
"sourceMap": true,
"strict": false,
"skipLibCheck": true,
"noImplicitAny": false,
"strictNullChecks": false,
"emitDecoratorMetadata": true,
"removeComments": false,
"isolatedModules": false,
"preserveConstEnums": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"rootDirs": [
"src/"
],
"typeRoots": [
"node_modules/@types"
]
}
}