Files
metabuilder/frontends/nextjs/tsconfig.json
copilot-swe-agent[bot] 6c797e4361 Improve linter configuration with stricter rules and pragmatic overrides
- Enhanced eslint config with explicit unsafe-any rules
- Added relaxed rules for stub directories (DBAL, hooks, GitHub)
- Improved tsconfig with additional strict compiler options
- Fixed auth API functions to maintain async for proper testing
- Fixed DBAL get function async and conditionals
- Progress: 689 → 686 linting problems (497 errors, 189 warnings)
- TypeScript compilation: All errors resolved

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
2026-01-06 15:44:54 +00:00

79 lines
1.7 KiB
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2020",
"useDefineForClassFields": true,
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"module": "ESNext",
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"noFallthroughCasesInSwitch": true,
"allowJs": true,
"incremental": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"types": [
"node"
],
"paths": {
"@/*": [
"./src/*"
],
"@/fakemui": [
"../../fakemui"
],
"@/fakemui/*": [
"../../fakemui/*"
],
"@/dbal": [
"../../dbal/development/src"
],
"@/dbal/*": [
"../../dbal/development/src/*"
],
"@dbal-ui/*": [
"../../dbal/shared/ui/*"
]
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
"src/**/*",
"e2e/**/*",
"next.config.ts",
"prisma.config.ts",
"vite.config.ts",
"vitest.config.ts",
"playwright.config.ts",
".next/types/**/*.ts",
".next/dev/types/**/*.ts",
"../../dbal/development/src/**/*",
"../../fakemui/**/*"
],
"exclude": [
"node_modules"
]
}