monaco-editor/.vscode/launch.json
2021-11-15 20:24:28 +01:00

43 lines
1.2 KiB
JSON

{
// 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>/**"],
"program": "${workspaceFolder}/test/unit/all.js",
"outFiles": ["${workspaceFolder}/**/*.js"]
},
{
"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}"
},
{
"type": "pwa-node",
"request": "launch",
"name": "webpack plugin test",
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}/webpack-plugin/node_modules/.bin/webpack",
"args": ["--config", "test/webpack.config.js"],
"cwd": "${workspaceFolder}/webpack-plugin/"
}
]
}