-
Notifications
You must be signed in to change notification settings - Fork 127
Open
Description
Typescript fails on the export = hapiAuthJwt2;
line on the compiled index.d.ts
. This is because the package.json declares the lib as a type: module, but it is actually a CJS lib.
The package.json should declare the property "type" to "commonjs".
Thanks for your work BTW
nelsonicnelsonic and KyyTzy09