1. Parsing error: "parserOptions.project" has been set for @typescript-eslint/parser.
    2. The file does not match your project config: tsExample/src/pages/FormAdvancedForm/model.ts.
    3. The file must be included in at least one of the projects provided.eslint
    1. Parsing error: "parserOptions.project" has been set for @typescript-eslint/parser.
    2. The file does not match your project config: typings.d.ts.
    3. The file must be included in at least one of the projects provided.

    你可以在 .eslintignore 文件中添加以上文件,忽略检查

    1. # .eslintignore
    2. # dependencies
    3. node_modules
    4. **/node_modules/**
    5. model.ts
    6. typings.d.ts

    参看:https://github.com/typescript-eslint/typescript-eslint/issues/1723