IT4C.dev/backend/eslint.config.mjs
Ulf Gebhardt 8b6064bd59
fix(backend): fix typebox package & update packages (#638)
* update packages & audit fix

* fix typebox

* fix jest running esm

* fix package update correctly

* fix esm jest types

* fix lint

* exclude tests from build

* ffix lintfix lint
2026-02-09 12:28:29 +01:00

16 lines
279 B
JavaScript

import config, { jest } from 'eslint-config-it4c'
export default [
{ ignores: ['build/', 'coverage/'] },
...config,
...jest,
{
languageOptions: {
parserOptions: {
projectService: false,
project: './tsconfig.eslint.json',
},
},
},
]