mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2026-03-01 12:44:23 +00:00
* 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
16 lines
279 B
JavaScript
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',
|
|
},
|
|
},
|
|
},
|
|
]
|