mirror of
https://github.com/magnum-opus-nn-cp/word-plugin.git
synced 2024-11-22 00:26:35 +03:00
131 lines
2.8 KiB
JSON
131 lines
2.8 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Build (Development)",
|
|
"type": "npm",
|
|
"script": "build:dev",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"presentation": {
|
|
"clear": true,
|
|
"panel": "shared",
|
|
"showReuseMessage": false
|
|
}
|
|
},
|
|
{
|
|
"label": "Build (Production)",
|
|
"type": "npm",
|
|
"script": "build",
|
|
"group": "build",
|
|
"presentation": {
|
|
"clear": true,
|
|
"panel": "shared",
|
|
"showReuseMessage": false
|
|
}
|
|
},
|
|
{
|
|
"label": "Debug: Excel Desktop",
|
|
"type": "npm",
|
|
"script": "start:desktop -- --app excel",
|
|
"presentation": {
|
|
"clear": true,
|
|
"panel": "dedicated",
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Debug: Outlook Desktop",
|
|
"type": "npm",
|
|
"script": "start:desktop -- --app outlook",
|
|
"presentation": {
|
|
"clear": true,
|
|
"panel": "dedicated",
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Debug: PowerPoint Desktop",
|
|
"type": "npm",
|
|
"script": "start:desktop -- --app powerpoint",
|
|
"presentation": {
|
|
"clear": true,
|
|
"panel": "dedicated",
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Debug: Word Desktop",
|
|
"type": "npm",
|
|
"script": "start:desktop -- --app word",
|
|
"presentation": {
|
|
"clear": true,
|
|
"panel": "dedicated",
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Dev Server",
|
|
"type": "npm",
|
|
"script": "dev-server",
|
|
"presentation": {
|
|
"clear": true,
|
|
"panel": "dedicated"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Install",
|
|
"type": "npm",
|
|
"script": "install",
|
|
"presentation": {
|
|
"clear": true,
|
|
"panel": "shared",
|
|
"showReuseMessage": false
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Lint: Check for problems",
|
|
"type": "npm",
|
|
"script": "lint",
|
|
"problemMatcher": [
|
|
"$eslint-stylish"
|
|
]
|
|
},
|
|
{
|
|
"label": "Lint: Fix all auto-fixable problems",
|
|
"type": "npm",
|
|
"script": "lint:fix",
|
|
"problemMatcher": [
|
|
"$eslint-stylish"
|
|
]
|
|
},
|
|
{
|
|
"label": "Stop Debug",
|
|
"type": "npm",
|
|
"script": "stop",
|
|
"presentation": {
|
|
"clear": true,
|
|
"panel": "shared",
|
|
"showReuseMessage": false
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Watch",
|
|
"type": "npm",
|
|
"script": "watch",
|
|
"presentation": {
|
|
"clear": true,
|
|
"panel": "dedicated"
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
]
|
|
}
|