mirror of
https://github.com/tiktok/sparo.git
synced 2024-11-14 19:35:12 -05:00
20 lines
705 B
JavaScript
20 lines
705 B
JavaScript
|
// This is a workaround for https://github.com/eslint/eslint/issues/3458
|
||
|
require('@rushstack/heft-node-rig/profiles/default/includes/eslint/patch/modern-module-resolution');
|
||
|
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
|
||
|
require('@rushstack/heft-node-rig/profiles/default/includes/eslint/patch/custom-config-package-names');
|
||
|
|
||
|
module.exports = {
|
||
|
extends: [
|
||
|
'@rushstack/heft-node-rig/profiles/default/includes/eslint/profile/node-trusted-tool',
|
||
|
'@rushstack/heft-node-rig/profiles/default/includes/eslint/mixins/friendly-locals'
|
||
|
],
|
||
|
parserOptions: { tsconfigRootDir: __dirname },
|
||
|
|
||
|
overrides: [
|
||
|
{
|
||
|
files: ['*.ts', '*.tsx'],
|
||
|
rules: {}
|
||
|
}
|
||
|
]
|
||
|
};
|