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