-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
32 lines (32 loc) · 1.01 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
{
"compilerOptions": {
"noEmit": true,
"baseUrl": ".",
"allowJs": false,
"target": "ESNext",
"module": "ESNext",
"jsx": "react-jsx",
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"types": ["vite/client"],
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"lib": ["dom", "dom.iterable", "esnext"],
"forceConsistentCasingInFileNames": true,
"typeRoots": ["./src/global.d.ts"],
"paths": {
"@assets/*": ["src/assets/*"],
"@/app/*": ["src/app/*"],
"@/pages/*": ["./src/pages/*"],
"@/shared/*": ["./src/shared/*"],
"@/widgets/*": ["./src/widgets/*"],
"@/features/*": ["./src/features/*"],
"@/entities/*": ["./src/entities/*"],
"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"]
}