-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
20 lines (20 loc) · 698 Bytes
/
Copy pathtsconfig.json
File metadata and controls
20 lines (20 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"], // Browser APIs
"module": "ESNext", // For Vite/Modern browsers
"moduleResolution": "bundler", // For Vite
"jsx": "react-jsx", // React specific
"noEmit": true, // Vite handles the building
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true
},
"include": ["src", "premium/src"], // React source files and optional premium components
"references": [{ "path": "./tsconfig.node.json" }]
}