docs(tsup): update build config comments and fix jsx import extensions

This commit is contained in:
2026-04-22 14:40:09 -04:00
parent 0106bc4ea0
commit d64423c1ad
8 changed files with 42 additions and 66 deletions
+1 -1
View File
@@ -1 +1 @@
export { BaseLayout } from './BaseLayout.jsx';
export { BaseLayout } from './BaseLayout.js';
+3 -3
View File
@@ -1,9 +1,9 @@
import { render } from '@react-email/components';
import { fail, info } from '@zen/core/shared/logger';
import { sendEmail } from '@zen/core/email';
import { VerificationEmail } from './templates/VerificationEmail.jsx';
import { PasswordResetEmail } from './templates/PasswordResetEmail.jsx';
import { PasswordChangedEmail } from './templates/PasswordChangedEmail.jsx';
import { VerificationEmail } from './templates/VerificationEmail.js';
import { PasswordResetEmail } from './templates/PasswordResetEmail.js';
import { PasswordChangedEmail } from './templates/PasswordChangedEmail.js';
export { createEmailVerification, verifyEmailToken, createPasswordReset, verifyResetToken, deleteResetToken }
from '../../core/users/verifications.js';