From f9052d9d89331b08357036e9b47106e0029cd5db Mon Sep 17 00:00:00 2001 From: Brandon Cheng Date: Thu, 31 Aug 2023 20:11:08 -0400 Subject: [PATCH] build: fix Jest code block misalignment by setting `sourceMap` option to `true` (#7021) * test: fix Jest code block misalignment in pnpm tests * Revert "test: fix Jest code block misalignment in pnpm tests" This reverts commit 691bc722825b31c97bc6e0fa624ac2337491355d. * build: set sourceMap option to true for `pnpm/tsconfig.json` This allows Jest test failure messages to properly reference the correct source location. These were confusingly misaligned before this change. --- pnpm/tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/pnpm/tsconfig.json b/pnpm/tsconfig.json index 5771b2d3c4..a8d8314d09 100644 --- a/pnpm/tsconfig.json +++ b/pnpm/tsconfig.json @@ -4,7 +4,6 @@ "composite": false, "declaration": false, "outDir": "lib", - "sourceMap": false, "rootDir": "src", "suppressImplicitAnyIndexErrors": true, "ignoreDeprecations": "5.0"