tutu/tsconfig.json
thislight 246771e8a0
All checks were successful
/ depoly (push) Successful in 1m19s
add alias ~platform and ~material
2024-11-22 17:24:58 +08:00

20 lines
501 B
JSON

{
"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"],
"noEmit": true,
"isolatedModules": true,
"resolveJsonModule": true,
"paths": {
"~platform/*": ["./src/platform/*"],
"~material/*": ["./src/material/*"]
}
}
}