2023-05-14 22:07:16 +03:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"strict": true,
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
"module": "ESNext",
|
2026-08-21 10:18:52 +03:00
|
|
|
"moduleResolution": "bundler",
|
2023-05-14 22:07:16 +03:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"jsxImportSource": "solid-js",
|
2026-08-21 10:18:52 +03:00
|
|
|
"types": ["vite/client", "node"],
|
2023-05-14 22:07:16 +03:00
|
|
|
"noEmit": true,
|
2024-02-12 15:38:11 +02:00
|
|
|
"isolatedModules": true,
|
|
|
|
|
"plugins": [{ "name": "typescript-plugin-css-modules" }]
|
2023-05-14 22:07:16 +03:00
|
|
|
}
|
|
|
|
|
}
|