1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

[PM-16872] Update libs to use explicit dependencies (#12770)

Update all libs to use explicit dependencies rather than relying on tsconfig.libs.json. This allows us to more easily understand the dependencies between libs and prevent users from accidentally adding new dependencies.

We still use tsconfig.libs (now renamed tsconfig.spec) for tests.
This commit is contained in:
Oscar Hinton
2025-01-10 11:21:38 +01:00
committed by GitHub
parent 138e07eaf7
commit 653b730969
43 changed files with 308 additions and 45 deletions

View File

@@ -1,6 +1,6 @@
const { pathsToModuleNameMapper } = require("ts-jest");
const { compilerOptions } = require("../../../shared/tsconfig.libs.json");
const { compilerOptions } = require("../../../shared/tsconfig.spec.json");
/** @type {import('jest').Config} */
module.exports = {