Files
Nimbus/apps/web/tsconfig.json
2025-07-15 12:30:26 -04:00

31 lines
629 B
JSON

{
"extends": "@nimbus/tsconfig/base",
"compilerOptions": {
"lib": ["esnext", "dom", "dom.iterable"],
"plugins": [
{
"name": "next"
}
],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@/public/*": ["./public/*"]
}
},
// https://catalins.tech/hono-rpc-in-monorepos/#the-solutiontypescript-project-references
"references": [
{
"path": "../server/tsconfig.json"
},
{
"path": "../../packages/client/tsconfig.json"
},
{
"path": "../../packages/shared/tsconfig.json"
}
],
"include": ["next-env.d.ts", ".next/types/**/*.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}