mirror of
https://github.com/nimbusdotstorage/Nimbus
synced 2026-04-22 17:45:03 +02:00
35 lines
649 B
JSON
35 lines
649 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"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/shared/tsconfig.json"
|
|
}
|
|
],
|
|
"include": [
|
|
"next-env.d.ts",
|
|
".next/types/**/*.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"src/components/providers/useDefaultAccount"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|