我写了一个VSCode扩展名,并试图通过vsce package
在本地发布。当我通过VSIX文件安装应用程序时,扩展程序内没有'node_modules'文件夹,这导致扩展程序无法正确加载,因为未找到模块
我已经检查过我所需的依赖项确实在dependencies
内部,而不是peerDependencies
或devDependencies
。我应该注意,我有一个.vscodeingore
文件,其中包含以下内容:
.vscode/**
.vscode-test/**
out/test/**
src/**
.gitignore
vsc-extension-quickstart.md
**/tsconfig.json
**/tslint.json
**/*.map
**/*.ts
node_modules
webpack.config.js
我想安装我的node_modules,然后在我的'./vscode/extensions/'文件夹中看到一个“ node_modules”文件夹。
谢谢!