Files
Nimbus/apps/web/tsconfig.json
2025-10-13 21:06:27 -06:00

30 lines
667 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"jsx": "react-jsx",
"lib": ["ES2020", "dom", "dom.iterable"],
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"types": ["vite/client"],
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@/public/*": ["./public/*"]
}
},
// https://catalins.tech/hono-rpc-in-monorepos/#the-solutiontypescript-project-references
"references": [
{
"path": "../server/tsconfig.json"
},
{
"path": "../../packages/shared/tsconfig.json"
}
],
"include": ["src", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}