This commit is contained in:
Alex Dima 2021-11-15 11:17:48 +01:00
Родитель 321b556878
Коммит 6c2ce28dc0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 39563C1504FDD0C9
2 изменённых файлов: 18 добавлений и 26 удалений

18
.vscode/launch.json поставляемый
Просмотреть файл

@ -11,6 +11,24 @@
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}/test/unit/all.js",
"outFiles": ["${workspaceFolder}/**/*.js"]
},
{
"type": "pwa-node",
"request": "launch",
"name": "gulp release",
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
"args": ["release"],
"cwd": "${workspaceFolder}"
},
{
"type": "pwa-node",
"request": "launch",
"name": "gulp website",
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
"args": ["website"],
"cwd": "${workspaceFolder}"
}
]
}

26
monaco-editor/.vscode/launch.json поставляемый
Просмотреть файл

@ -1,26 +0,0 @@
{
// 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": "node",
"request": "launch",
"name": "gulp release",
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
"stopOnEntry": true,
"args": ["release"],
"cwd": "${workspaceFolder}"
},
{
"type": "node",
"request": "launch",
"name": "gulp website",
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
"stopOnEntry": true,
"args": ["website"],
"cwd": "${workspaceFolder}"
}
]
}