export default [{
files: [
"src/**/*.ts",
"__tests__/**/*.ts",
],
ignores: [
"**/dist/",
"**/lib/",
"**/node_modules/",
"**/jest.config.js",
],
}, ...compat.extends("plugin:github/recommended"), {
plugins: {
"@typescript-eslint": typescriptEslint,
},
languageOptions: {
globals: {
...globals.node,
},
parser: tsParser,
ecmaVersion: 2023,
sourceType: "module",
parserOptions: {
project: "./tsconfig.json",
},
},