1
vscodeのユーザー設定ファイルの設定が必要なカスタムVSCode拡張を作成しました。カスタム拡張設定が未知の設定として表示される
設定が未知の設定として表示されるのはなぜですか?それは期待どおりに動作します。
vscodeのユーザー設定ファイルの設定が必要なカスタムVSCode拡張を作成しました。カスタム拡張設定が未知の設定として表示される
設定が未知の設定として表示されるのはなぜですか?それは期待どおりに動作します。
私はあなたのレポを見て、あなたのpackage.json
ファイルにエラーがあることを指摘しました。
"contributes": {
"commands": [
{
"command": "extension.postMessage",
"title": "Microsoft Teams: Post Message"
},
{
"command": "extension.postCurrentFile",
"title": "Microsoft Teams: Post Current File"
}
],
"configuration": {
"type": "object",
"title": "Visual Studio Code Microsoft Teams configuration",
"properties": {
"microsoftteams.teamswebhook": {
"type": "string",
"default": "",
"description": "Microsoft Teams Webhook"
}
}
}
},
私はこの問題を修正pull requestした:keybindings
とconfiguration
ノードは、この(それが空であるので、私はkeybindings
を除去)のように、contributes
内部なければなりません。