You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
938 B
42 lines
938 B
{ |
|
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558 |
|
"version": "2.0.0", |
|
"tasks": [ |
|
{ |
|
"type": "npm", |
|
"script": "start", |
|
"isBackground": true, |
|
"problemMatcher": { |
|
"owner": "typescript", |
|
"pattern": "$tsc", |
|
"background": { |
|
"activeOnStart": true, |
|
"beginsPattern": { |
|
"regexp": "(.*?)" |
|
}, |
|
"endsPattern": { |
|
"regexp": "bundle generation complete" |
|
} |
|
} |
|
} |
|
}, |
|
{ |
|
"type": "npm", |
|
"script": "test", |
|
"isBackground": true, |
|
"problemMatcher": { |
|
"owner": "typescript", |
|
"pattern": "$tsc", |
|
"background": { |
|
"activeOnStart": true, |
|
"beginsPattern": { |
|
"regexp": "(.*?)" |
|
}, |
|
"endsPattern": { |
|
"regexp": "bundle generation complete" |
|
} |
|
} |
|
} |
|
} |
|
] |
|
}
|
|
|