mirror of
https://github.com/whscullin/apple1js.git
synced 2024-10-31 16:04:34 +00:00
41dbf0b420
Based on original webpage version, modified to use webpack and babel.
14 lines
229 B
JavaScript
14 lines
229 B
JavaScript
// babel.config.js
|
|
module.exports = {
|
|
presets: [
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
targets: {
|
|
node: 'current',
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|