Files
vscode-extension-samples/task-provider-sample/package.json
Jens Fischer 655ea9dc0a Fix path to task-provider-sample's main
It's built to out/extension.js, so launching the extension currently produces an error. I guess that was caused by this change:

704f351abd (diff-71ee4bf336efb1f169e66d21bbc6d508)
2019-02-06 14:22:26 +01:00

50 lines
996 B
JSON

{
"name": "task-provider-samples",
"displayName": "Task Provider Samples",
"description": "Samples for VSCode's view API",
"version": "0.0.1",
"publisher": "vscode-samples",
"engines": {
"vscode": "^1.26.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:workbench.action.tasks.runTask"
],
"main": "./out/extension",
"contributes": {
"taskDefinitions": [
{
"type": "rake",
"required": [
"task"
],
"properties": {
"task": {
"type": "string",
"description": "The Rake task to customize"
},
"file": {
"type": "string",
"description": "The Rake file that provides the task. Can be omitted."
}
}
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^8.0.0",
"tslint": "^5.11.0",
"typescript": "^3.1.3",
"vscode": "^1.1.17"
}
}