monaco-editor/.vscode/launch.json

45 lines
1.2 KiB
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>/**"],
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"args": ["-r", "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",
2021-11-17 03:04:55 +08:00
"name": "release",
2021-11-15 18:17:48 +08:00
"skipFiles": ["<node_internals>/**"],
2021-11-17 03:04:55 +08:00
"program": "${workspaceFolder}/build/release.js",
"args": [],
2021-11-15 18:17:48 +08:00
"cwd": "${workspaceFolder}"
},
{
"type": "pwa-node",
"request": "launch",
2021-11-17 05:32:27 +08:00
"name": "website",
2021-11-15 18:17:48 +08:00
"skipFiles": ["<node_internals>/**"],
2021-11-17 05:32:27 +08:00
"program": "${workspaceFolder}/build/website.js",
"args": [],
2021-11-15 18:17:48 +08:00
"cwd": "${workspaceFolder}"
2021-11-16 03:24:28 +08:00
},
{
"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/"
2021-11-14 02:40:20 +08:00
}
]
}