From 4f27678462ec757e2b09fae9da1d171d5f2c07de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Claveau?= <41510224+Romej@users.noreply.github.com> Date: Tue, 25 Feb 2025 10:10:15 -0500 Subject: [PATCH] change noCheck release version for 5.6 There is no mention of noCheck in the 5.5. release notes --- packages/tsconfig-reference/scripts/tsconfigRules.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/tsconfig-reference/scripts/tsconfigRules.ts b/packages/tsconfig-reference/scripts/tsconfigRules.ts index bd989fca3fb4..90c39046a90f 100644 --- a/packages/tsconfig-reference/scripts/tsconfigRules.ts +++ b/packages/tsconfig-reference/scripts/tsconfigRules.ts @@ -314,8 +314,8 @@ function formatAllowedValues(type: CommandLineOption["type"]) { export const releaseToConfigsMap: { [key: string]: AnOption[] } = { "5.7": ["rewriteRelativeImportExtensions"], - "5.6": ["strictBuiltinIteratorReturn", "noUncheckedSideEffectImports"], - "5.5": ["isolatedDeclarations", "noCheck"], + "5.6": ["strictBuiltinIteratorReturn", "noUncheckedSideEffectImports", "noCheck"], + "5.5": ["isolatedDeclarations"], "5.0": [ "allowArbitraryExtensions", "allowImportingTsExtensions",