1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-07 04:03:29 +00:00
Files
browser/libs/messaging/tsconfig.lib.json
addisonbeck 51bf0baba9 Consolidate messaging-internal into messaging library
- Move SubjectMessageSender, helpers, and test files from messaging-internal to messaging
- Update imports to use relative paths instead of @bitwarden/messaging imports
- Remove messaging-internal library entirely to eliminate circular dependency
- Update external references to use @bitwarden/messaging instead of @bitwarden/messaging-internal
- Fix tsconfig.lib.json rootDir conflict by removing cross-library file includes

Resolves the first incomplete TODO in Fix Nx Library Paths memory:
'Import from messaging-internal directly in messaging'
2025-09-11 14:07:08 -04:00

11 lines
229 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"declaration": true,
"types": ["node"]
},
"include": ["src/**/*.ts"],
"exclude": ["jest.config.js", "src/**/*.spec.ts"]
}