Skip to content

Commit

Permalink
✨ feat: 添加构建任务
Browse files Browse the repository at this point in the history
  • Loading branch information
batu1579 committed Oct 20, 2022
1 parent f4784b6 commit 6692d72
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
node_modules
build
.VSCodeCounter
.vscode
regex.md
index.dts
*.code-workspace
Expand Down
24 changes: 24 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"isBackground": true,
"presentation": {
"reveal": "never",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$tsc-watch",
"label": "npm: build",
"detail": "webpack --config ./buildConfig/webpack.dev.js"
}
]
}

0 comments on commit 6692d72

Please sign in to comment.