mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-03-15 05:55:11 -05:00
Remove emitDeclarationOnly hack now that build mode supports it as a flag (#51795)
This commit is contained in:
@@ -35,7 +35,7 @@ const execTsc = (/** @type {string[]} */ ...args) =>
|
||||
"-b", ...args],
|
||||
{ hidePrompt: true });
|
||||
|
||||
const projectBuilder = new ProjectQueue((projects) => execTsc(...projects));
|
||||
const projectBuilder = new ProjectQueue((projects) => execTsc(...(cmdLineOptions.bundle ? [] : ["--emitDeclarationOnly", "false"]), ...projects));
|
||||
|
||||
/**
|
||||
* @param {string} project
|
||||
|
||||
Reference in New Issue
Block a user