-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
31 lines (31 loc) · 864 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
{
"compilerOptions": {
"outDir": "dist",
"lib": ["ES2022", "DOM"],
"module": "ES6",
"target": "ES5",
"inlineSourceMap": true,
"importHelpers": true,
"newLine": "LF",
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": false,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"importsNotUsedAsValues": "error",
"ignoreDeprecations": "5.0",
"checkJs": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
"declaration": true,
"noEmitOnError": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist", "test"]
}