diff --git a/packages/cli/tsconfig.json b/packages/cli/tsconfig.json index 47213b3d474b7..d33696bee5b03 100644 --- a/packages/cli/tsconfig.json +++ b/packages/cli/tsconfig.json @@ -11,6 +11,7 @@ "module": "commonjs", "noImplicitAny": true, "removeComments": true, + "incremental": true, "strictNullChecks": true, "forceConsistentCasingInFileNames": true, "noImplicitReturns": true, diff --git a/packages/core/tsconfig.json b/packages/core/tsconfig.json index 70e7a5777b969..96251fd35f777 100644 --- a/packages/core/tsconfig.json +++ b/packages/core/tsconfig.json @@ -8,6 +8,7 @@ "jest" ], "module": "commonjs", + "incremental": true, "removeComments": true, "forceConsistentCasingInFileNames": true, "noImplicitReturns": true, diff --git a/packages/design-system/tsconfig.json b/packages/design-system/tsconfig.json index 14b3ee00916c1..ee36af503f467 100644 --- a/packages/design-system/tsconfig.json +++ b/packages/design-system/tsconfig.json @@ -8,6 +8,7 @@ "declaration": true, "experimentalDecorators": true, "skipLibCheck": true, + "incremental": true, "esModuleInterop": true, "allowJs": true, "allowSyntheticDefaultImports": true, diff --git a/packages/editor-ui/tsconfig.json b/packages/editor-ui/tsconfig.json index ce5055c3310d3..b1780f9e70466 100644 --- a/packages/editor-ui/tsconfig.json +++ b/packages/editor-ui/tsconfig.json @@ -8,6 +8,7 @@ "strict": true, "jsx": "preserve", "skipLibCheck": true, + "incremental": true, "importHelpers": true, "moduleResolution": "node", "esModuleInterop": true, diff --git a/packages/node-dev/src/tsconfig-build.json b/packages/node-dev/src/tsconfig-build.json index d118e54eb0679..d07267df4da80 100644 --- a/packages/node-dev/src/tsconfig-build.json +++ b/packages/node-dev/src/tsconfig-build.json @@ -5,6 +5,7 @@ ], "types": [], "module": "commonjs", + "incremental": true, "importHelpers": true, "preserveConstEnums": true, "declaration": true, diff --git a/packages/node-dev/tsconfig.json b/packages/node-dev/tsconfig.json index 7e3845accb67f..056f769f447d3 100644 --- a/packages/node-dev/tsconfig.json +++ b/packages/node-dev/tsconfig.json @@ -7,6 +7,7 @@ "node" ], "module": "commonjs", + "incremental": true, "esModuleInterop": true, "removeComments": true, "strict": true, diff --git a/packages/nodes-base/tsconfig.json b/packages/nodes-base/tsconfig.json index 2be084bcd7cc8..73ffd9e5c226d 100644 --- a/packages/nodes-base/tsconfig.json +++ b/packages/nodes-base/tsconfig.json @@ -9,6 +9,7 @@ "jest" ], "module": "commonjs", + "incremental": true, "removeComments": true, "strict": true, "preserveConstEnums": true, diff --git a/packages/workflow/tsconfig.json b/packages/workflow/tsconfig.json index 5f9568d9cc260..9f3c589bf9de3 100644 --- a/packages/workflow/tsconfig.json +++ b/packages/workflow/tsconfig.json @@ -9,6 +9,7 @@ "jest" ], "module": "commonjs", + "incremental": true, "removeComments": true, "forceConsistentCasingInFileNames": true, "esModuleInterop": true,