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