From 56ca9569cfa6b4e32b9f2278c7809e176a8c70e0 Mon Sep 17 00:00:00 2001 From: addisonbeck Date: Tue, 3 Jun 2025 12:10:30 -0400 Subject: [PATCH] fix(dirt/card): correct tsconfig path in jest configuration Fix the relative path to tsconfig.base in the dirt/card library's Jest config. The path was incorrectly using four parent directory traversals (../../../../) when only three (../../../) were needed to reach the project root. --- libs/dirt/card/jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/dirt/card/jest.config.js b/libs/dirt/card/jest.config.js index 03ffc631f76..2a3582a69d2 100644 --- a/libs/dirt/card/jest.config.js +++ b/libs/dirt/card/jest.config.js @@ -1,6 +1,6 @@ const { pathsToModuleNameMapper } = require("ts-jest"); -const { compilerOptions } = require("../../../../tsconfig.base"); +const { compilerOptions } = require("../../../tsconfig.base"); const sharedConfig = require("../../shared/jest.config.angular");