mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 04:19:20 +00:00
chore: use tsconfig monorepo setup (#4826)
This commit is contained in:
@@ -1,19 +1,42 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"esModuleInterop": true,
|
||||
"skipLibCheck": true,
|
||||
"target": "es2022",
|
||||
"allowJs": true,
|
||||
"resolveJsonModule": true,
|
||||
"module": "Preserve",
|
||||
"noEmit": true,
|
||||
"moduleDetection": "force",
|
||||
"isolatedModules": true,
|
||||
"verbatimModuleSyntax": true,
|
||||
"strict": true,
|
||||
"target": "esnext",
|
||||
"downlevelIteration": true,
|
||||
"esModuleInterop": true,
|
||||
"module": "esnext",
|
||||
"moduleResolution": "bundler",
|
||||
"skipLibCheck": true,
|
||||
"verbatimModuleSyntax": true,
|
||||
"noUnusedLocals": false,
|
||||
"noUnusedParameters": false,
|
||||
"noUncheckedIndexedAccess": true,
|
||||
"noImplicitOverride": true,
|
||||
"noFallthroughCasesInSwitch": true
|
||||
"exactOptionalPropertyTypes": false,
|
||||
"declaration": true,
|
||||
"emitDeclarationOnly": true,
|
||||
"composite": true,
|
||||
"incremental": true,
|
||||
"noErrorTruncation": true,
|
||||
"types": ["node"]
|
||||
},
|
||||
"references": [
|
||||
{
|
||||
"path": "./packages/better-auth"
|
||||
},
|
||||
{
|
||||
"path": "./packages/cli"
|
||||
},
|
||||
{
|
||||
"path": "./packages/expo"
|
||||
},
|
||||
{
|
||||
"path": "./packages/sso"
|
||||
},
|
||||
{
|
||||
"path": "./packages/stripe"
|
||||
}
|
||||
],
|
||||
"files": [],
|
||||
"include": [],
|
||||
"exclude": ["**/dist/**", "**/node_modules/**", "**/examples/**"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user