aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorKana <[email protected]>2020-12-24 21:41:24 +0900
committerGitHub <[email protected]>2020-12-24 21:41:24 +0900
commit2412a60bd4cb2364a477a3af79a8c6dcb6b0ddab (patch)
treedbf2b2cad342f31849a62089dedd40165758af86 /.vscode/launch.json
parentEnable deleting files with the API key (diff)
parentbug: fix showlist resetting itself every time the page is changed (diff)
downloadhost.fuwn.me-2412a60bd4cb2364a477a3af79a8c6dcb6b0ddab.tar.xz
host.fuwn.me-2412a60bd4cb2364a477a3af79a8c6dcb6b0ddab.zip
Merge pull request #228 from Zephyrrus/begone_trailing_commas
Merge own dev branch into main dev branch
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json50
1 files changed, 50 insertions, 0 deletions
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": ["<node_internals>/**"],
+ "program": "${workspaceFolder}\\src\\api\\structures\\Server"
+ },
+ {
+ "type": "node",
+ "request": "launch",
+ "name": "[DEV] Launch ThumbGen",
+ "skipFiles": ["<node_internals>/**"],
+ "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"]
+ }
+ ]
+}