-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtsconfig.json
More file actions
40 lines (40 loc) · 848 Bytes
/
tsconfig.json
File metadata and controls
40 lines (40 loc) · 848 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
{
"compileOnSave": false,
"compilerOptions": {
"module": "amd",
"noImplicitAny": false,
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"target": "es5",
"lib": [
"dom",
"es2015",
"es2016.array.include",
"es2017.object",
"es2017.string",
"es2018.asynciterable",
"es2018.promise",
"es2019.array",
"es2019.object",
"es2019.string",
"es2020.string"
],
"moduleResolution": "node",
"resolveJsonModule": true,
"allowJs": false,
"baseUrl": "src"
},
"include": [
"./src/**/*.ts",
"./dev-app/**/*.ts",
"./test/**/*.ts",
"./types/**/*.d.ts"
],
"atom": {
"rewriteTsconfig": false
}
}