Upgrade to eslint 9.

This commit is contained in:
Fabio Niephaus
2025-01-21 12:01:43 +01:00
committed by Fabio Niephaus
parent d028da6ae3
commit bc541ab008
12 changed files with 2007 additions and 1802 deletions

16
tsconfig.eslint.json Normal file
View File

@@ -0,0 +1,16 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.base.json",
"compilerOptions": {
"allowJs": true,
"noEmit": true
},
"exclude": ["dist", "node_modules"],
"include": [
"__fixtures__",
"__tests__",
"src",
"eslint.config.mjs",
"jest.config.js"
]
}