v5/tsconfig.json
2025-01-23 11:16:33 -05:00

20 lines
413 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"allowJs": true,
"strict": true,
"noEmit": true,
"types": ["vinxi/client", "vite/client", "solid-jsx/types"],
"isolatedModules": true,
"paths": {
"~/*": ["./src/*"]
}
}
}