Hi,
Been looking to use the serverless framework more and running into a problem invoking a function locally.
Using this import { Sequelize } from 'sequelize';
but when running locally I get the error Unexpected token import
.
If I use const Sequelize = require('sequelize');
there are no issues but would ideally like to use the import if I can.
Is there something else or another plugin I need to include to allow this to work?
From what I can tell, AWS Lambdas allow for this?
Thanks,
Gary