We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
From microsoft/vscode#80074
TypeScript Version: 3.6.2
Search Terms:
Repo Clone and start building VS Code with --incremental --watch
--incremental --watch
git clone https://github.com/microsoft/vscode.git cd vscode yarn node --max-old-space-size=4096 ./node_modules/.bin/tsc --incremental -w -p src/tsconfig.json
src/vs/base/common/linkedList.ts
unshift
deshift
Expected behavior: Recompile is fairly quick. Our custom gulp-tsb builder takes a second or two for this case
Actual behavior: Rebuild with tsc takes considerable time. This blocks VS Code from migrating to use standard tsc --watch instead of gulp-tsb
tsc --watch
gulp-tsb
From microsoft/vscode#80074
TypeScript Version: 3.6.2
Search Terms:
Repo
Clone and start building VS Code with
--incremental --watchsrc/vs/base/common/linkedList.tsunshifttodeshiftand saveExpected behavior:
Recompile is fairly quick. Our custom gulp-tsb builder takes a second or two for this case
Actual behavior:
Rebuild with tsc takes considerable time. This blocks VS Code from migrating to use standard
tsc --watchinstead ofgulp-tsb