自定义扩展设置显示为未知配置

时间:2017-04-18 15:03:19

标签: visual-studio-code vscode-extensions vscode-settings

我创建了一个自定义VSCode扩展,需要配置设置vscode的用户设置文件。

为什么设置显示为未知配置?它按预期工作。

enter image description here

1 个答案:

答案 0 :(得分:2)

我看了你的回购并注意到你的package.json文件中有错误。 keybindingsconfiguration节点必须 contributes内,就像这样(我删除了keybindings,因为它是空的):

"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来解决这个问题。