when running a npm run build it fails with the following
PS E:\temp\SimpleWebAuthn\example> npm run build
> example@1.0.0 build
> tsc
fido-conformance.ts:143:8 - error TS2339: Property 'currentChallenge' does not exist on type 'LoggedInFIDOUser'.
143 user.currentChallenge = opts.challenge;
~~~~~~~~~~~~~~~~
fido-conformance.ts:160:34 - error TS2339: Property 'currentChallenge' does not exist on type 'LoggedInFIDOUser'.
160 const expectedChallenge = user.currentChallenge;
~~~~~~~~~~~~~~~~
fido-conformance.ts:225:8 - error TS2339: Property 'currentChallenge' does not exist on type 'LoggedInFIDOUser'.
225 user.currentChallenge = opts.challenge;
~~~~~~~~~~~~~~~~
fido-conformance.ts:242:34 - error TS2339: Property 'currentChallenge' does not exist on type 'LoggedInFIDOUser'.
242 const expectedChallenge = user.currentChallenge;
~~~~~~~~~~~~~~~~
Found 4 errors in the same file, starting at: fido-conformance.ts:143
Describe the issue
when running a
npm run build
it fails with the followingReproduction Steps
git clone https://github.com/MasterKale/SimpleWebAuthn.git
cd SimpleWebAuthn
npm install
npm run build
Expected behavior
Should build without an error
Code Samples + WebAuthn Options and Responses
Already supplied
Dependencies
SimpleWebAuthn Libraries
Additional context
N/A