Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Visual Studio Code (Windows) でインポートされた JS パッケージの Intellisense を表示するのに問題があります。たとえば、次importのようなノード パッケージがあるとします。
import
import toastr from 'toastr';
そして、私はそれを使用しようとしましたが、インテリセンスはポップアップしません
私の友人は私のものと同じプラグインを持っていて、彼のマシンで動作します。私は何を間違っていますか?
型付けファイルをインストールする必要があります。
$ npm install -g typings
$ typings install toastr --ambient
詳細については、docsを参照してください。