When using a 3rd party libary installed npm, can I expect Visual Studio Code to provide intellisense for the package even though there is no typings file?
This works in IntelliJ/Webstorm so I think it's possible. However, I cannot tell from the Visual Studio Code documentation whether this is currently supported.
Note: I am looking for intellisense while coding in .ts files, not inside of .html files or elsewhere.
https://www.npmjs.com/~types. If it is you can simply add types bynpm install @types/libraryname. - dotcs