webapp/tsconfig.json

19 lines
527 B
JSON
Raw Normal View History

2022-09-09 11:53:35 +00:00
{
"compilerOptions": {
2022-10-04 11:42:12 +00:00
"allowSyntheticDefaultImports": true,
// Solid specific settings
2022-09-09 11:53:35 +00:00
"jsx": "preserve",
2022-10-04 11:42:12 +00:00
"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,
2023-02-17 09:21:02 +00:00
"skipLibCheck": true,
2022-10-04 11:42:12 +00:00
"isolatedModules": true,
2023-10-17 13:37:54 +00:00
"lib": ["es2023", "dom"]
2022-09-09 11:53:35 +00:00
}
}