VS Code – Get type checking in JavaScript easily

Did you know you can type check JavaScript code in VS Code?

VS Code allows you to leverage some of TypeScript’s advanced type checking and error reporting functionality in plain old JavaScript files. And you can even do some quick fixes! This can be d…


This content originally appeared on DEV Community and was authored by Rob O'Leary

Did you know you can type check JavaScript code in VS Code?

VS Code allows you to leverage some of TypeScript's advanced type checking and error reporting functionality in plain old JavaScript files. And you can even do some quick fixes! This can be done alongside ESLint without any issues.

The type checking is opt-in. You can apply it to an individual file, per project, or everywhere.

Enable checking in individual files

If you want to try it out for a file, just add the comment // @ts-check to the top of a file. For example, the code below tries to multiply a number with a string.

// @ts-check

let x = "blah";
let y = x * 2;

You will see red underlining under the offense to point out the error, and you will see the error in the problems tab.

builtin extension list

Enable checking in your workspace or everywhere

You can enable type checking for all JavaScript files with the JS/TS › Implicit Project Config: Check JS setting.

Alternatively, you can place a jsconfig.json in your root folder, and specify your JavaScript project options. You can add type checking as a compiler option as below:

{
  "compilerOptions": {
    "checkJs": true
  },
  "exclude": ["node_modules", "**/node_modules/*"]
}

The advantage of using jsconfig.json is that you can target the files you want checked through include and exclude.

You can use // @ts-nocheck to disable type checking inside a file if you want to make an exception also.

Add extra type checking with JSDoc comments

JSDoc annotations are used to describe your code and generate documentation. Part of that specification is to add types to variables, through this we get can extra type checking in VS Code.

JSDoc annotations come before a declaration in a comment block. In the example below, I specify a type for the parameter and the return value.

builtin extension list

You can see it catches a mistake when I provide a number as argument for the function call isHoriztonalRule(1).

You can find the full list of supported JSDoc patterns in: TypeScript Reference - JSDoc Supported Types.

Conclusion

Getting type checking in JavaScript is pretty sweet. It is simple and flexible to use. It provides some of the benefits of TypeScript without needing to convert a codebase to TypeScript.

Happy hacking!


This content originally appeared on DEV Community and was authored by Rob O'Leary


Print Share Comment Cite Upload Translate Updates
APA

Rob O'Leary | Sciencx (2021-08-16T08:18:24+00:00) VS Code – Get type checking in JavaScript easily. Retrieved from https://www.scien.cx/2021/08/16/vs-code-get-type-checking-in-javascript-easily/

MLA
" » VS Code – Get type checking in JavaScript easily." Rob O'Leary | Sciencx - Monday August 16, 2021, https://www.scien.cx/2021/08/16/vs-code-get-type-checking-in-javascript-easily/
HARVARD
Rob O'Leary | Sciencx Monday August 16, 2021 » VS Code – Get type checking in JavaScript easily., viewed ,<https://www.scien.cx/2021/08/16/vs-code-get-type-checking-in-javascript-easily/>
VANCOUVER
Rob O'Leary | Sciencx - » VS Code – Get type checking in JavaScript easily. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/08/16/vs-code-get-type-checking-in-javascript-easily/
CHICAGO
" » VS Code – Get type checking in JavaScript easily." Rob O'Leary | Sciencx - Accessed . https://www.scien.cx/2021/08/16/vs-code-get-type-checking-in-javascript-easily/
IEEE
" » VS Code – Get type checking in JavaScript easily." Rob O'Leary | Sciencx [Online]. Available: https://www.scien.cx/2021/08/16/vs-code-get-type-checking-in-javascript-easily/. [Accessed: ]
rf:citation
» VS Code – Get type checking in JavaScript easily | Rob O'Leary | Sciencx | https://www.scien.cx/2021/08/16/vs-code-get-type-checking-in-javascript-easily/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.