-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
42 lines (42 loc) · 1.02 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
42
{
"compilerOptions": {
"lib": [
"es6",
"dom"
],
"module": "commonjs",
"outDir": "dist",
"declaration": true,
"incremental": true,
"resolveJsonModule": true,
"removeComments": true,
"pretty": true,
"sourceMap": false,
"target": "es6",
"allowJs": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": false,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"strict": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
"alwaysStrict": true,
"experimentalDecorators": false,
"baseUrl": "./src",
"disableSizeLimit": false,
"rootDir": "src",
"typeRoots": ["types"],
"paths": {
"types/*": ["types/*"],
"constants/*": ["constants/*"],
}
},
"compileOnSave": true,
"include": ["src/**/*"],
"exclude": ["test", "src/scripts", "node_modules"]
}