chore: typecheck using monorepo (#4920)

This commit is contained in:
Alex Yang
2025-09-26 00:50:41 -07:00
committed by GitHub
parent 2b0013e38c
commit dad381b5ce
4 changed files with 25 additions and 6 deletions

View File

@@ -1,5 +1,6 @@
{
"compilerOptions": {
"baseUrl": ".",
"strict": true,
"target": "esnext",
"downlevelIteration": true,
@@ -17,7 +18,11 @@
"composite": true,
"incremental": true,
"noErrorTruncation": true,
"types": ["node"]
"types": ["node"],
"paths": {
"better-auth": ["./packages/better-auth/src"],
"better-auth/*": ["./packages/better-auth/src/*"]
}
},
"references": [
{
@@ -26,6 +31,9 @@
{
"path": "./packages/cli"
},
{
"path": "./packages/cli/tsconfig.test.json"
},
{
"path": "./packages/expo"
},