-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
42 lines (38 loc) · 954 Bytes
/
Copy pathtsconfig.json
File metadata and controls
42 lines (38 loc) · 954 Bytes
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": {
"moduleResolution": "bundler",
"module": "ESNext",
"target": "es2021",
"lib": [
"es2021",
"dom",
"es2018.asyncgenerator",
"es2018.asynciterable"
],
"importHelpers": true,
"experimentalDecorators": true,
"declaration": true,
"sourceMap": true,
"inlineSources": true,
"removeComments": false,
"preserveConstEnums": true,
"strict": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"skipLibCheck": true
},
"include": [
"src/**/*.ts",
"tests/**/*.ts",
"vitest.config.ts"
],
"exclude": [
"node_modules",
"dist"
]
}