24 lines
536 B
JSON
24 lines
536 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "commonjs",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
|
|
"strict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
|
|
"jsx": "preserve", // Do not let TS compile JSX; let Vite/Babel do it
|
|
"jsxImportSource": "solid-js", // Use Solid's types
|
|
|
|
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true
|
|
}
|
|
}
|