-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
69 lines (69 loc) · 1.47 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"compilerOptions": {
"incremental": false,
"target": "es2020",
"lib": [
"esnext",
"dom"
],
"module": "esnext",
"moduleResolution": "node",
"allowJs": false,
"checkJs": false,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"rootDir": "./",
"baseUrl": "src",
"paths": {
"@/*": [
"./*"
],
"@test/*": [
"./../test/*"
]
},
"outDir": "dist",
"isolatedModules": false,
"resolveJsonModule": true,
"removeComments": false,
"stripInternal": true,
"esModuleInterop": true,
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": false,
"noPropertyAccessFromIndexSignature": true,
"preserveConstEnums": true,
"exactOptionalPropertyTypes": false,
"useUnknownInCatchVariables": true,
"noStrictGenericChecks": false,
"allowUnreachableCode": false,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"downlevelIteration": false,
"skipLibCheck": true
},
"include": [
"src/**/*",
"test/**/*",
"rollup.config.js",
"vitest.config.ts"
],
"exclude": [
".rollup.cache/**",
"node_modules/**",
"dist/**",
"coverage/**"
]
}