monaco-editor/.vscode/launch.json

35 lines
968 B
JSON
Raw Normal View History

2021-11-14 02:40:20 +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": "pwa-node",
"request": "launch",
"name": "Monaco Languages Unit Tests",
"skipFiles": ["<node_internals>/**"],
2021-11-14 03:53:15 +08:00
"program": "${workspaceFolder}/test/unit/all.js",
2021-11-14 02:40:20 +08:00
"outFiles": ["${workspaceFolder}/**/*.js"]
2021-11-15 18:17:48 +08:00
},
{
"type": "pwa-node",
"request": "launch",
"name": "gulp release",
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
"args": ["release"],
"cwd": "${workspaceFolder}"
},
{
"type": "pwa-node",
"request": "launch",
"name": "gulp website",
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
"args": ["website"],
"cwd": "${workspaceFolder}"
2021-11-14 02:40:20 +08:00
}
]
}