-
Notifications
You must be signed in to change notification settings - Fork 27
/
tsconfig.json
30 lines (30 loc) · 938 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
{
"compilerOptions": {
"strict": true,
"noEmit": true,
"baseUrl": ".",
"allowJs": false,
"target": "esnext",
"module": "esnext",
"jsx": "react-jsx",
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"types": ["vite/client", "node"],
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"lib": ["dom", "dom.iterable", "esnext"],
"forceConsistentCasingInFileNames": true,
"typeRoots": ["./src/global.d.ts", "node_modules/@types"],
"paths": {
"@root/*": ["./*"],
"@src/*": ["src/*"],
"@assets/*": ["src/assets/*"],
"@pages/*": ["src/pages/*"],
"virtual:reload-on-update-in-background-script": ["./src/global.d.ts"],
"virtual:reload-on-update-in-view": ["./src/global.d.ts"]
}
},
"include": ["src", "utils", "vite.config.ts", "node_modules/@types"]
}