vscode/extensions/css-language-features/.vscode/launch.json

56 lines
1.2 KiB
JSON
Raw Normal View History

2016-06-12 15:54:03 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
2017-09-19 09:21:41 +00:00
"--extensionDevelopmentPath=${workspaceFolder}"
2016-06-12 15:54:03 +00:00
],
"stopOnEntry": false,
"sourceMaps": true,
2018-06-18 18:10:48 +00:00
"outFiles": [
"${workspaceFolder}/client/out/**/*.js"
],
2019-01-28 21:55:55 +00:00
"smartStep": true
2016-06-12 15:54:03 +00:00
},
{
"name": "Launch Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
2018-06-18 18:10:48 +00:00
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/client/out/test"
],
2016-06-12 15:54:03 +00:00
"stopOnEntry": false,
"sourceMaps": true,
2018-06-18 18:10:48 +00:00
"outFiles": [
"${workspaceFolder}/client/out/test/**/*.js"
2019-01-28 21:55:55 +00:00
]
2016-12-04 21:07:50 +00:00
},
{
"name": "Server Unit Tests",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"stopOnEntry": false,
"args": [
"--timeout",
"999999",
"--colors"
],
"cwd": "${workspaceRoot}",
"runtimeExecutable": null,
"runtimeArgs": [],
"env": {},
"sourceMaps": true,
"outFiles": [
"${workspaceRoot}/server/out/**"
]
2016-12-04 21:07:50 +00:00
}
2016-06-12 15:54:03 +00:00
]
}