UNPKG

426 BJavaScriptView Raw
1module.exports = {
2 root: true,
3 env: {
4 browser: true,
5 jest: true,
6 node: true,
7 },
8 parser: "@typescript-eslint/parser",
9 plugins: ["@typescript-eslint"],
10 extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
11 rules: {
12 "@typescript-eslint/ban-types": "off",
13 "@typescript-eslint/no-explicit-any": "off",
14 "prefer-const": "off",
15 },
16};