diff options
author | Matthew Miller <matthew@millerti.me> | 2023-08-16 09:12:34 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-08-16 09:12:55 -0700 |
commit | dc29a40014a3e750f1403ebab0b757d810468b6a (patch) | |
tree | 07be1c809fd4c2df0431a5413dbeb463534fb1b7 /packages/server/src/authentication/generateAuthenticationOptions.ts | |
parent | 48c7af5d3b83965b7644aa6f0fdc029682c89186 (diff) |
Add file extensions to imports
Diffstat (limited to 'packages/server/src/authentication/generateAuthenticationOptions.ts')
-rw-r--r-- | packages/server/src/authentication/generateAuthenticationOptions.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/server/src/authentication/generateAuthenticationOptions.ts b/packages/server/src/authentication/generateAuthenticationOptions.ts index a3ef250..6a23ed7 100644 --- a/packages/server/src/authentication/generateAuthenticationOptions.ts +++ b/packages/server/src/authentication/generateAuthenticationOptions.ts @@ -5,8 +5,8 @@ import type { UserVerificationRequirement, } from '@simplewebauthn/typescript-types'; -import { isoBase64URL, isoUint8Array } from '../helpers/iso'; -import { generateChallenge } from '../helpers/generateChallenge'; +import { isoBase64URL, isoUint8Array } from '../helpers/iso/index.ts'; +import { generateChallenge } from '../helpers/generateChallenge.ts'; export type GenerateAuthenticationOptionsOpts = { allowCredentials?: PublicKeyCredentialDescriptorFuture[]; |