aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorPitu <[email protected]>2021-01-04 01:04:20 +0900
committerPitu <[email protected]>2021-01-04 01:04:20 +0900
commitfcd39dc550dec8dbcb8325e07e938c5024cbc33d (patch)
treef41acb4e0d5fd3c3b1236fe4324b3fef9ec6eafe /.vscode/launch.json
parentCreate FUNDING.yml (diff)
parentchore: update todo (diff)
downloadhost.fuwn.me-fcd39dc550dec8dbcb8325e07e938c5024cbc33d.tar.xz
host.fuwn.me-fcd39dc550dec8dbcb8325e07e938c5024cbc33d.zip
Merge branch 'dev'
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..7ad5749
--- /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\\utils\\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"]
+ }
+ ]
+}