From 55accdaa073b7868bca99a94456d86bd14c8de87 Mon Sep 17 00:00:00 2001 From: Ola Okelola Date: Sun, 29 Dec 2024 16:13:47 +0800 Subject: [PATCH] remove preserve --- ts/src/tsc/compilerOptions.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/ts/src/tsc/compilerOptions.ts b/ts/src/tsc/compilerOptions.ts index c4df4c362..1074c6c5b 100644 --- a/ts/src/tsc/compilerOptions.ts +++ b/ts/src/tsc/compilerOptions.ts @@ -91,8 +91,6 @@ export function getModule(module?: string): ts.ModuleKind { return ts.ModuleKind.Node16; case "nodenext": return ts.ModuleKind.NodeNext; - case "preserve": - return ts.ModuleKind.Preserve; default: return ts.ModuleKind.CommonJS; }