mirror of
https://gitee.com/ByteDance/flowgram.ai.git
synced 2025-07-07 17:43:29 +08:00
17 lines
333 B
JavaScript
17 lines
333 B
JavaScript
// This is a workaround for https://github.com/eslint/eslint/issues/3458
|
|
require('@rushstack/eslint-config/patch/modern-module-resolution');
|
|
|
|
module.exports = {
|
|
extends: ['./.eslintrc.base.js'],
|
|
globals: {
|
|
NodeJS: true,
|
|
},
|
|
env: {
|
|
browser: false,
|
|
node: true,
|
|
es2020: true,
|
|
jest: true,
|
|
},
|
|
rules: {},
|
|
};
|