14 lines
303 B
JavaScript
14 lines
303 B
JavaScript
module.exports = {
|
|
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
|
|
parser: "@typescript-eslint/parser",
|
|
plugins: ["@typescript-eslint"],
|
|
root: true,
|
|
ignorePatterns: ["build/"],
|
|
env: {
|
|
browser: true,
|
|
worker: true,
|
|
commonjs: true,
|
|
node: true,
|
|
},
|
|
};
|