webapp/tsconfig.json
Ilya Y 7128b148c2
Change rect top (#270)
Change rect top
2023-10-17 16:37:54 +03:00

19 lines
527 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"]
}
}