From d73722af19c7dde1ad9e79433570899aeb095816 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Sun, 25 Oct 2020 22:26:37 -0700 Subject: [PATCH] fix: Remove incremental from TS build. --- src/Project.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Project.ts b/src/Project.ts index 040e89b02..6e6951c75 100644 --- a/src/Project.ts +++ b/src/Project.ts @@ -32,7 +32,7 @@ export default class Project extends BaseProject { const args: string[] = []; if (this.isWorkspacesEnabled()) { - args.push('--build', '--incremental'); + args.push('--build'); } else { args.push('--declaration', '--declarationMap', '--emitDeclarationOnly'); }