module.exports = { root: true, parser: '@typescript-eslint/parser', plugins: [ '@typescript-eslint' ], extends: [ 'eslint:recommended', 'plugin:@typescript-eslint/recommended', 'airbnb-base', 'airbnb-typescript/base', 'prettier' ], parserOptions: { project: './tsconfig.json' }, rules: { "@typescript-eslint/no-explicit-any": "off" } }