tutu/tsconfig.json

21 lines
501 B
JSON
Raw Normal View History

2024-07-14 12:28:44 +00:00
{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "esnext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client", "vite-plugin-pwa/solid"],
2024-07-14 12:28:44 +00:00
"noEmit": true,
"isolatedModules": true,
"resolveJsonModule": true,
2024-11-22 09:16:56 +00:00
"paths": {
"~platform/*": ["./src/platform/*"],
"~material/*": ["./src/material/*"]
}
2024-07-14 12:28:44 +00:00
}
}