-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
tsconfig.json
46 lines (46 loc) · 1.14 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
{
"compilerOptions": {
"strict": true,
"strictNullChecks": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"incremental": true,
"inlineSourceMap": true,
"inlineSources": true,
"preserveSymlinks": true,
"removeComments": false,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"noEmit": true,
"lib": [
// target Node.js 12 https://node.green/#ES2019
"ES2019",
// https://node.green/#ES2020-features-String-prototype-matchAll
"ES2020.String"
],
"target": "ESNext",
"allowJs": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"module": "ESNext",
"moduleResolution": "node",
"importHelpers": false,
"outDir": "./dist"
},
"compileOnSave": false,
"include": [
"./src",
"./dev/",
"./*.ts",
"jest.config.mjs",
"vite.config.mts"
]
}