capacitor-standard-version
Version:
Default standard-version config for capacitor app
43 lines (42 loc) • 918 B
JSON
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"problemMatcher": ["$tsc"],
"group": "build"
},
{
"type": "shell",
"label": "webpack dev",
"command": "npx",
"options": {
"env": {
"NODE_ENV": "development"
}
},
"isBackground": true,
"args": ["webpack", "--config webpack.config.js"],
"problemMatcher": [
{
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "."
}
}
]
}
]
}