-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
53 lines (53 loc) · 1.28 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
{
"include": [
"./src/**/*",
"./tests/**/*",
],
"exclude": [
"node_modules",
"vendor",
],
"compilerOptions": {
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"allowJs": true,
"noImplicitAny": true,
"resolveJsonModule": true,
"strictNullChecks": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"target": "ESNext",
"module": "ESNext",
"incremental": true,
"isolatedModules": true,
"declaration": true,
"declarationMap": true,
"moduleResolution": "Node",
"noImplicitReturns": true,
"pretty": true,
"useDefineForClassFields": true,
"noEmit": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"paths": {
"~/*": [
"./src/*"
],
},
"types": [
"node",
"vite/client",
"vitest/globals",
],
"lib": [
"ES6",
"DOM",
"WebWorker",
"DOM.Iterable",
],
},
}