npm install @stheine/helpers
import eslintConfig from '@stheine/helpers/eslint.config';
export default [
...eslintConfig,
];
import {logger} from '@stheine/helpers';
logger.info('Startup');
import {sendMail} from '@stheine/helpers';
await sendMail({
to: 'technik@heine7.de',
subject: `Test mail`,
html: `<html>Eine test mail</html>`,
});