mirror of
https://github.com/bitwarden/browser
synced 2026-02-07 12:13:45 +00:00
- 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'
11 lines
229 B
JSON
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"]
|
|
}
|