Merge pull request #29583 from Microsoft/gulpTsserver

Add tsserver task to gulp
This commit is contained in:
Ron Buckton
2019-01-25 10:59:45 -08:00
committed by GitHub

View File

@@ -215,6 +215,11 @@ const tsserverProject = "src/tsserver/tsconfig.json";
const tsserverJs = "built/local/tsserver.js";
gulp.task(tsserverJs, /*help*/ false, useCompilerDeps, () => project.compile(tsserverProject, { typescript: useCompiler }));
gulp.task(
"tsserver",
"Builds the language server",
[tsserverJs]);
const watchGuardProject = "src/watchGuard/tsconfig.json";
const watchGuardJs = "built/local/watchGuard.js";
gulp.task(watchGuardJs, /*help*/ false, useCompilerDeps, () => project.compile(watchGuardProject, { typescript: useCompiler }));