From b56dfd9a96ed1423d2a41b63660c09298ffe848d Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Thu, 7 Aug 2025 19:54:30 -0300 Subject: [PATCH 1/8] Reusing tsconfig file across components --- components/amplenote/tsconfig.json | 34 +++++++----------- components/apitemplate_io/tsconfig.json | 33 +++++++---------- components/baserow/tsconfig.json | 21 ++++------- components/beehiiv/tsconfig.json | 32 +++++++---------- components/buy_me_a_coffee/tsconfig.json | 19 ++++------ components/clientary/tsconfig.json | 19 ++++------ components/cloudmersive/tsconfig.json | 21 ++++------- components/coassemble/tsconfig.json | 34 +++++++----------- components/concord/tsconfig.json | 33 +++++++---------- components/currencyscoop/tsconfig.json | 33 +++++++---------- components/data_axle_platform/tsconfig.json | 35 +++++++------------ components/detrack/tsconfig.json | 33 +++++++---------- components/dialpad/tsconfig.json | 32 +++++++---------- components/docupilot/tsconfig.json | 33 +++++++---------- components/expensify/tsconfig.json | 34 +++++++----------- components/formatting/tsconfig.json | 34 +++++++----------- components/google_my_business/tsconfig.json | 34 +++++++----------- components/google_recaptcha/tsconfig.json | 22 +++++------- components/google_workspace/tsconfig.json | 33 +++++++---------- components/infusionsoft/tsconfig.json | 34 ++++++++---------- components/kanbanflow/tsconfig.json | 33 +++++++---------- components/lemon_squeezy/tsconfig.json | 35 +++++++------------ components/lob/tsconfig.json | 22 ++++-------- components/mailbluster/tsconfig.json | 34 +++++++----------- components/mailboxvalidator/tsconfig.json | 21 ++++------- components/mattermost/tsconfig.json | 21 ++++------- components/mediatoolkit/tsconfig.json | 32 +++++++---------- components/namely/tsconfig.json | 34 +++++++----------- components/nectar_crm/tsconfig.json | 34 +++++++----------- components/neverbounce/tsconfig.json | 33 +++++++---------- components/niftyimages/tsconfig.json | 21 ++++------- components/ninox/tsconfig.json | 32 +++++++---------- components/onfleet/tsconfig.json | 34 +++++++----------- components/persistiq/tsconfig.json | 19 ++++------ components/pikaso/tsconfig.json | 32 +++++++---------- components/practitest/tsconfig.json | 33 +++++++---------- components/profitwell/tsconfig.json | 33 +++++++---------- .../quickemailverification/tsconfig.json | 33 +++++++---------- components/raven_tools/tsconfig.json | 33 +++++++---------- components/repuso/tsconfig.json | 33 +++++++---------- components/resend/tsconfig.json | 24 ++++++------- components/reversecontact/tsconfig.json | 19 ++++------ components/rise/tsconfig.json | 32 +++++++---------- components/rss/tsconfig.json | 32 +++++++---------- components/salesmate/tsconfig.json | 35 +++++++------------ components/serveravatar/tsconfig.json | 32 +++++++---------- components/shipcloud/tsconfig.json | 33 +++++++---------- components/smaily/tsconfig.json | 24 +++++-------- components/smtp2go/tsconfig.json | 22 +++++------- components/team_up/tsconfig.json | 33 +++++++---------- components/tolstoy/tsconfig.json | 32 +++++++---------- components/tookan/tsconfig.json | 33 +++++++---------- components/twitch_developer_app/tsconfig.json | 19 ++++------ components/twitter/tsconfig.json | 33 +++++++---------- components/verdict_as_a_service/tsconfig.json | 32 +++++++---------- components/waitwhile/tsconfig.json | 35 +++++++------------ components/wildberries/tsconfig.json | 32 +++++++---------- components/workast/tsconfig.json | 32 +++++++---------- components/xperiencify/tsconfig.json | 24 +++++-------- components/yelp/tsconfig.json | 21 ++++------- components/zoho_assist/tsconfig.json | 33 +++++++---------- components/zoho_catalyst/tsconfig.json | 33 +++++++---------- tsconfig.components.json | 15 ++++++++ 63 files changed, 718 insertions(+), 1147 deletions(-) create mode 100644 tsconfig.components.json diff --git a/components/amplenote/tsconfig.json b/components/amplenote/tsconfig.json index a61206464b8c0..d0fe5bf296435 100644 --- a/components/amplenote/tsconfig.json +++ b/components/amplenote/tsconfig.json @@ -1,23 +1,15 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/apitemplate_io/tsconfig.json b/components/apitemplate_io/tsconfig.json index a68a0d8b02a26..d0fe5bf296435 100644 --- a/components/apitemplate_io/tsconfig.json +++ b/components/apitemplate_io/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common", - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/baserow/tsconfig.json b/components/baserow/tsconfig.json index 910b87fc8266a..d0fe5bf296435 100644 --- a/components/baserow/tsconfig.json +++ b/components/baserow/tsconfig.json @@ -1,17 +1,5 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, + "extends": "../../tsconfig.components.json", "include": [ "app", "actions", @@ -19,6 +7,9 @@ "common" ], "exclude": [ - "dist", - ] + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/beehiiv/tsconfig.json b/components/beehiiv/tsconfig.json index 335fa6f1cf6ec..d0fe5bf296435 100644 --- a/components/beehiiv/tsconfig.json +++ b/components/beehiiv/tsconfig.json @@ -1,21 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/buy_me_a_coffee/tsconfig.json b/components/buy_me_a_coffee/tsconfig.json index e4f6e612b50bf..d0fe5bf296435 100644 --- a/components/buy_me_a_coffee/tsconfig.json +++ b/components/buy_me_a_coffee/tsconfig.json @@ -1,15 +1,5 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, + "extends": "../../tsconfig.components.json", "include": [ "app", "actions", @@ -17,6 +7,9 @@ "common" ], "exclude": [ - "dist", - ] + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/clientary/tsconfig.json b/components/clientary/tsconfig.json index e4f6e612b50bf..d0fe5bf296435 100644 --- a/components/clientary/tsconfig.json +++ b/components/clientary/tsconfig.json @@ -1,15 +1,5 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, + "extends": "../../tsconfig.components.json", "include": [ "app", "actions", @@ -17,6 +7,9 @@ "common" ], "exclude": [ - "dist", - ] + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/cloudmersive/tsconfig.json b/components/cloudmersive/tsconfig.json index 910b87fc8266a..d0fe5bf296435 100644 --- a/components/cloudmersive/tsconfig.json +++ b/components/cloudmersive/tsconfig.json @@ -1,17 +1,5 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, + "extends": "../../tsconfig.components.json", "include": [ "app", "actions", @@ -19,6 +7,9 @@ "common" ], "exclude": [ - "dist", - ] + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/coassemble/tsconfig.json b/components/coassemble/tsconfig.json index a61206464b8c0..d0fe5bf296435 100644 --- a/components/coassemble/tsconfig.json +++ b/components/coassemble/tsconfig.json @@ -1,23 +1,15 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/concord/tsconfig.json b/components/concord/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/concord/tsconfig.json +++ b/components/concord/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/currencyscoop/tsconfig.json b/components/currencyscoop/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/currencyscoop/tsconfig.json +++ b/components/currencyscoop/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/data_axle_platform/tsconfig.json b/components/data_axle_platform/tsconfig.json index ef45a29c82455..d0fe5bf296435 100644 --- a/components/data_axle_platform/tsconfig.json +++ b/components/data_axle_platform/tsconfig.json @@ -1,24 +1,15 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/detrack/tsconfig.json b/components/detrack/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/detrack/tsconfig.json +++ b/components/detrack/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/dialpad/tsconfig.json b/components/dialpad/tsconfig.json index 610c2a8f6418b..d0fe5bf296435 100644 --- a/components/dialpad/tsconfig.json +++ b/components/dialpad/tsconfig.json @@ -1,21 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/docupilot/tsconfig.json b/components/docupilot/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/docupilot/tsconfig.json +++ b/components/docupilot/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/expensify/tsconfig.json b/components/expensify/tsconfig.json index a61206464b8c0..d0fe5bf296435 100644 --- a/components/expensify/tsconfig.json +++ b/components/expensify/tsconfig.json @@ -1,23 +1,15 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/formatting/tsconfig.json b/components/formatting/tsconfig.json index 0b82410677792..d0fe5bf296435 100644 --- a/components/formatting/tsconfig.json +++ b/components/formatting/tsconfig.json @@ -1,23 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - "skipLibCheck": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/google_my_business/tsconfig.json b/components/google_my_business/tsconfig.json index 0b82410677792..d0fe5bf296435 100644 --- a/components/google_my_business/tsconfig.json +++ b/components/google_my_business/tsconfig.json @@ -1,23 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - "skipLibCheck": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/google_recaptcha/tsconfig.json b/components/google_recaptcha/tsconfig.json index 0eec7d2e5b109..d0fe5bf296435 100644 --- a/components/google_recaptcha/tsconfig.json +++ b/components/google_recaptcha/tsconfig.json @@ -1,21 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, + "extends": "../../tsconfig.components.json", "include": [ "app", "actions", - "sources" + "sources", + "common" ], "exclude": [ - "dist", - ] + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/google_workspace/tsconfig.json b/components/google_workspace/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/google_workspace/tsconfig.json +++ b/components/google_workspace/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/infusionsoft/tsconfig.json b/components/infusionsoft/tsconfig.json index 873d4ff05af64..477155da5b30c 100644 --- a/components/infusionsoft/tsconfig.json +++ b/components/infusionsoft/tsconfig.json @@ -1,22 +1,16 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "types" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common", + "types" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/kanbanflow/tsconfig.json b/components/kanbanflow/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/kanbanflow/tsconfig.json +++ b/components/kanbanflow/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/lemon_squeezy/tsconfig.json b/components/lemon_squeezy/tsconfig.json index 8e0713505004b..d0fe5bf296435 100644 --- a/components/lemon_squeezy/tsconfig.json +++ b/components/lemon_squeezy/tsconfig.json @@ -1,24 +1,15 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common", - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/lob/tsconfig.json b/components/lob/tsconfig.json index 84d5ff7b990d3..d0fe5bf296435 100644 --- a/components/lob/tsconfig.json +++ b/components/lob/tsconfig.json @@ -1,23 +1,15 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, + "extends": "../../tsconfig.components.json", "include": [ "app", "actions", "sources", + "common" ], "exclude": [ - "dist", - ] + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/mailbluster/tsconfig.json b/components/mailbluster/tsconfig.json index a61206464b8c0..d0fe5bf296435 100644 --- a/components/mailbluster/tsconfig.json +++ b/components/mailbluster/tsconfig.json @@ -1,23 +1,15 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/mailboxvalidator/tsconfig.json b/components/mailboxvalidator/tsconfig.json index 910b87fc8266a..d0fe5bf296435 100644 --- a/components/mailboxvalidator/tsconfig.json +++ b/components/mailboxvalidator/tsconfig.json @@ -1,17 +1,5 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, + "extends": "../../tsconfig.components.json", "include": [ "app", "actions", @@ -19,6 +7,9 @@ "common" ], "exclude": [ - "dist", - ] + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/mattermost/tsconfig.json b/components/mattermost/tsconfig.json index 910b87fc8266a..d0fe5bf296435 100644 --- a/components/mattermost/tsconfig.json +++ b/components/mattermost/tsconfig.json @@ -1,17 +1,5 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, + "extends": "../../tsconfig.components.json", "include": [ "app", "actions", @@ -19,6 +7,9 @@ "common" ], "exclude": [ - "dist", - ] + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/mediatoolkit/tsconfig.json b/components/mediatoolkit/tsconfig.json index 335fa6f1cf6ec..d0fe5bf296435 100644 --- a/components/mediatoolkit/tsconfig.json +++ b/components/mediatoolkit/tsconfig.json @@ -1,21 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/namely/tsconfig.json b/components/namely/tsconfig.json index a61206464b8c0..d0fe5bf296435 100644 --- a/components/namely/tsconfig.json +++ b/components/namely/tsconfig.json @@ -1,23 +1,15 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/nectar_crm/tsconfig.json b/components/nectar_crm/tsconfig.json index a61206464b8c0..d0fe5bf296435 100644 --- a/components/nectar_crm/tsconfig.json +++ b/components/nectar_crm/tsconfig.json @@ -1,23 +1,15 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/neverbounce/tsconfig.json b/components/neverbounce/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/neverbounce/tsconfig.json +++ b/components/neverbounce/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/niftyimages/tsconfig.json b/components/niftyimages/tsconfig.json index 910b87fc8266a..d0fe5bf296435 100644 --- a/components/niftyimages/tsconfig.json +++ b/components/niftyimages/tsconfig.json @@ -1,17 +1,5 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, + "extends": "../../tsconfig.components.json", "include": [ "app", "actions", @@ -19,6 +7,9 @@ "common" ], "exclude": [ - "dist", - ] + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/ninox/tsconfig.json b/components/ninox/tsconfig.json index 335fa6f1cf6ec..d0fe5bf296435 100644 --- a/components/ninox/tsconfig.json +++ b/components/ninox/tsconfig.json @@ -1,21 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/onfleet/tsconfig.json b/components/onfleet/tsconfig.json index a61206464b8c0..d0fe5bf296435 100644 --- a/components/onfleet/tsconfig.json +++ b/components/onfleet/tsconfig.json @@ -1,23 +1,15 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/persistiq/tsconfig.json b/components/persistiq/tsconfig.json index e4f6e612b50bf..d0fe5bf296435 100644 --- a/components/persistiq/tsconfig.json +++ b/components/persistiq/tsconfig.json @@ -1,15 +1,5 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, + "extends": "../../tsconfig.components.json", "include": [ "app", "actions", @@ -17,6 +7,9 @@ "common" ], "exclude": [ - "dist", - ] + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/pikaso/tsconfig.json b/components/pikaso/tsconfig.json index 335fa6f1cf6ec..d0fe5bf296435 100644 --- a/components/pikaso/tsconfig.json +++ b/components/pikaso/tsconfig.json @@ -1,21 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/practitest/tsconfig.json b/components/practitest/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/practitest/tsconfig.json +++ b/components/practitest/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/profitwell/tsconfig.json b/components/profitwell/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/profitwell/tsconfig.json +++ b/components/profitwell/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/quickemailverification/tsconfig.json b/components/quickemailverification/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/quickemailverification/tsconfig.json +++ b/components/quickemailverification/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/raven_tools/tsconfig.json b/components/raven_tools/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/raven_tools/tsconfig.json +++ b/components/raven_tools/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/repuso/tsconfig.json b/components/repuso/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/repuso/tsconfig.json +++ b/components/repuso/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/resend/tsconfig.json b/components/resend/tsconfig.json index 90454c201dd3c..d0fe5bf296435 100644 --- a/components/resend/tsconfig.json +++ b/components/resend/tsconfig.json @@ -1,15 +1,15 @@ { + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true - }, - "allowJs": true, - "include": ["app", "actions", "sources", "common"], - "exclude": ["dist"] + "outDir": "./dist" + } } diff --git a/components/reversecontact/tsconfig.json b/components/reversecontact/tsconfig.json index e4f6e612b50bf..d0fe5bf296435 100644 --- a/components/reversecontact/tsconfig.json +++ b/components/reversecontact/tsconfig.json @@ -1,15 +1,5 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, + "extends": "../../tsconfig.components.json", "include": [ "app", "actions", @@ -17,6 +7,9 @@ "common" ], "exclude": [ - "dist", - ] + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/rise/tsconfig.json b/components/rise/tsconfig.json index 335fa6f1cf6ec..d0fe5bf296435 100644 --- a/components/rise/tsconfig.json +++ b/components/rise/tsconfig.json @@ -1,21 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/rss/tsconfig.json b/components/rss/tsconfig.json index 335fa6f1cf6ec..d0fe5bf296435 100644 --- a/components/rss/tsconfig.json +++ b/components/rss/tsconfig.json @@ -1,21 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/salesmate/tsconfig.json b/components/salesmate/tsconfig.json index 8e0713505004b..d0fe5bf296435 100644 --- a/components/salesmate/tsconfig.json +++ b/components/salesmate/tsconfig.json @@ -1,24 +1,15 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common", - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/serveravatar/tsconfig.json b/components/serveravatar/tsconfig.json index 335fa6f1cf6ec..d0fe5bf296435 100644 --- a/components/serveravatar/tsconfig.json +++ b/components/serveravatar/tsconfig.json @@ -1,21 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/shipcloud/tsconfig.json b/components/shipcloud/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/shipcloud/tsconfig.json +++ b/components/shipcloud/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/smaily/tsconfig.json b/components/smaily/tsconfig.json index 9a39aa83b2c27..d0fe5bf296435 100644 --- a/components/smaily/tsconfig.json +++ b/components/smaily/tsconfig.json @@ -1,23 +1,15 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, + "extends": "../../tsconfig.components.json", "include": [ "app", "actions", - "sources" + "sources", + "common" ], "exclude": [ - "dist", - ] + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/smtp2go/tsconfig.json b/components/smtp2go/tsconfig.json index 0eec7d2e5b109..d0fe5bf296435 100644 --- a/components/smtp2go/tsconfig.json +++ b/components/smtp2go/tsconfig.json @@ -1,21 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, + "extends": "../../tsconfig.components.json", "include": [ "app", "actions", - "sources" + "sources", + "common" ], "exclude": [ - "dist", - ] + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/team_up/tsconfig.json b/components/team_up/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/team_up/tsconfig.json +++ b/components/team_up/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/tolstoy/tsconfig.json b/components/tolstoy/tsconfig.json index 335fa6f1cf6ec..d0fe5bf296435 100644 --- a/components/tolstoy/tsconfig.json +++ b/components/tolstoy/tsconfig.json @@ -1,21 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/tookan/tsconfig.json b/components/tookan/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/tookan/tsconfig.json +++ b/components/tookan/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/twitch_developer_app/tsconfig.json b/components/twitch_developer_app/tsconfig.json index e8a6848654582..d0fe5bf296435 100644 --- a/components/twitch_developer_app/tsconfig.json +++ b/components/twitch_developer_app/tsconfig.json @@ -1,15 +1,5 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, + "extends": "../../tsconfig.components.json", "include": [ "app", "actions", @@ -17,6 +7,9 @@ "common" ], "exclude": [ - "dist", - ] + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/twitter/tsconfig.json b/components/twitter/tsconfig.json index a5c999fd0863f..d0fe5bf296435 100644 --- a/components/twitter/tsconfig.json +++ b/components/twitter/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" -, "common/app-validation.mjs" ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/verdict_as_a_service/tsconfig.json b/components/verdict_as_a_service/tsconfig.json index 335fa6f1cf6ec..d0fe5bf296435 100644 --- a/components/verdict_as_a_service/tsconfig.json +++ b/components/verdict_as_a_service/tsconfig.json @@ -1,21 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/waitwhile/tsconfig.json b/components/waitwhile/tsconfig.json index 0792c9f19ca2c..d0fe5bf296435 100644 --- a/components/waitwhile/tsconfig.json +++ b/components/waitwhile/tsconfig.json @@ -1,24 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common", - - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/wildberries/tsconfig.json b/components/wildberries/tsconfig.json index 335fa6f1cf6ec..d0fe5bf296435 100644 --- a/components/wildberries/tsconfig.json +++ b/components/wildberries/tsconfig.json @@ -1,21 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/workast/tsconfig.json b/components/workast/tsconfig.json index 335fa6f1cf6ec..d0fe5bf296435 100644 --- a/components/workast/tsconfig.json +++ b/components/workast/tsconfig.json @@ -1,21 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/xperiencify/tsconfig.json b/components/xperiencify/tsconfig.json index 9a39aa83b2c27..d0fe5bf296435 100644 --- a/components/xperiencify/tsconfig.json +++ b/components/xperiencify/tsconfig.json @@ -1,23 +1,15 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, + "extends": "../../tsconfig.components.json", "include": [ "app", "actions", - "sources" + "sources", + "common" ], "exclude": [ - "dist", - ] + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/yelp/tsconfig.json b/components/yelp/tsconfig.json index 910b87fc8266a..d0fe5bf296435 100644 --- a/components/yelp/tsconfig.json +++ b/components/yelp/tsconfig.json @@ -1,17 +1,5 @@ { - "compilerOptions": { - "lib": [ - "es2020" - ], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, + "extends": "../../tsconfig.components.json", "include": [ "app", "actions", @@ -19,6 +7,9 @@ "common" ], "exclude": [ - "dist", - ] + "dist" + ], + "compilerOptions": { + "outDir": "./dist" + } } diff --git a/components/zoho_assist/tsconfig.json b/components/zoho_assist/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/zoho_assist/tsconfig.json +++ b/components/zoho_assist/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/components/zoho_catalyst/tsconfig.json b/components/zoho_catalyst/tsconfig.json index ec9c833423b99..d0fe5bf296435 100644 --- a/components/zoho_catalyst/tsconfig.json +++ b/components/zoho_catalyst/tsconfig.json @@ -1,22 +1,15 @@ { - "compilerOptions": { - "lib": ["es2020"], - "module": "ES2020", - "target": "ES2020", - "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script - "composite": true, - "outDir": "dist", - "allowSyntheticDefaultImports": true, - }, - "allowJs": true, - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist", - ] + "extends": "../../tsconfig.components.json", + "include": [ + "app", + "actions", + "sources", + "common" + ], + "exclude": [ + "dist" + ], + "compilerOptions": { + "outDir": "./dist" } +} diff --git a/tsconfig.components.json b/tsconfig.components.json new file mode 100644 index 0000000000000..d1fdd1d05eb3c --- /dev/null +++ b/tsconfig.components.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "lib": [ + "es2020" + ], + "module": "ES2020", + "target": "ES2020", + "moduleResolution": "node", + "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script + "composite": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true + }, + "allowJs": true, +} From 4d5da1ee11b2e75457bd59098237df996f9e481b Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Thu, 7 Aug 2025 20:03:21 -0300 Subject: [PATCH 2/8] Removing comment --- tsconfig.components.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.components.json b/tsconfig.components.json index d1fdd1d05eb3c..558ce51869505 100644 --- a/tsconfig.components.json +++ b/tsconfig.components.json @@ -6,7 +6,7 @@ "module": "ES2020", "target": "ES2020", "moduleResolution": "node", - "listEmittedFiles": true, // Used as a part of the build task, since we need to pass emitted files to our post-build script + "listEmittedFiles": true, "composite": true, "allowSyntheticDefaultImports": true, "skipLibCheck": true From f670a932b74379fb6b7fa9052a8059d5ece67322 Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Thu, 7 Aug 2025 20:30:43 -0300 Subject: [PATCH 3/8] Adjusting syntax in the base config file --- tsconfig.components.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.components.json b/tsconfig.components.json index 558ce51869505..1381b0461512d 100644 --- a/tsconfig.components.json +++ b/tsconfig.components.json @@ -9,7 +9,7 @@ "listEmittedFiles": true, "composite": true, "allowSyntheticDefaultImports": true, - "skipLibCheck": true - }, - "allowJs": true, + "skipLibCheck": true, + "allowJs": true + } } From f93d835043eecd46af8494aa507f701847fa6eb6 Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Thu, 7 Aug 2025 20:31:53 -0300 Subject: [PATCH 4/8] pnpm --- pnpm-lock.yaml | 135 +++++++++++++++++++------------------------------ 1 file changed, 52 insertions(+), 83 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 232f64f1a103d..267a3c277d98e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16519,7 +16519,7 @@ importers: version: 3.1.7 ts-jest: specifier: ^29.2.5 - version: 29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)))(typescript@5.7.2) + version: 29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)))(typescript@5.7.2) tsup: specifier: ^8.3.6 version: 8.3.6(@microsoft/api-extractor@7.47.12(@types/node@20.17.30))(jiti@2.4.2)(postcss@8.5.6)(tsx@4.19.4)(typescript@5.7.2)(yaml@2.8.0) @@ -16562,7 +16562,7 @@ importers: version: 3.1.0 jest: specifier: ^29.1.2 - version: 29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)) + version: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)) type-fest: specifier: ^4.15.0 version: 4.27.0 @@ -38202,7 +38202,7 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2))': + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 @@ -38216,7 +38216,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) + jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -38237,7 +38237,7 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3))': + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 @@ -38251,7 +38251,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) + jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -38272,7 +38272,7 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10))': + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 @@ -38286,7 +38286,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)) + jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -44634,13 +44634,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)): + create-jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) + jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -44649,13 +44649,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)): + create-jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) + jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -44664,13 +44664,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)): + create-jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)) + jest-config: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -48759,16 +48759,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)): + jest-cli@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) + create-jest: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) + jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -48778,16 +48778,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)): + jest-cli@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) + create-jest: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) + jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -48797,16 +48797,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)): + jest-cli@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)) + create-jest: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)) + jest-config: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -48878,7 +48878,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)): + jest-config@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)): dependencies: '@babel/core': 7.26.0 '@jest/test-sequencer': 29.7.0 @@ -48904,12 +48904,12 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.17.30 - ts-node: 10.9.2(@types/node@20.17.30)(typescript@5.7.2) + ts-node: 10.9.2(@types/node@20.17.30)(typescript@3.9.10) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)): + jest-config@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)): dependencies: '@babel/core': 7.26.0 '@jest/test-sequencer': 29.7.0 @@ -48935,12 +48935,12 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.17.30 - ts-node: 10.9.2(@types/node@20.17.6)(typescript@5.6.3) + ts-node: 10.9.2(@types/node@20.17.30)(typescript@5.7.2) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)): + jest-config@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)): dependencies: '@babel/core': 7.26.0 '@jest/test-sequencer': 29.7.0 @@ -48966,7 +48966,7 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.17.30 - ts-node: 10.9.2(@types/node@24.0.10)(typescript@3.9.10) + ts-node: 10.9.2(@types/node@20.17.6)(typescript@5.6.3) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -49002,37 +49002,6 @@ snapshots: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)): - dependencies: - '@babel/core': 7.26.0 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.26.0) - chalk: 4.1.2 - ci-info: 3.9.0 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-circus: 29.7.0(babel-plugin-macros@3.1.0) - jest-environment-node: 29.7.0 - jest-get-type: 29.6.3 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-runner: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - micromatch: 4.0.8 - parse-json: 5.2.0 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - optionalDependencies: - '@types/node': 24.0.10 - ts-node: 10.9.2(@types/node@24.0.10)(typescript@3.9.10) - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - jest-diff@27.5.1: dependencies: chalk: 4.1.2 @@ -49276,36 +49245,36 @@ snapshots: - supports-color - ts-node - jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)): + jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) + jest-cli: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)): + jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) + jest-cli: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - jest@29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)): + jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)) + jest-cli: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -55530,7 +55499,7 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-jest@29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)))(typescript@5.7.2): + ts-jest@29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)))(typescript@5.7.2): dependencies: bs-logger: 0.2.6 ejs: 3.1.10 @@ -55544,10 +55513,10 @@ snapshots: typescript: 5.7.2 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.26.0 + '@babel/core': 8.0.0-alpha.13 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.26.0) + babel-jest: 29.7.0(@babel/core@8.0.0-alpha.13) ts-jest@29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)))(typescript@5.6.3): dependencies: @@ -55587,7 +55556,7 @@ snapshots: yn: 3.1.1 optional: true - ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2): + ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -55601,45 +55570,45 @@ snapshots: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.7.2 + typescript: 3.9.10 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optional: true - ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3): + ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.17.6 + '@types/node': 20.17.30 acorn: 8.14.0 acorn-walk: 8.3.4 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.6.3 + typescript: 5.7.2 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optional: true - ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10): + ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 24.0.10 + '@types/node': 20.17.6 acorn: 8.14.0 acorn-walk: 8.3.4 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 3.9.10 + typescript: 5.6.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optional: true From 24d3b9b735201fe42bb7aaa184d8513e8da566bf Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Thu, 7 Aug 2025 20:34:38 -0300 Subject: [PATCH 5/8] pnpm --- pnpm-lock.yaml | 135 ++++++++++++++++++++++++++++++------------------- 1 file changed, 83 insertions(+), 52 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 267a3c277d98e..232f64f1a103d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16519,7 +16519,7 @@ importers: version: 3.1.7 ts-jest: specifier: ^29.2.5 - version: 29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)))(typescript@5.7.2) + version: 29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)))(typescript@5.7.2) tsup: specifier: ^8.3.6 version: 8.3.6(@microsoft/api-extractor@7.47.12(@types/node@20.17.30))(jiti@2.4.2)(postcss@8.5.6)(tsx@4.19.4)(typescript@5.7.2)(yaml@2.8.0) @@ -16562,7 +16562,7 @@ importers: version: 3.1.0 jest: specifier: ^29.1.2 - version: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)) + version: 29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)) type-fest: specifier: ^4.15.0 version: 4.27.0 @@ -38202,7 +38202,7 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10))': + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 @@ -38216,7 +38216,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)) + jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -38237,7 +38237,7 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2))': + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 @@ -38251,7 +38251,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) + jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -38272,7 +38272,7 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3))': + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 @@ -38286,7 +38286,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) + jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -44634,13 +44634,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)): + create-jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)) + jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -44649,13 +44649,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)): + create-jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) + jest-config: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -44664,13 +44664,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)): + create-jest@29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) + jest-config: 29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -48759,16 +48759,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)): + jest-cli@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)) + create-jest: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)) + jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -48778,16 +48778,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)): + jest-cli@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) + create-jest: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) + jest-config: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -48797,16 +48797,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)): + jest-cli@29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) + create-jest: 29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) + jest-config: 29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -48878,7 +48878,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)): + jest-config@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)): dependencies: '@babel/core': 7.26.0 '@jest/test-sequencer': 29.7.0 @@ -48904,12 +48904,12 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.17.30 - ts-node: 10.9.2(@types/node@20.17.30)(typescript@3.9.10) + ts-node: 10.9.2(@types/node@20.17.30)(typescript@5.7.2) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)): + jest-config@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)): dependencies: '@babel/core': 7.26.0 '@jest/test-sequencer': 29.7.0 @@ -48935,12 +48935,12 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.17.30 - ts-node: 10.9.2(@types/node@20.17.30)(typescript@5.7.2) + ts-node: 10.9.2(@types/node@20.17.6)(typescript@5.6.3) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)): + jest-config@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)): dependencies: '@babel/core': 7.26.0 '@jest/test-sequencer': 29.7.0 @@ -48966,7 +48966,7 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.17.30 - ts-node: 10.9.2(@types/node@20.17.6)(typescript@5.6.3) + ts-node: 10.9.2(@types/node@24.0.10)(typescript@3.9.10) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -49002,6 +49002,37 @@ snapshots: - babel-plugin-macros - supports-color + jest-config@29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)): + dependencies: + '@babel/core': 7.26.0 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.26.0) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.8 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 24.0.10 + ts-node: 10.9.2(@types/node@24.0.10)(typescript@3.9.10) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + jest-diff@27.5.1: dependencies: chalk: 4.1.2 @@ -49245,36 +49276,36 @@ snapshots: - supports-color - ts-node - jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)): + jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10)) + jest-cli: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)): + jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)) + jest-cli: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)): + jest@29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)) + jest-cli: 29.7.0(@types/node@24.0.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -55499,7 +55530,7 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-jest@29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)))(typescript@5.7.2): + ts-jest@29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.17.30)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2)))(typescript@5.7.2): dependencies: bs-logger: 0.2.6 ejs: 3.1.10 @@ -55513,10 +55544,10 @@ snapshots: typescript: 5.7.2 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 8.0.0-alpha.13 + '@babel/core': 7.26.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@8.0.0-alpha.13) + babel-jest: 29.7.0(@babel/core@7.26.0) ts-jest@29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3)))(typescript@5.6.3): dependencies: @@ -55556,7 +55587,7 @@ snapshots: yn: 3.1.1 optional: true - ts-node@10.9.2(@types/node@20.17.30)(typescript@3.9.10): + ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -55570,45 +55601,45 @@ snapshots: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 3.9.10 + typescript: 5.7.2 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optional: true - ts-node@10.9.2(@types/node@20.17.30)(typescript@5.7.2): + ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.17.30 + '@types/node': 20.17.6 acorn: 8.14.0 acorn-walk: 8.3.4 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.7.2 + typescript: 5.6.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optional: true - ts-node@10.9.2(@types/node@20.17.6)(typescript@5.6.3): + ts-node@10.9.2(@types/node@24.0.10)(typescript@3.9.10): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.17.6 + '@types/node': 24.0.10 acorn: 8.14.0 acorn-walk: 8.3.4 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.6.3 + typescript: 3.9.10 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optional: true From 7e8c32b506ebbb8409d79f64a31336363bbcb1d6 Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Mon, 11 Aug 2025 15:51:16 -0300 Subject: [PATCH 6/8] Updating TS version to >= 5.5 --- package.json | 2 +- pnpm-lock.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b6ae9a57c6a3b..ddc315c3da306 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,7 @@ "ts-jest": "^29.1.1", "tsc-esm-fix": "^2.18.0", "tsc-watch": "^5.0.3", - "typescript": ">=4.7.4 <5.7.0", + "typescript": ">=5.5.0 <5.7.0", "typescript-eslint": "^8.15.0" }, "lint-staged": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 232f64f1a103d..78db8d4181e68 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -115,7 +115,7 @@ importers: specifier: ^5.0.3 version: 5.0.3(typescript@5.6.3) typescript: - specifier: '>=4.7.4 <5.7.0' + specifier: '>=5.5.0 <5.7.0' version: 5.6.3 typescript-eslint: specifier: ^8.15.0 From b614484871f4f4acc15c00ca756c43bb9f795a8b Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Mon, 11 Aug 2025 18:49:34 -0300 Subject: [PATCH 7/8] Reusing tsconfig base paths with configDir property --- components/amplenote/tsconfig.json | 14 +------------- components/apitemplate_io/tsconfig.json | 14 +------------- components/baserow/tsconfig.json | 14 +------------- components/beehiiv/tsconfig.json | 14 +------------- components/buy_me_a_coffee/tsconfig.json | 14 +------------- components/clientary/tsconfig.json | 14 +------------- components/cloudmersive/tsconfig.json | 14 +------------- components/coassemble/tsconfig.json | 14 +------------- components/concord/tsconfig.json | 14 +------------- components/currencyscoop/tsconfig.json | 14 +------------- components/data_axle_platform/tsconfig.json | 14 +------------- components/detrack/tsconfig.json | 14 +------------- components/dialpad/tsconfig.json | 14 +------------- components/docupilot/tsconfig.json | 14 +------------- components/expensify/tsconfig.json | 14 +------------- components/formatting/tsconfig.json | 14 +------------- components/google_my_business/tsconfig.json | 14 +------------- components/google_recaptcha/tsconfig.json | 14 +------------- components/google_workspace/tsconfig.json | 14 +------------- components/kanbanflow/tsconfig.json | 14 +------------- components/lemon_squeezy/tsconfig.json | 14 +------------- components/lob/tsconfig.json | 14 +------------- components/mailbluster/tsconfig.json | 14 +------------- components/mailboxvalidator/tsconfig.json | 14 +------------- components/mattermost/tsconfig.json | 14 +------------- components/mediatoolkit/tsconfig.json | 14 +------------- components/namely/tsconfig.json | 14 +------------- components/nectar_crm/tsconfig.json | 14 +------------- components/neverbounce/tsconfig.json | 14 +------------- components/niftyimages/tsconfig.json | 14 +------------- components/ninox/tsconfig.json | 14 +------------- components/onfleet/tsconfig.json | 14 +------------- components/persistiq/tsconfig.json | 14 +------------- components/pikaso/tsconfig.json | 14 +------------- components/practitest/tsconfig.json | 14 +------------- components/profitwell/tsconfig.json | 14 +------------- components/quickemailverification/tsconfig.json | 14 +------------- components/raven_tools/tsconfig.json | 14 +------------- components/repuso/tsconfig.json | 14 +------------- components/resend/tsconfig.json | 14 +------------- components/reversecontact/tsconfig.json | 14 +------------- components/rise/tsconfig.json | 14 +------------- components/rss/tsconfig.json | 14 +------------- components/salesmate/tsconfig.json | 14 +------------- components/serveravatar/tsconfig.json | 14 +------------- components/shipcloud/tsconfig.json | 14 +------------- components/smaily/tsconfig.json | 14 +------------- components/smtp2go/tsconfig.json | 14 +------------- components/team_up/tsconfig.json | 14 +------------- components/tolstoy/tsconfig.json | 14 +------------- components/tookan/tsconfig.json | 14 +------------- components/twitch_developer_app/tsconfig.json | 14 +------------- components/twitter/tsconfig.json | 14 +------------- components/verdict_as_a_service/tsconfig.json | 14 +------------- components/waitwhile/tsconfig.json | 14 +------------- components/wildberries/tsconfig.json | 14 +------------- components/workast/tsconfig.json | 14 +------------- components/xperiencify/tsconfig.json | 14 +------------- components/yelp/tsconfig.json | 14 +------------- components/zoho_assist/tsconfig.json | 14 +------------- components/zoho_catalyst/tsconfig.json | 14 +------------- tsconfig.components.json | 12 +++++++++++- 62 files changed, 72 insertions(+), 794 deletions(-) diff --git a/components/amplenote/tsconfig.json b/components/amplenote/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/amplenote/tsconfig.json +++ b/components/amplenote/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/apitemplate_io/tsconfig.json b/components/apitemplate_io/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/apitemplate_io/tsconfig.json +++ b/components/apitemplate_io/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/baserow/tsconfig.json b/components/baserow/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/baserow/tsconfig.json +++ b/components/baserow/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/beehiiv/tsconfig.json b/components/beehiiv/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/beehiiv/tsconfig.json +++ b/components/beehiiv/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/buy_me_a_coffee/tsconfig.json b/components/buy_me_a_coffee/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/buy_me_a_coffee/tsconfig.json +++ b/components/buy_me_a_coffee/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/clientary/tsconfig.json b/components/clientary/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/clientary/tsconfig.json +++ b/components/clientary/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/cloudmersive/tsconfig.json b/components/cloudmersive/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/cloudmersive/tsconfig.json +++ b/components/cloudmersive/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/coassemble/tsconfig.json b/components/coassemble/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/coassemble/tsconfig.json +++ b/components/coassemble/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/concord/tsconfig.json b/components/concord/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/concord/tsconfig.json +++ b/components/concord/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/currencyscoop/tsconfig.json b/components/currencyscoop/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/currencyscoop/tsconfig.json +++ b/components/currencyscoop/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/data_axle_platform/tsconfig.json b/components/data_axle_platform/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/data_axle_platform/tsconfig.json +++ b/components/data_axle_platform/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/detrack/tsconfig.json b/components/detrack/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/detrack/tsconfig.json +++ b/components/detrack/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/dialpad/tsconfig.json b/components/dialpad/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/dialpad/tsconfig.json +++ b/components/dialpad/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/docupilot/tsconfig.json b/components/docupilot/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/docupilot/tsconfig.json +++ b/components/docupilot/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/expensify/tsconfig.json b/components/expensify/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/expensify/tsconfig.json +++ b/components/expensify/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/formatting/tsconfig.json b/components/formatting/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/formatting/tsconfig.json +++ b/components/formatting/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/google_my_business/tsconfig.json b/components/google_my_business/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/google_my_business/tsconfig.json +++ b/components/google_my_business/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/google_recaptcha/tsconfig.json b/components/google_recaptcha/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/google_recaptcha/tsconfig.json +++ b/components/google_recaptcha/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/google_workspace/tsconfig.json b/components/google_workspace/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/google_workspace/tsconfig.json +++ b/components/google_workspace/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/kanbanflow/tsconfig.json b/components/kanbanflow/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/kanbanflow/tsconfig.json +++ b/components/kanbanflow/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/lemon_squeezy/tsconfig.json b/components/lemon_squeezy/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/lemon_squeezy/tsconfig.json +++ b/components/lemon_squeezy/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/lob/tsconfig.json b/components/lob/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/lob/tsconfig.json +++ b/components/lob/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/mailbluster/tsconfig.json b/components/mailbluster/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/mailbluster/tsconfig.json +++ b/components/mailbluster/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/mailboxvalidator/tsconfig.json b/components/mailboxvalidator/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/mailboxvalidator/tsconfig.json +++ b/components/mailboxvalidator/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/mattermost/tsconfig.json b/components/mattermost/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/mattermost/tsconfig.json +++ b/components/mattermost/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/mediatoolkit/tsconfig.json b/components/mediatoolkit/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/mediatoolkit/tsconfig.json +++ b/components/mediatoolkit/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/namely/tsconfig.json b/components/namely/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/namely/tsconfig.json +++ b/components/namely/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/nectar_crm/tsconfig.json b/components/nectar_crm/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/nectar_crm/tsconfig.json +++ b/components/nectar_crm/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/neverbounce/tsconfig.json b/components/neverbounce/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/neverbounce/tsconfig.json +++ b/components/neverbounce/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/niftyimages/tsconfig.json b/components/niftyimages/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/niftyimages/tsconfig.json +++ b/components/niftyimages/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/ninox/tsconfig.json b/components/ninox/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/ninox/tsconfig.json +++ b/components/ninox/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/onfleet/tsconfig.json b/components/onfleet/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/onfleet/tsconfig.json +++ b/components/onfleet/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/persistiq/tsconfig.json b/components/persistiq/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/persistiq/tsconfig.json +++ b/components/persistiq/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/pikaso/tsconfig.json b/components/pikaso/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/pikaso/tsconfig.json +++ b/components/pikaso/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/practitest/tsconfig.json b/components/practitest/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/practitest/tsconfig.json +++ b/components/practitest/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/profitwell/tsconfig.json b/components/profitwell/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/profitwell/tsconfig.json +++ b/components/profitwell/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/quickemailverification/tsconfig.json b/components/quickemailverification/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/quickemailverification/tsconfig.json +++ b/components/quickemailverification/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/raven_tools/tsconfig.json b/components/raven_tools/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/raven_tools/tsconfig.json +++ b/components/raven_tools/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/repuso/tsconfig.json b/components/repuso/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/repuso/tsconfig.json +++ b/components/repuso/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/resend/tsconfig.json b/components/resend/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/resend/tsconfig.json +++ b/components/resend/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/reversecontact/tsconfig.json b/components/reversecontact/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/reversecontact/tsconfig.json +++ b/components/reversecontact/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/rise/tsconfig.json b/components/rise/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/rise/tsconfig.json +++ b/components/rise/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/rss/tsconfig.json b/components/rss/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/rss/tsconfig.json +++ b/components/rss/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/salesmate/tsconfig.json b/components/salesmate/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/salesmate/tsconfig.json +++ b/components/salesmate/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/serveravatar/tsconfig.json b/components/serveravatar/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/serveravatar/tsconfig.json +++ b/components/serveravatar/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/shipcloud/tsconfig.json b/components/shipcloud/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/shipcloud/tsconfig.json +++ b/components/shipcloud/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/smaily/tsconfig.json b/components/smaily/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/smaily/tsconfig.json +++ b/components/smaily/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/smtp2go/tsconfig.json b/components/smtp2go/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/smtp2go/tsconfig.json +++ b/components/smtp2go/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/team_up/tsconfig.json b/components/team_up/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/team_up/tsconfig.json +++ b/components/team_up/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/tolstoy/tsconfig.json b/components/tolstoy/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/tolstoy/tsconfig.json +++ b/components/tolstoy/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/tookan/tsconfig.json b/components/tookan/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/tookan/tsconfig.json +++ b/components/tookan/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/twitch_developer_app/tsconfig.json b/components/twitch_developer_app/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/twitch_developer_app/tsconfig.json +++ b/components/twitch_developer_app/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/twitter/tsconfig.json b/components/twitter/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/twitter/tsconfig.json +++ b/components/twitter/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/verdict_as_a_service/tsconfig.json b/components/verdict_as_a_service/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/verdict_as_a_service/tsconfig.json +++ b/components/verdict_as_a_service/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/waitwhile/tsconfig.json b/components/waitwhile/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/waitwhile/tsconfig.json +++ b/components/waitwhile/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/wildberries/tsconfig.json b/components/wildberries/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/wildberries/tsconfig.json +++ b/components/wildberries/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/workast/tsconfig.json b/components/workast/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/workast/tsconfig.json +++ b/components/workast/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/xperiencify/tsconfig.json b/components/xperiencify/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/xperiencify/tsconfig.json +++ b/components/xperiencify/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/yelp/tsconfig.json b/components/yelp/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/yelp/tsconfig.json +++ b/components/yelp/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/zoho_assist/tsconfig.json b/components/zoho_assist/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/zoho_assist/tsconfig.json +++ b/components/zoho_assist/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/components/zoho_catalyst/tsconfig.json b/components/zoho_catalyst/tsconfig.json index d0fe5bf296435..3a9389484d040 100644 --- a/components/zoho_catalyst/tsconfig.json +++ b/components/zoho_catalyst/tsconfig.json @@ -1,15 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" } diff --git a/tsconfig.components.json b/tsconfig.components.json index 1381b0461512d..1a6cc1dc7ab91 100644 --- a/tsconfig.components.json +++ b/tsconfig.components.json @@ -1,4 +1,13 @@ { + "include": [ + "${configDir}/app", + "${configDir}/actions", + "${configDir}/sources", + "${configDir}/common" + ], + "exclude": [ + "${configDir}/dist" + ], "compilerOptions": { "lib": [ "es2020" @@ -10,6 +19,7 @@ "composite": true, "allowSyntheticDefaultImports": true, "skipLibCheck": true, - "allowJs": true + "allowJs": true, + "outDir": "${configDir}/dist" } } From c3ba89c7467f51c2f37d332119016b456c8d7c78 Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Mon, 11 Aug 2025 19:05:18 -0300 Subject: [PATCH 8/8] Fixed missing config file --- components/infusionsoft/tsconfig.json | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/components/infusionsoft/tsconfig.json b/components/infusionsoft/tsconfig.json index 477155da5b30c..3a9389484d040 100644 --- a/components/infusionsoft/tsconfig.json +++ b/components/infusionsoft/tsconfig.json @@ -1,16 +1,3 @@ { - "extends": "../../tsconfig.components.json", - "include": [ - "app", - "actions", - "sources", - "common", - "types" - ], - "exclude": [ - "dist" - ], - "compilerOptions": { - "outDir": "./dist" - } + "extends": "../../tsconfig.components.json" }