-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
41 lines (41 loc) · 1.04 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
40
41
{
"compilerOptions": {
"allowJs": true,
"target": "es5",
"module": "ES2015",
"strict": true,
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
"esModuleInterop": true,
"experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
"emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
"skipLibCheck": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
// "declaration": true,
// "baseUrl": "src",
"lib": [
"dom",
"dom.iterable",
"esnext",
"es5",
"es2015",
"es2019",
"scripthost",
"es2015.proxy",
"es2015.collection"
]
},
"exclude": [
"example",
"examples",
"rollup.config.js",
"test",
"cli",
"assets",
"test-cli",
"**/*.test.ts",
"templates",
"dist"
]
}