mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
14 lines
229 B
JavaScript
14 lines
229 B
JavaScript
|
// babel.config.js
|
||
|
module.exports = {
|
||
|
presets: [
|
||
|
[
|
||
|
'@babel/preset-env',
|
||
|
{
|
||
|
targets: {
|
||
|
node: 'current',
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
],
|
||
|
};
|