Fix: Configure ESLint for type-aware linting

This commit is contained in:
gpt-engineer-app[bot]
2025-10-29 23:20:52 +00:00
parent 3954a8f975
commit 017879ba21
2 changed files with 43 additions and 2 deletions

17
api/tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "node16",
"moduleResolution": "node16",
"lib": ["ES2022"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"noEmit": true,
"allowJs": true
},
"include": ["**/*.ts"],
"exclude": ["node_modules"]
}