fix(backend): fix build for backend without dev dependencies (#651)

* fix build for backend without dev dependencies

* fix lint
This commit is contained in:
Ulf Gebhardt 2026-02-14 22:28:09 +01:00 committed by GitHub
parent 33310a43c5
commit e074d52e8a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ export default [
languageOptions: {
parserOptions: {
projectService: {
allowDefaultProject: ['jest/*.ts', 'src/*.spec.ts', 'src/*.test.ts'],
allowDefaultProject: ['jest.config.ts', 'jest/*.ts', 'src/*.spec.ts', 'src/*.test.ts'],
defaultProject: './tsconfig.eslint.json',
},
},

View File

@ -112,5 +112,5 @@
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"exclude": ["**/*.spec.ts", "**/*.test.ts", "jest/"]
"exclude": ["**/*.spec.ts", "**/*.test.ts", "jest/", "jest.config.ts", "build/", "coverage/"]
}