apple2js/babel.config.js

29 lines
534 B
JavaScript

// babel.config.js
module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: {
node: 'current',
},
},
],
[
'@babel/typescript',
{
jsxPragma: 'h',
},
],
],
plugins: [
[
'@babel/plugin-transform-react-jsx',
{
pragma: 'h',
pragmaFrag: 'Fragment',
},
],
],
};