-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
48 lines (48 loc) · 1.12 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
43
44
45
46
47
48
{
"compileOnSave": true,
"extends": "ts-node/node12/tsconfig.json",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"target": "esnext",
"outDir": "./dist/",
"strictNullChecks": true,
"moduleResolution": "node",
"esModuleInterop": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": ["dom", "dom.iterable", "esnext"],
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,//true in v1
"noImplicitThis": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"useDefineForClassFields": false,
},
"ts-node": {
"transpileOnly": false,
"files": true,
"compilerOptions": {
"module": "CommonJS"
}
},
"include": [
"src/**/*.ts", "webpack.config.js"
],
"exclude": [
"node_modules"
],
"types": [
"node",
"ts-node",
"filesystem",
"prompts",
"typescript"
]
}