webapp/tsconfig.json
2024-02-08 02:12:10 +03:00

20 lines
544 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
// 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": ["es2023", "dom"]
},
"exclude": []
}