After using Passkey in TypeScript with the library , I noticed that it saved the passkey in my browser Keychain or Mac Keychain.
However, I would like my password manager (such as Dashlane, 1Password, etc.) to save it similar to this site
How can I configure GenerateRegistrationOptions to make it compatible with a password manager?
I have tried various combinations like the one below. Is there anything else needed in the code?
// See options at: https://simplewebauthn.dev/docs/packages/server
authenticatorSelection: {
residentKey: "preferred",
/**
* Wondering why user verification isn't required? See here:
*
* https://passkeys.dev/docs/use-cases/bootstrapping/#a-note-about-user-verification
*/
userVerification: "preferred",
}