babel-example
babel-example copied to clipboard
babel v7
Hiya, Im trying to integrate typeorm into our Node server, written in plain JS at the moment but soon to move over to typescript.
Having trouble with the babel set up since we're on babel v7.8.3, any chance you could update this example to reflect version 7?
In babel.config.js
module.exports = {
presets: [
[
"@babel/preset-env",
{
targets: {
node: "10"
}
}
]
],
plugins: [
"@babel/plugin-proposal-class-properties",
["@babel/plugin-proposal-decorators", { decoratorsBeforeExport: true }]
]
};