Archived
1
0

feat: Добавлен Better Auth

This commit is contained in:
2025-11-19 10:00:57 +03:00
parent a423bc6c11
commit 6fd29f5408
21 changed files with 1217 additions and 104 deletions

View File

@ -1,28 +1,39 @@
{
"compilerOptions": {
// Environment setup & latest features
"lib": ["ESNext"],
"lib": [
"ESNext"
],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
}
"noPropertyAccessFromIndexSignature": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"types": [
"bun-types"
],
"paths": {
"@/*": [
"./src/*"
]
}
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
]
}