From be5abad3730ffd994ac3c944652671891704d8ca Mon Sep 17 00:00:00 2001 From: Nick Greenfield Date: Fri, 25 Sep 2020 08:31:11 -0700 Subject: [PATCH] Add launch profiles for both stats-api and frontend --- .gitignore | 2 +- samples/todo-app/frontend/.vscode/launch.json | 15 +++++++++++++++ samples/todo-app/frontend/.vscode/settings.json | 3 +++ samples/todo-app/frontend/.vscode/tasks.json | 5 +++++ samples/todo-app/stats-api/.vscode/launch.json | 12 ++++++++++++ samples/todo-app/stats-api/.vscode/settings.json | 3 +++ samples/todo-app/stats-api/.vscode/tasks.json | 5 +++++ 7 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 samples/todo-app/frontend/.vscode/launch.json create mode 100644 samples/todo-app/frontend/.vscode/settings.json create mode 100644 samples/todo-app/frontend/.vscode/tasks.json create mode 100644 samples/todo-app/stats-api/.vscode/launch.json create mode 100644 samples/todo-app/stats-api/.vscode/settings.json create mode 100644 samples/todo-app/stats-api/.vscode/tasks.json diff --git a/.gitignore b/.gitignore index ed43f79..af03215 100644 --- a/.gitignore +++ b/.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/ diff --git a/samples/todo-app/frontend/.vscode/launch.json b/samples/todo-app/frontend/.vscode/launch.json new file mode 100644 index 0000000..2014bc7 --- /dev/null +++ b/samples/todo-app/frontend/.vscode/launch.json @@ -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}" + } + ] +} \ No newline at end of file diff --git a/samples/todo-app/frontend/.vscode/settings.json b/samples/todo-app/frontend/.vscode/settings.json new file mode 100644 index 0000000..948ff99 --- /dev/null +++ b/samples/todo-app/frontend/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "debug.javascript.usePreview": false +} \ No newline at end of file diff --git a/samples/todo-app/frontend/.vscode/tasks.json b/samples/todo-app/frontend/.vscode/tasks.json new file mode 100644 index 0000000..ddb3938 --- /dev/null +++ b/samples/todo-app/frontend/.vscode/tasks.json @@ -0,0 +1,5 @@ +{ + "version": "2.0.0", + "tasks": [ + ] +} \ No newline at end of file diff --git a/samples/todo-app/stats-api/.vscode/launch.json b/samples/todo-app/stats-api/.vscode/launch.json new file mode 100644 index 0000000..b205e30 --- /dev/null +++ b/samples/todo-app/stats-api/.vscode/launch.json @@ -0,0 +1,12 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "node-terminal", + "name": "Run Script: dev", + "request": "launch", + "command": "npm run dev", + "cwd": "${workspaceFolder}" + } + ] +} \ No newline at end of file diff --git a/samples/todo-app/stats-api/.vscode/settings.json b/samples/todo-app/stats-api/.vscode/settings.json new file mode 100644 index 0000000..948ff99 --- /dev/null +++ b/samples/todo-app/stats-api/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "debug.javascript.usePreview": false +} \ No newline at end of file diff --git a/samples/todo-app/stats-api/.vscode/tasks.json b/samples/todo-app/stats-api/.vscode/tasks.json new file mode 100644 index 0000000..ddb3938 --- /dev/null +++ b/samples/todo-app/stats-api/.vscode/tasks.json @@ -0,0 +1,5 @@ +{ + "version": "2.0.0", + "tasks": [ + ] +} \ No newline at end of file