{ "env": { "browser": true, "es2021": true }, "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "standard" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 12, "sourceType": "module", "project": "./tsconfig.json" }, "plugins": [ "@typescript-eslint", "tsc" ], "rules": { "@typescript-eslint/await-thenable": "error", "@typescript-eslint/no-explicit-any": ["off"], "no-useless-constructor": 0, "tsc/config": [1, { "configFile": "./tsconfig.json" }] } }