What is the default jsconfig.json or tslint.json that vscode are using to show me errors and warnings?
I would like to get all the problem in my JavaScript project. I do not have jsconfig.json or tsconfig.json files. I'm just using some files the //@ts-check.
Everytime I'm open a file js file, I see list of warnings in the problems panel. I would like to get the problems in all the files in the projects. No just the opened files. VS Studio doesn't support it, so I'm looking to do if from the CLI.
I want to get the list using a CLI. So it can be part of CI process. I have tryied to using tslint and typescript CLI with my custom tsconfig.json and tslint.json but I never got exactly the same issues and warning as the vscode show me. I believe vscode have a default tsconfig and tslint that they use for showing the information.
I didn't find this on the GitHub of the typescript language server and the repository of vscode.
In other words: I'm searching for a command that I can launch from the terminal that will give me list of all problems that vscode will show me if I will open the same file in vscode.
How to get this output using a terminal without having tsconfig or jsconfig files.
from How to output the list of problems that vscode shows when opening a JS file, by using only the terminal:?
No comments:
Post a Comment