chore: add tasks.json

This commit is contained in:
Chen Asraf
2023-03-29 11:41:23 +03:00
parent b0f8e5fe90
commit 19052972d4
2 changed files with 20 additions and 3 deletions

3
.gitignore vendored
View File

@@ -13,9 +13,6 @@ dist-ssr
*.local
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*

20
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,20 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "dev",
"problemMatcher": [],
"label": "npm: dev",
"detail": "tsc && vite build --mode development"
},
{
"type": "npm",
"script": "build:zip",
"group": "build",
"problemMatcher": [],
"label": "npm: build:zip",
"detail": "yarn build && yarn zip"
}
]
}