From 0fe5ee6c4cab917b74f48afef7e9cd808e3d20b9 Mon Sep 17 00:00:00 2001 From: ghostflyby Date: Wed, 13 Mar 2024 23:42:37 +0800 Subject: [PATCH] Chore: version control vscode settings --- .gitignore | 2 -- .vscode/tasks.json | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 .vscode/tasks.json diff --git a/.gitignore b/.gitignore index ea9fa00..c6bba59 100644 --- a/.gitignore +++ b/.gitignore @@ -128,5 +128,3 @@ dist .yarn/build-state.yml .yarn/install-state.gz .pnp.* - -.vscode \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..b6e9b90 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,16 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "build", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [], + "label": "npm: build", + "detail": "esbuild package" + } + ] +} \ No newline at end of file