1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-07 04:03:29 +00:00

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.
This commit is contained in:
addisonbeck
2025-06-03 12:10:30 -04:00
parent 7b266c3df3
commit 56ca9569cf

View File

@@ -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");