Add launch profiles for both stats-api and frontend

This commit is contained in:
Nick Greenfield 2020-09-25 08:31:11 -07:00
Родитель 37d6499524
Коммит be5abad373
7 изменённых файлов: 44 добавлений и 1 удалений

2
.gitignore поставляемый
Просмотреть файл

@ -26,7 +26,7 @@ bld/
# Visual Studio 2015 cache/options directory
.vs/
.vscode/
# .vscode/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/

15
samples/todo-app/frontend/.vscode/launch.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,15 @@
{
// 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-terminal",
"name": "Run Script: dev",
"request": "launch",
"command": "npm run dev",
"cwd": "${workspaceFolder}"
}
]
}

3
samples/todo-app/frontend/.vscode/settings.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,3 @@
{
"debug.javascript.usePreview": false
}

5
samples/todo-app/frontend/.vscode/tasks.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,5 @@
{
"version": "2.0.0",
"tasks": [
]
}

12
samples/todo-app/stats-api/.vscode/launch.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,12 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node-terminal",
"name": "Run Script: dev",
"request": "launch",
"command": "npm run dev",
"cwd": "${workspaceFolder}"
}
]
}

3
samples/todo-app/stats-api/.vscode/settings.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,3 @@
{
"debug.javascript.usePreview": false
}

5
samples/todo-app/stats-api/.vscode/tasks.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,5 @@
{
"version": "2.0.0",
"tasks": [
]
}