123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "type": "npm",
- "label": "webpack: dev server",
- "script": "dev",
- "promptOnClose": true,
- "isBackground": true,
- "problemMatcher": {
- "owner": "webpack",
- "severity": "error",
- "fileLocation": "absolute",
- "pattern": [
- {
- "regexp": "ERROR in (.*)",
- "file": 1
- },
- {
- "regexp": "\\((\\d+),(\\d+)\\):(.*)",
- "line": 1,
- "column": 2,
- "message": 3
- }
- ],
- "background": {
- "activeOnStart": true,
- "beginsPattern": "Compiling\\.\\.\\.",
- "endsPattern": "Compiled successfully\\."
- }
- }
- },
- {
- "type": "npm",
- "label": "webpack: build",
- "script": "build",
- "promptOnClose": true,
- "isBackground": true,
- "problemMatcher": {
- "owner": "webpack",
- "severity": "error",
- "fileLocation": "absolute",
- "pattern": [
- {
- "regexp": "ERROR in (.*)",
- "file": 1
- },
- {
- "regexp": "\\((\\d+),(\\d+)\\):(.*)",
- "line": 1,
- "column": 2,
- "message": 3
- }
- ],
- "background": {
- "activeOnStart": true,
- "beginsPattern": "Compiling\\.\\.\\.",
- "endsPattern": "Compiled successfully\\."
- }
- }
- }
- ]
- }
|