mirror of
https://github.com/trailbaseio/trailbase
synced 2026-04-21 13:37:44 +00:00
25 lines
644 B
JSON
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/"]
|
|
}
|