monaco-editor/.vscode/launch.json

30 lines
735 B
JSON
Raw Normal View History

{
2019-02-19 20:07:47 +08:00
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
2019-02-19 20:07:47 +08:00
"name": "gulp release",
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
"stopOnEntry": true,
"args": [
"release"
],
"cwd": "${workspaceFolder}"
},
2019-02-19 20:07:47 +08:00
{
"type": "node",
"request": "launch",
"name": "gulp website",
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
"stopOnEntry": true,
"args": [
"website"
],
"cwd": "${workspaceFolder}"
},
]
}