2022-08-23 23:08:53 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"strict": true,
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"jsxImportSource": "solid-js",
|
|
|
|
|
"types": ["vite/client"],
|
|
|
|
|
"noEmit": true,
|
2022-10-20 22:33:25 +02:00
|
|
|
"isolatedModules": true,
|
2023-01-11 23:06:43 +01:00
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
2023-09-08 23:23:35 +02:00
|
|
|
"@/*": ["./src/*"],
|
|
|
|
|
"*": ["_"],
|
2023-01-11 23:06:43 +01:00
|
|
|
}
|
2022-08-23 23:08:53 +02:00
|
|
|
}
|
|
|
|
|
}
|