mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-26 21:28:04 +00:00
Switches builtin extensions to use @types/node for node definitions. Fixes a few errors that show up as a result of updating to a more modern version of node.d.ts
39 lines
763 B
JSON
39 lines
763 B
JSON
{
|
|
"name": "extension-editing",
|
|
"version": "0.0.1",
|
|
"publisher": "vscode",
|
|
"engines": {
|
|
"vscode": "^1.4.0"
|
|
},
|
|
"categories": [
|
|
"Languages",
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onLanguage:typescript"
|
|
],
|
|
"main": "./out/extension",
|
|
"scripts": {
|
|
"compile": "gulp compile-extension:extension-editing",
|
|
"watch": "gulp watch-extension:extension-editing"
|
|
},
|
|
"contributes": {
|
|
"jsonValidation": [
|
|
{
|
|
"fileMatch": "package.json",
|
|
"url": "vscode://schemas/vscode-extensions"
|
|
},
|
|
{
|
|
"fileMatch": "*language-configuration.json",
|
|
"url": "vscode://schemas/language-configuration"
|
|
},
|
|
{
|
|
"fileMatch": "*icon-theme.json",
|
|
"url": "vscode://schemas/icon-theme"
|
|
}
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^7.0.4"
|
|
}
|
|
} |