Files
mesh-forge/tsconfig.json
2025-12-06 17:12:03 -08:00

21 lines
440 B
JSON

{
"compilerOptions": {
"strict": true,
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Bundler",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"types": ["vite/client", "vike-react"],
"noEmit": true,
"skipLibCheck": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"jsxImportSource": "react",
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
}
},
"exclude": ["dist"]
}