{ //"root": true, "env": { "es2020": true, "node": true }, "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"], "parser": "@typescript-eslint/parser", "parserOptions": { "project": ["./tsconfig.json"] }, "plugins": ["@typescript-eslint"], "rules": { "@typescript-eslint/explicit-function-return-type": ["error"], "@typescript-eslint/no-this-alias": [ "error", { "allowDestructuring": true, "allowedNames": ["self", "this_"] } ] }, "ignorePatterns": ["./build.js"] }