From f51939326a7cc1392765b86bd9768ba071ffa479 Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Fri, 25 Jan 2019 10:52:00 -0800 Subject: [PATCH] Add tsserver task to gulp --- Gulpfile.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Gulpfile.js b/Gulpfile.js index c272caf2b6e..7a577ebafe1 100644 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -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 }));