liljudd-website/tsconfig.json

20 lines
407 B
JSON
Raw Normal View History

2023-10-18 15:58:15 +00:00
{
2024-01-16 19:24:48 +00:00
"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"],
"isolatedModules": true,
"paths": {
"~/*": ["./src/*"]
2023-11-09 12:51:48 +00:00
}
2024-01-16 19:24:48 +00:00
}
}