mirror of
https://github.com/bitwarden/browser
synced 2026-02-25 17:13:24 +00:00
In order to remove references in bitwarden/common to bitwarden/auth I have create a new package, logout, and moved the logout-reason type to it. This type is referenced many times in common.
22 lines
918 B
JSON
22 lines
918 B
JSON
{
|
|
"extends": "../../../shared/tsconfig",
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@bitwarden/admin-console/common": ["../../../admin-console/src/common"],
|
|
"@bitwarden/angular/*": ["../../../angular/src/*"],
|
|
"@bitwarden/auth/common": ["../../../auth/src/common"],
|
|
"@bitwarden/common/*": ["../../../common/src/*"],
|
|
"@bitwarden/components": ["../../../components/src"],
|
|
"@bitwarden/generator-core": ["../../../tools/generator/core/src"],
|
|
"@bitwarden/generator-history": ["../../../tools/generator/extensions/history/src"],
|
|
"@bitwarden/key-management": ["../../../key-management/src"],
|
|
"@bitwarden/platform": ["../../../platform/src"],
|
|
"@bitwarden/ui-common": ["../../../ui/common/src"],
|
|
"@bitwarden/vault": ["../../../vault/src"],
|
|
"@bitwarden/logout": ["../../../logout/src"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|