From a0de8e6d2dc837601dfdee96651481428fe4c998 Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Tue, 31 Oct 2023 13:06:19 -0400 Subject: [PATCH] [babel] Disable ts declaration maps This was unnecessary, switching it back to disabled --- compiler/packages/babel-plugin-react-forget/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/packages/babel-plugin-react-forget/tsconfig.json b/compiler/packages/babel-plugin-react-forget/tsconfig.json index f9437d1456..8c40bea321 100644 --- a/compiler/packages/babel-plugin-react-forget/tsconfig.json +++ b/compiler/packages/babel-plugin-react-forget/tsconfig.json @@ -4,7 +4,7 @@ "moduleResolution": "nodenext", "declaration": true, "declarationDir": "./dist", - "declarationMap": true, + "declarationMap": false, "rootDir": "src", "outDir": "dist", // https://github.com/microsoft/TypeScript/issues/30925