trailbase/crates/assets/js/admin/tsconfig.json
2025-08-07 10:02:32 +02:00

25 lines
644 B
JSON

{
"compilerOptions": {
"strict": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": false,
"moduleResolution": "bundler",
"target": "ESNext",
"module": "ESNext",
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": [
"@testing-library/jest-dom",
"@types/wicg-file-system-access",
"vite/client"
],
"paths": {
"@/*": ["./src/*"],
"@proto/*": ["./proto/*"],
"@bindings/*": ["../bindings/*"],
"@shared/*": ["../shared/*"]
}
},
"exclude": ["tailwind.config.ts", "dist/", "node_modules/", "public/"]
}