monaco-editor/.vscode/launch.json

69 lines
2.3 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": [
2023-02-10 17:26:28 +08:00
{
"name": "Monaco Editor Playground (Languages from source, needs 'npm run watch', no JSON/CSS/... workers!)",
"type": "chrome",
2023-02-10 17:26:28 +08:00
"request": "launch",
2023-02-23 22:49:16 +08:00
"url": "https://microsoft.github.io/monaco-editor/playground.html?sourceLanguages=http%3A%2F%2Flocalhost%3A5002%2Fout%2Flanguages%2Famd-tsc",
"preLaunchTask": "Launch Http Server",
"presentation": {
"group": "monaco",
"order": 1
}
},
{
"name": "Monaco Editor Playground (Languages locally bundled, needs 'npm run build')",
"type": "chrome",
"request": "launch",
"url": "https://microsoft.github.io/monaco-editor/playground.html?sourceLanguages=http%3A%2F%2Flocalhost%3A5002%2Fout%2Flanguages%2Fbundled%2Famd-dev%2Fvs",
"preLaunchTask": "Launch Http Server",
"presentation": {
"group": "monaco",
"order": 1
}
},
2023-06-12 17:49:15 +08:00
{
"name": "Website",
"type": "chrome",
"request": "launch",
"url": "http://localhost:8080/"
},
{
// Clone VS Code and make sure the task "Launch Http Server" runs.
// Then the editor is build from sources.
// We recommend to use the workspace feature for this.
"name": "Monaco Editor Playground (Load From VS Code Http Server)",
2023-02-10 17:26:28 +08:00
"type": "chrome",
"request": "launch",
2023-02-23 22:49:16 +08:00
"url": "https://microsoft.github.io/monaco-editor/playground.html?sourceLanguages=http%3A%2F%2Flocalhost%3A5002%2Fout%2Flanguages%2Famd-tsc&source=http%3A%2F%2Flocalhost%3A5001%2Fout%2Fvs",
"preLaunchTask": "Launch Http Server",
"presentation": {
"group": "monaco",
"order": 1
}
2023-02-10 17:26:28 +08:00
},
2021-11-14 02:40:20 +08:00
{
"type": "node",
2021-11-14 02:40:20 +08:00
"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
},
2021-11-16 03:24:28 +08:00
{
"type": "node",
2021-11-16 03:24:28 +08:00
"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
}
]
}