mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-26 21:23:53 -06:00
Merge pull request #29583 from Microsoft/gulpTsserver
Add tsserver task to gulp
This commit is contained in:
commit
df709a2c61
@ -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 }));
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user