fixes #3122: Add snippet support to tasks.json

This commit is contained in:
Dirk Baeumer
2016-02-18 16:48:28 +01:00
parent 054734ff27
commit 8004d277b7
9 changed files with 218 additions and 197 deletions

View File

@@ -0,0 +1,21 @@
{
"name": "tasks",
"description": "Extension to add support for tasks.json files",
"displayName": "Tasks.json support for VSCode",
"version": "0.10.1",
"author": "Microsoft Corporation",
"license": "MIT",
"publisher": "vscode",
"engines": {
"vscode": "*"
},
"scripts": {
"vscode:prepublish": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../gulpfile.plugins.js compile-plugin:tasks ./src/tsconfig.json"
},
"activationEvents": [
"onLanguage:json"
],
"main": "./out/tasksMain",
"contributes": {
}
}