mirror of
https://github.com/nimbusdotstorage/Nimbus
synced 2026-04-22 17:45:03 +02:00
30 lines
667 B
JSON
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"]
|
|
}
|