mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
4a188a9a5c
First pass at a Preact UI, still short some major features but full proof of concept.
28 lines
517 B
JavaScript
28 lines
517 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',
|
|
}
|
|
]
|
|
]
|
|
};
|