问题
Is it possible to get code-hinting in JetBrains WebStorm for a non-core node package? Specifically, I'd like to get hinting/completion working for buster. I can't seem to find any information on this. Thanks much!
回答1:
For buster.js, download buster-test.js and save it somewhere the WebStorm/PyCharm project can see it. Hinting should show up immediately.
回答2:
WebStorm 2020.1
There's a trick to getting "coding assistance" for 3rd party packages that support community stubs (AKA Typescript definition files):
- Open the project's package.json
- Position the cursor on the package (within the dependencies section)
- Press alt+enter (or click the light bulb)
- Choose Install '@types/name' (where name is the dependency)
For example:
来源:https://stackoverflow.com/questions/17507203/is-it-possible-to-get-code-hinting-in-jetbrains-webstorm-for-a-non-core-node-pac