Signed-off-by: Yan Zhang <yanzh@microsoft.com>
This commit is contained in:
Yan Zhang 2021-09-22 16:54:47 +08:00 коммит произвёл GitHub
Родитель 8c52fa7ddc
Коммит cca9644057
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 3 добавлений и 3 удалений

4
.vscode/tasks.json поставляемый
Просмотреть файл

@ -18,8 +18,8 @@
],
"background": {
"activeOnStart": true,
"beginsPattern": "Compilation \\w+ starting…",
"endsPattern": "Compilation\\s+finished"
"beginsPattern": "\\w+",
"endsPattern": "webpack .* compiled"
}
},
"isBackground": true,

Просмотреть файл

@ -709,7 +709,7 @@
"build-plugin": "node scripts/build-jdtls-ext.js",
"compile": "tsc -p ./",
"tslint": "tslint -t verbose --project tsconfig.json",
"watch": "webpack --mode development --watch --info-verbosity verbose",
"watch": "webpack --mode development --watch",
"test": "npm run compile && node ./out/test/runTest.js",
"webpack": "webpack --mode development"
},