diff --git a/packages/cli/tsconfig.json b/packages/cli/tsconfig.json index 47213b3d47..d33696bee5 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 70e7a5777b..96251fd35f 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 14b3ee0091..ee36af503f 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 ce5055c331..b1780f9e70 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 d118e54eb0..d07267df4d 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 7e3845accb..056f769f44 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 2be084bcd7..73ffd9e5c2 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 5f9568d9cc..9f3c589bf9 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,