valoStratsFrontend/tsconfig.json

17 lines
351 B
JSON
Raw Permalink Normal View History

2024-06-17 12:46:19 +02:00
{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
2024-06-17 21:32:54 +02:00
"types": [
"vite/client"
],
2024-06-17 12:46:19 +02:00
"noEmit": true,
"isolatedModules": true,
},
2024-06-17 21:32:54 +02:00
}