forked from Codify-2025/Codify-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 767 Bytes
/
Copy pathtsconfig.json
File metadata and controls
28 lines (28 loc) · 767 Bytes
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
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"jsx": "react-jsx",
"strict": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"outDir": "dist",
"noEmit": true,
"baseUrl": "./src",
"paths": {
"@components/*": ["components/*"],
"@features/*": ["features/*"],
"@stores/*": ["stores/*"],
"@hooks/*": ["hooks/*"],
"@services/*": ["services/*"],
"@utils/*": ["utils/*"],
"@constants/*": ["constants/*"],
"@mocks/*": ["mocks/*"],
"@typings/*": ["types/*"]
},
"types": ["react", "react-dom", "vite/client"],
"skipLibCheck": true
},
"include": ["src", "node_modules/react-icons"],
"files": ["src/types/react-icons.d.ts"]
}