From f0753e1551a4291ed122994ad389ec863d9c93e5 Mon Sep 17 00:00:00 2001 From: Zephyrrus Date: Thu, 2 Jul 2020 02:49:30 +0300 Subject: chore: add compound launcher and basic prettier --- .vscode/launch.json | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .vscode/launch.json (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..41b434e --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,50 @@ +{ + // 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": "[DEV] Launch API", + "skipFiles": ["/**"], + "program": "${workspaceFolder}\\src\\api\\structures\\Server" + }, + { + "type": "node", + "request": "launch", + "name": "[DEV] Launch ThumbGen", + "skipFiles": ["/**"], + "program": "${workspaceFolder}\\src\\api\\generateThumbs" + }, + { + "type": "chrome", + "request": "launch", + "name": "client: chrome", + "url": "http://localhost:8070", + "webRoot": "${workspaceFolder}" + }, + { + "type": "node", + "request": "launch", + "name": "server: nuxt", + "args": ["dev"], + "osx": { + "program": "${workspaceFolder}/node_modules/.bin/nuxt" + }, + "linux": { + "program": "${workspaceFolder}/node_modules/.bin/nuxt" + }, + "windows": { + "program": "${workspaceFolder}/node_modules/nuxt/bin/nuxt.js" + } + } + ], + "compounds": [ + { + "name": "fullstack: nuxt", + "configurations": ["server: nuxt", "client: chrome"] + } + ] +} -- cgit v1.2.3 From 09d8d02e6c11bb4aea9cd129bf195868bab0738f Mon Sep 17 00:00:00 2001 From: Pitu Date: Fri, 25 Dec 2020 02:08:54 +0900 Subject: Cleanup --- .vscode/launch.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json index 41b434e..7ad5749 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -16,7 +16,7 @@ "request": "launch", "name": "[DEV] Launch ThumbGen", "skipFiles": ["/**"], - "program": "${workspaceFolder}\\src\\api\\generateThumbs" + "program": "${workspaceFolder}\\src\\api\\utils\\generateThumbs" }, { "type": "chrome", -- cgit v1.2.3