我在Visual Studio Code(在Windows上)看到导入的JS包的Intellisense时遇到了困难。
例如,如果我Option Explicit
Sub PasteData()
Dim oSourceWB As Workbook, oTargetWB As Workbook, MyFile As String
MyFile = Application.GetOpenFilename()
ChDir "C:\datafolder\"
On Error Resume Next
Set oSourceWB = Workbooks.Open(Filename:=MyFile, ReadOnly:=True)
Set oTargetWB = Workbooks("chickenfeed.xlsm")
On Error GoTo 0
If Not (oSourceWB Is Nothing And oTargetWB Is Nothing) Then
oSourceWB.Worksheets("Sheet1").Range("A1").CurrentRegion.Copy oTargetWB.Sheets("Raw Export").Range("A1")
oSourceWB.Close SaveChanges:=False
End If
Set oSourceWB = Nothing
Set oTargetWB = Nothing
End Sub
节点包如:
import
我的朋友有与我相同的插件,它可以在他的机器上运行。 我做错了什么?
答案 0 :(得分:1)
You need to install the typings file.
$ npm install -g typings
$ typings install toastr --ambient
You can read more about this in the docs.
答案 1 :(得分:1)
VS代码:v1.24.0 OS:macOS High Sierra
使用npm install --save-dev @types/name_for_the_ package
手动下载类型声明文件将起作用。
在运行npm install时,使用VS Code中的扩展名Types auto installer来帮助您下载类型声明文件。
如果您的工作区包含多个项目上下文,则应添加jsconfig.json文件。