diff --git a/eslint.config.mjs b/eslint.config.mjs index 9ddc099..7bd45af 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -23,6 +23,8 @@ export default tseslint.config( { ignores: [ "package.json", + "eslint.config.mjs", + "prettier.config.mjs", "node_modules/*", ".yarn/*", "lib/*", diff --git a/tests/tsconfig.json b/tests/tsconfig.json new file mode 100644 index 0000000..58e0f95 --- /dev/null +++ b/tests/tsconfig.json @@ -0,0 +1,8 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "rootDir": ".." + }, + "include": ["*.ts", "**/*.ts"], + "exclude": [] +}