2026-03-16 23:20:54 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"jsxImportSource": "solid-js",
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noEmit": true,
|
2026-07-17 00:47:43 +02:00
|
|
|
"types": ["vite/client", "node"],
|
2026-03-16 23:20:54 +01:00
|
|
|
"isolatedModules": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"~/*": ["./src/*"]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|