HVLXWD6AJ2ACJJJRBDL36OFIXWQ7VA3PEUEQJGRKXJFSJ2JORKSAC
HF3NERPZP7TS7STG3WGVSPAYTVYR6IYQ3ZLYZ6EGCDRKNTSHJ2LAC
Q5X2TMMI6PMBU3OKWC4EQAYGBOXYLFY3QQ2B7EHY5ASJHK5AUKXAC
ZGMIJNFVDK7R6AF56FNCA23W5KV3HVBUBPTWMLQADCEPB3MOPELQC
GNQD74OZ56J2R23GVUGFP3G5KVML2KDZ4OUZK6SVLSM7HVO2WOCAC
B4SKYP3Y5R7UPPGLLZV7OK3SIN4TRAJ3IL6FS3T7ZFZF5HTEQARQC
NCBEWRYEEJMJO37SHY7XCNFZYWLT5HUHCKN47UGSEY3FFWFX6QFQC
ILH3GIVTVMKSU5TH5ZZSPB3URX622JA2BNBOO6K7ZTF4ISYDTJLAC
WW67NYZVQEXLN6LISHIMVXAMGXP4Z53IN5PHGGI7MLKOIR4LXDBAC
path = await searchPijulCargoDirectory(outputChannel);
if (path) {
return await checkPijulExecutable(path);
if (process.platform === 'win32') {
path += '.exe';
}
return await checkPijulExecutable(path);
} catch (e) {
// If not found, check if Pijul can be found in the .cargo directory
try {
path = await searchPijulCargoDirectory(outputChannel);
if (path) {
return await checkPijulExecutable(path);
}
} catch (_) {
path = undefined;
mode: 'none', // this leaves the source code as close as possible to the original (when packaging we set this to 'production')
mode: 'none', // this leaves the source code as close as possible to the original (when packaging we set this to 'production')
"problemMatcher": [
"$ts-webpack-watch",
"$tslint-webpack-watch"
],
"problemMatcher": {
"owner": "typescript",
"fileLocation": "relative",
"background": {
"activeOnStart": true,
"beginsPattern": "webpack --watch --config .*$",
"endsPattern": "webpack [\\.\\d]+ compiled successfully in \\d+ ms"
},
"pattern": [
{
"regexp": "ERROR in ([^\\(]*)\\((\\d+),(\\d+)\\):",
"file": 1,
"line": 2,
"column": 3
},
{
"regexp": "([A-Za-z0-9-]+):(.*)",
"message": 2,
"code": 1
}
]
},