create-mori
Version:
Quickly create project templates to support the required repositories as much as possible
20 lines • 517 B
JSON
// See https://code.visualstudio.com/Docs/editor/debugging#_before-you-start-debugging
// for the documentation about the launch.json format
{
"version": "0.2.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
],
"preLaunchTask": "npm: dev"
}
]
}