{ "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"] }