Files
Orchestra/cmd/web/www/tsconfig.json
T
2026-05-08 14:05:53 +00:00

20 lines
412 B
JSON

{
"compilerOptions": {
// General
"jsx": "preserve",
"jsxImportSource": "solid-js",
"target": "ESNext",
// Modules
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
// Type Checking & Safety
"strict": true,
"types": [
"vite/client"
]
}
}