Want strong typing without a build process?
(Hint: you don’t need to use TypeScript.)
1. Use a modern editor like Helix Editor or VSCodium that supports the TypeScript Language Server (LSP).
2. Add this to the top of your JavaScript file (without the backticks):
```
// @ts-check
```
3. Go read up on JSDoc ;)
¹ https://helix-editor.com
² https://jsdoc.app/about-getting-started.html
#javaScript #typeSafety #JSDoc #lsp #HelixEditor #typeScript #web #dev