14 lines
293 B
JavaScript
14 lines
293 B
JavaScript
/** @type {import('eslint').Linter.Config} */
|
|
module.exports = {
|
|
extends: [
|
|
'../../configs/build.eslintrc.json'
|
|
],
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: 'tsconfig.json'
|
|
},
|
|
rules: {
|
|
'import/no-dynamic-require': 'off'
|
|
}
|
|
};
|