-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
56 lines (52 loc) · 1020 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
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
{
"compilerOptions": {
"module": "ESNext",
"target": "ES2020",
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"declaration": true,
"esModuleInterop": true,
"skipLibCheck": true,
/* bundler mode */
"moduleResolution": "node",
"resolveJsonModule": true,
//"isolatedModules": true,
"preserveConstEnums": false,
"noEmit": true,
"jsx": "react-jsx",
/* linting */
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
/* import paths */
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
},
/* misc */
"types": [
"vitest/globals"
]
},
"include": [
"src/**/*.js",
"src/**/*.ts",
"src/**/*.tsx",
"hack/**/*.ts",
"hack/**/*.tsx"
],
"exclude": [
"node_modules",
"dist",
"src/**/*.test.ts",
"src/**/*.test.tsx"
]
}