-
-
Notifications
You must be signed in to change notification settings - Fork 401
Expand file tree
/
Copy pathtsconfig.web.json
More file actions
24 lines (24 loc) · 626 Bytes
/
tsconfig.web.json
File metadata and controls
24 lines (24 loc) · 626 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
{
"compilerOptions": {
"composite": true,
"module": "ESNext",
"moduleResolution": "bundler",
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"strict": true,
"skipLibCheck": true,
"paths": {
"@/*": ["./src/*"],
"@components/*": ["./src/components/*"],
"@hooks/*": ["./src/hooks/*"],
"@stores/*": ["./src/stores/*"],
"@styles/*": ["./src/styles/*"]
}
},
"include": ["src/**/*"],
"exclude": [
"src/areas/workflows/nodes/mesh-exporter",
"src/areas/workflows/nodes/mesh-optimizer"
]
}