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 mand 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.
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 mand 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.
Share Improve this question edited Jun 10, 2019 at 21:18 Aminadav Glickshtein asked Jun 6, 2019 at 7:20 Aminadav GlickshteinAminadav Glickshtein 24.7k13 gold badges84 silver badges118 bronze badges 2-
VSCode shows a errors from not one program, but more. You can
tsc . && tslint .
, depending on what is activated in your VSCode. But the main one istsc
for TypeScript. – Roberto Zvjerković Commented Jun 6, 2019 at 7:40 - The problem is that I never successed to get same list of error. My tsc, tslint doesn't have same configruations. – Aminadav Glickshtein Commented Jun 6, 2019 at 9:54
4 Answers
Reset to default 3To see the errors that //@ts-check
would generate, you can use the TypeScript piler (tsc
) with the --noEmit
and --allowJs
flags:
npm install -g typescript
tsc --noEmit --allowJs fileToCheck.js
noEmit
means that no code will be generated but errors will still be output.
To run this for every file in your project, the best approach is to create a very simple jsconfig.json
at the root of your workspace that defines your project and basic settings. The docs have more details on creating these, but here's a starting jsconfig.json
:
{
"pilerOptions": {
"module": "monjs",
"target": "es2016",
"jsx": "preserve"
},
"exclude": [
"node_modules",
"**/node_modules/*"
]
}
Then run:
tsc --noEmit -p jsconfig.json
Alternatively, if you do not wish to create a jsconfig.json
, you can try running tsc
with every js file in your workspace using find
:
tsc --noEmit --allowJs `find . ! -path '*/node_modules/*' -name "*.js"`
The above handles errors from TypeScript itself. However VS Code may show errors from multiple sources—such as typescript and tslint and a code spell checker—in a single file. There is no general way to get this from the mand line.
Tools such as TSLint and eslint provide their own CLIs that you can use. This is what most open source project use for validation as it means that developers can use whatever editor they like. For example, your continuous integration script would run tsc --noEmit -p jsconfig.json && eslint ... && ...
However if you really, really want to get the exact same errors that VS Code shows in the editor, I believe you could use an approach similar to vscode-test to run a script that controls a VS Code instance. The VS Code API you'd want to use to get the errors is getDiagnostics(resource: Uri)
The screenshot you provided showing that you are using the built-in Typescript es with vscode, outputs with the ts(<code>)
abbr.
I think, (Not sure for 100%) that the config for that Built-In Typescript is posed out of many configuration options you will see when you open settings and search for: "typescript
" or expand the "Extensions > TypeScript" at the left side tree menu. I think, again: not sure, that the configurations are gathered and piled at run time, never outputs to a file that you can capture...
The usual workflow though, is to get the official tslint
extension:
https://marketplace.visualstudio./items?itemName=ms-vscode.vscode-typescript-tslint-plugin
Which is not the same thing as the built in one, and to get a basic tslint.js
file, matching your team taste, which you can re-use at each one of your projects, then the tsc ...
mand will bee part of your CI process, consuming the project's tslint.js
config file.
The new extension will also output the problems to the problems section (outputs tslint(<code>)
)
I understand that it's not exactly what you meant for, but I think it's the correct answer.
TSLint features a CLI interface, which can be used without any VS.Code.
Parameter -c
or --config
can be used to pass a tslint.json
configuration file, as well as parameter -p
or --project
can be used to pass a tsconfig.json
configuration file.
Passing the default configuration should result in just the same errors as VS.Code shows (at least, unless providing a custom per-project configuration override). It only reads "should", because I've setup a new SSD yesterday; but the presented concept appears quite likely for a headless CI environment (where attempting to run code
does exactly nothing, klum, shumdabar).
you'd need to merge tslint.json and tslint-vscode.json for an identical linter configuration.
Go to your ESLint configuration in VSCode and then enable Provide Lint Task
that by default is disabled.