webapp/tsconfig.json
2023-02-17 10:21:02 +01:00

20 lines
566 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"importsNotUsedAsValues": "error",
// Solid specific settings
"jsx": "preserve",
"jsxImportSource": "solid-js",
// Enable top-level await and other modern ESM features.
"target": "ESNext",
"module": "ESNext",
// Enable node-style module resolution, for things like npm package imports.
"moduleResolution": "node",
// Enable JSON imports.
"resolveJsonModule": true,
"skipLibCheck": true,
"isolatedModules": true,
"lib": ["ES2021", "dom"]
}
}