Files
clan-core/pkgs/clan-app/ui/tsconfig.json
2025-10-09 14:56:38 +01:00

27 lines
664 B
JSON

{
"compilerOptions": {
"plugins": [{ "name": "typescript-plugin-css-modules" }],
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": [
"vite/client",
"vite-plugin-solid-svg/types-component-solid",
"@vitest/browser/providers/playwright"
],
"noEmit": true,
"resolveJsonModule": true,
"allowJs": true,
"isolatedModules": true,
"paths": {
"@/*": ["./*"],
"@api/clan/client": ["./src/api/clan/client-call"]
}
}
}