mirror of
https://github.com/bitwarden/browser.git
synced 2025-03-12 13:39:14 +01:00
* Move import to sdk and enable it in browser/web * Add uncomitted files * Update package lock * Fix prettier formatting * Fix build * Rewrite import logic * Update ssh import logic for cipher form component * Fix build on browser * Break early in retry logic * Fix build * Fix build * Fix build errors * Update paste icons and throw error on wrong import * Fix tests * Fix build for cli * Undo change to jest config * Undo change to feature flag enum * Remove unneeded lifetime * Fix browser build * Refactor control flow * Fix i18n key and improve import behavior * Remove for loop limit * Clean up tests * Remove unused code * Update libs/vault/src/cipher-form/components/sshkey-section/sshkey-section.component.ts Co-authored-by: SmithThe4th <gsmith@bitwarden.com> * Move import logic to service and add tests * Fix linting * Remove erroneous includes * Attempt to fix storybook * Fix storybook, explicitly implement ssh-import-prompt service abstraction * Fix eslint * Update libs/importer/src/importers/bitwarden/bitwarden-json-importer.ts Co-authored-by: ✨ Audrey ✨ <ajensen@bitwarden.com> * Fix services module * Remove ssh import sdk init code * Add tests for errors * Fix import * Fix import * Fix pkcs8 encrypted key not parsing * Fix import button showing on web --------- Co-authored-by: SmithThe4th <gsmith@bitwarden.com> Co-authored-by: ✨ Audrey ✨ <ajensen@bitwarden.com>
21 lines
941 B
JSON
21 lines
941 B
JSON
{
|
|
"extends": "../shared/tsconfig",
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@bitwarden/admin-console/common": ["../admin-console/src/common"],
|
|
"@bitwarden/auth/common": ["../auth/src/common"],
|
|
// TODO: Remove once circular dependencies in admin-console, auth and key-management are resolved
|
|
"@bitwarden/common/*": ["../common/src/*"],
|
|
// TODO: Remove once billing stops depending on components
|
|
"@bitwarden/components": ["../components/src"],
|
|
"@bitwarden/key-management": ["../key-management/src"],
|
|
"@bitwarden/vault-export-core": ["../tools/export/vault-export/vault-export-core/src"],
|
|
"@bitwarden/platform": ["../platform/src"],
|
|
// TODO: Remove once billing stops depending on components
|
|
"@bitwarden/ui-common": ["../ui/common/src"]
|
|
}
|
|
},
|
|
"include": ["src", "spec", "./custom-matchers.d.ts", "../key-management/src/index.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|