Skip to content

Commit f519393

Browse files
committed
Add tsserver task to gulp
1 parent 0ddcab3 commit f519393

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Gulpfile.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,11 @@ const tsserverProject = "src/tsserver/tsconfig.json";
215215
const tsserverJs = "built/local/tsserver.js";
216216
gulp.task(tsserverJs, /*help*/ false, useCompilerDeps, () => project.compile(tsserverProject, { typescript: useCompiler }));
217217

218+
gulp.task(
219+
"tsserver",
220+
"Builds the language server",
221+
[tsserverJs]);
222+
218223
const watchGuardProject = "src/watchGuard/tsconfig.json";
219224
const watchGuardJs = "built/local/watchGuard.js";
220225
gulp.task(watchGuardJs, /*help*/ false, useCompilerDeps, () => project.compile(watchGuardProject, { typescript: useCompiler }));

0 commit comments

Comments
 (0)