diff --git a/eslint.config.mjs b/eslint.config.mjs index 12e3971..c26b68d 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -14,6 +14,7 @@ export default tseslint.config(eslint.configs.recommended, ...tseslint.configs.r '@typescript-eslint/no-namespace': 'off', '@typescript-eslint/no-unsafe-member-access': 'off', '@typescript-eslint/no-unsafe-assignment': 'off', + '@typescript-eslint/no-unsafe-argument': 'off', '@typescript-eslint/no-empty-object-type': 'off', '@typescript-eslint/no-unsafe-return': 'off', '@typescript-eslint/prefer-promise-reject-errors': 'off' diff --git a/tsconfig.json b/tsconfig.json index dda9457..d77d99e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -25,6 +25,6 @@ "typeRoots": ["./node_modules/@types"], "lib": ["ESNext", "dom"] }, - "include": ["lib/**/*", "test/**/*", "eslint.config.ts"], + "include": ["lib/**/*", "test/**/*", "eslint.config.mjs"], "exclude": ["node_modules"] }