From 52f5b4a8117da7dab462c839f1d680c78ca41f8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Wed, 4 Oct 2023 19:37:38 -0400 Subject: [PATCH] chore(workspace): add vscode snippets and launch configs --- .vscode/launch.json | 28 ++++++++++++++++++++++++++++ .vscode/settings.json | 6 +++++- .vscode/snippets.code-snippets | 27 +++++++++++++++++++++++++++ 3 files changed, 60 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json create mode 100644 .vscode/snippets.code-snippets diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..aa12976 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,28 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + "version": "0.2.0", + "configurations": [ + { + "type": "chrome", + "request": "launch", + "name": "client: chrome", + "url": "http://localhost:3001", + "webRoot": "${workspaceFolder}" + }, + { + "type": "node", + "request": "launch", + "name": "server: nuxt", + "outputCapture": "std", + "program": "${workspaceFolder}/node_modules/nuxi/bin/nuxi.mjs", + "args": ["dev"] + } + ], + "compounds": [ + { + "name": "fullstack: nuxt", + "configurations": ["server: nuxt", "client: chrome"] + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json index a7485dc..80c18d7 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -10,7 +10,11 @@ "components", "deps", "client-side", - "config" + "config", + "workspace", + "typing", + "api/utils", + "server/utils" ], "editor.defaultFormatter": "esbenp.prettier-vscode", "[typescript]": { diff --git a/.vscode/snippets.code-snippets b/.vscode/snippets.code-snippets new file mode 100644 index 0000000..74e7841 --- /dev/null +++ b/.vscode/snippets.code-snippets @@ -0,0 +1,27 @@ +{ + // Place your abc-rockfic-v3 workspace snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and + // description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope + // is left empty or omitted, the snippet gets applied to all languages. The prefix is what is + // used to trigger the snippet and the body will be expanded and inserted. Possible variables are: + // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. + // Placeholders with the same ids are connected. + // Example: + // "Print to console": { + // "scope": "javascript,typescript", + // "prefix": "log", + // "body": [ + // "console.log('$1');", + // "$2" + // ], + // "description": "Log output to console" + // } + "event handler": { + "scope": "typescript", + "prefix": "eh", + "body": [ + "export default eventHandler(async (ev) => {" + "\t$0", + "})" + ] + } +} \ No newline at end of file