-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
tsconfig.json
36 lines (36 loc) · 1.07 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
{
"compilerOptions": {
"jsx": "react",
"skipLibCheck": true,
"esModuleInterop": true,
"moduleResolution": "Node",
"module": "ESNext",
"types": ["@svgx/vite-plugin-react", "node", "vite/client"],
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"resolveJsonModule": true,
"baseUrl": "./src",
"paths": {
"@mui/styled-engine": ["./node_modules/@mui/styled-engine-sc"],
"@assets/*": ["assets/*"],
"@components/*": ["components/*"],
"@icons/*": ["components/icons/*"],
"@constants/*": ["constants/*"],
"@features/*": ["features/*"],
"@hooks/*": ["hooks/*"],
"@layouts/*": ["layouts/*"],
"@pages/*": ["pages/*"],
"@routes/*": ["routes/*"],
"@services/*": ["services/*"],
"@states/*": ["states/*"],
"@utils/*": ["utils/*"],
"@wrapper/*": ["wrapper/*"],
"@locales/*": ["shared/*"],
"@definition/*": ["definition/*"],
"@global/*": ["global/*"],
"@db/*": ["indexedDb/*"],
"@views/*": ["views/*"]
}
},
"include": ["src/**/*", "types/**/*"]
}