20 lines
420 B
JavaScript
20 lines
420 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es2021: true,
|
|
},
|
|
extends: "standard-with-typescript",
|
|
overrides: [],
|
|
parserOptions: {
|
|
ecmaVersion: "latest",
|
|
sourceType: "module",
|
|
project: ["./tsconfig.json"],
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/strict-boolean-expressions": 0,
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
},
|
|
plugins: ["jest"],
|
|
"jest/globals": true,
|
|
};
|