chore: use TypeScript project references (#5423)

This commit is contained in:
ocavue
2025-10-21 03:12:36 +11:00
committed by GitHub
parent 2dfc12e61f
commit db052d1995
23 changed files with 179 additions and 71 deletions

View File

@@ -1,9 +1,11 @@
{
"extends": "../../tsconfig.json",
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"lib": ["esnext", "dom", "dom.iterable"]
},
"include": ["src"]
"references": [
{
"path": "../better-auth/tsconfig.json"
}
]
}

View File

@@ -1,15 +0,0 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "./node_modules/.cache/test",
"tsBuildInfoFile": "tsconfig.test.tsbuildinfo",
"lib": ["esnext", "dom", "dom.iterable"]
},
"references": [
{
"path": "../better-auth/tsconfig.json"
}
],
"include": ["test", "src"]
}