// Copies Handlebars email templates into dist/ after tsc (tsc ignores non-.ts). import { cpSync, mkdirSync } from 'node:fs'; mkdirSync('dist/templates', { recursive: true }); cpSync('src/templates', 'dist/templates', { recursive: true }); console.log('templates copied to dist/templates');