js 与ts 混合的项目,报如下错误提示

    1. Error while parsing xxx/src/components/index.js
    2. Line 1, column 0: Declaration or statement expected.
    3. `parseForESLint` from parser `xxx/node_modules/@typescript-eslint/parser/dist/index.js` is invalid and will just be ignored

    经过验证,关闭以下配置并无效果

    1. 'import/no-unused-modules': ['error', { 'unusedExports': true }]

    本质是个如下的代码

    1. // UpdateForm.js
    2. export default class UpdateForm {}
    3. // index.js
    4. // eslint 悬浮提示如下
    5. // Parsing error: Declaration or statement expected.
    6. export UpdateForm from './UpdateForm';

    image.png

    可以参考: