Imba VSCode Plugin
This extension provides syntax highlighting, intellisense, go to definition, and hinting.
Installation
Install the Imba extension through VSCode
Install imba and typescript@4.9 globally:
npm i -g imba typescript@4.9
Update settings.json depending on your OS:
MacOS:
{
"typescript.tsdk": "/usr/local/lib/node_modules/typescript/lib/"
}
Windows:
{
"typescript.tsdk": "c:\\Users\\{User Name}\\AppData\\Roaming\\npm\\node_modules\\typescript\\lib"
}
Linux:
{
"typescript.tsdk": "/usr/lib/node_modules/typescript/lib/"
}
| |