pas2js/demo/vscode/helloworld/.vscode/tasks.json
2020-12-27 14:47:49 +00:00

20 lines
609 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Compile",
"type": "shell",
"command": "pas2js pas2jsdemoextension.lpr -ojs/pas2jsdemoextension.js -Tbrowser -Jivscodeimports.js -Jirtl.js -Javscodeexports.js -Jc ",
"group":{
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new"
}
}
]
}