metacubexd/tsconfig.json

21 lines
442 B
JSON
Raw Permalink Normal View History

2023-08-24 04:20:53 +08:00
{
"compilerOptions": {
"strict": true,
2023-09-03 20:23:02 +08:00
"skipLibCheck": true,
2023-08-24 04:20:53 +08:00
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
2023-09-03 18:16:09 +08:00
"resolveJsonModule": true,
2023-08-24 04:20:53 +08:00
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client"],
"noEmit": true,
"isolatedModules": true,
"paths": {
"~/*": ["./src/*"]
}
}
}