mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 17:22:29 -05:00
* Initial VS Code 1.21 file copy with patches * A few more merges * Post npm install * Fix batch of build breaks * Fix more build breaks * Fix more build errors * Fix more build breaks * Runtime fixes 1 * Get connection dialog working with some todos * Fix a few packaging issues * Copy several node_modules to package build to fix loader issues * Fix breaks from master * A few more fixes * Make tests pass * First pass of license header updates * Second pass of license header updates * Fix restore dialog issues * Remove add additional themes menu items * fix select box issues where the list doesn't show up * formatting * Fix editor dispose issue * Copy over node modules to correct location on all platforms
86 lines
2.2 KiB
JSON
86 lines
2.2 KiB
JSON
{
|
|
"name": "configuration-editing",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"engines": {
|
|
"vscode": "^1.0.0"
|
|
},
|
|
"categories": [
|
|
"Languages",
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onLanguage:json",
|
|
"onLanguage:jsonc"
|
|
],
|
|
"main": "./out/extension",
|
|
"scripts": {
|
|
"compile": "gulp compile-extension:configuration-editing",
|
|
"watch": "gulp watch-extension:configuration-editing"
|
|
},
|
|
"dependencies": {
|
|
"jsonc-parser": "^1.0.0",
|
|
"vscode-nls": "^3.2.1"
|
|
},
|
|
"contributes": {
|
|
"jsonValidation": [
|
|
{
|
|
"fileMatch": "vscode://defaultsettings/keybindings.json",
|
|
"url": "vscode://schemas/keybindings"
|
|
},
|
|
{
|
|
"fileMatch": "%APP_SETTINGS_HOME%/keybindings.json",
|
|
"url": "vscode://schemas/keybindings"
|
|
},
|
|
{
|
|
"fileMatch": "vscode://defaultsettings/settings.json",
|
|
"url": "vscode://schemas/settings/default"
|
|
},
|
|
{
|
|
"fileMatch": "%APP_SETTINGS_HOME%/settings.json",
|
|
"url": "vscode://schemas/settings/user"
|
|
},
|
|
{
|
|
"fileMatch": "%APP_WORKSPACES_HOME%/*/workspace.json",
|
|
"url": "vscode://schemas/workspaceConfig"
|
|
},
|
|
{
|
|
"fileMatch": "**/*.code-workspace",
|
|
"url": "vscode://schemas/workspaceConfig"
|
|
},
|
|
{
|
|
"fileMatch": "%APP_SETTINGS_HOME%/locale.json",
|
|
"url": "vscode://schemas/locale"
|
|
},
|
|
{
|
|
"fileMatch": "/.vscode/settings.json",
|
|
"url": "vscode://schemas/settings/folder"
|
|
},
|
|
{
|
|
"fileMatch": "/.vscode/launch.json",
|
|
"url": "vscode://schemas/launch"
|
|
},
|
|
{
|
|
"fileMatch": "/.vscode/tasks.json",
|
|
"url": "vscode://schemas/tasks"
|
|
},
|
|
{
|
|
"fileMatch": "%APP_SETTINGS_HOME%/snippets/*.json",
|
|
"url": "vscode://schemas/snippets"
|
|
},
|
|
{
|
|
"fileMatch": "**/*.code-snippets",
|
|
"url": "vscode://schemas/global-snippets"
|
|
},
|
|
{
|
|
"fileMatch": "/.vscode/extensions.json",
|
|
"url": "vscode://schemas/extensions"
|
|
}
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "7.0.4"
|
|
}
|
|
} |