monaco-editor/.vscode/launch.json

17 lines
478 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"]
}
]
}