Closed
Description
Before You File a Bug Report Please Confirm You Have Done The Following...
- I have tried restarting my IDE and the issue persists.
- I have updated to the latest version of the packages.
- I have searched for related issues and found none that matched my issue.
- I have read the FAQ and my problem is not listed.
In normal type-aware mode we pass a special set of compiler options to our program which allows us to turn on TS debug logging.
But in single run mode we don't use our util, so we don't turn on debug logging when we should:
https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-estree/src/create-program/useProvidedPrograms.ts#L66
ESLint Config
module.exports = {
parser: "@typescript-eslint/parser",
parserOptions: {
debugLevel: ['typescript'],
},
};