【发布时间】:2018-03-20 15:36:29
【问题描述】:
我正在编写一个 VSCode 扩展,但我需要使用最新的扩展 API。如何告诉我的 package.json 在我的扩展中使用 vscode API 的内部版本?我试过了:
"devDependencies": {
[...],
"vscode": "^1.22.0-insider"
},
但我明白了:
$ npm install
npm ERR! code ETARGET
npm ERR! notarget No matching version found for vscode@^1.22.0-insider
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.
【问题讨论】:
标签: visual-studio-code vscode-extensions