mirror of
https://github.com/GenderDysphoria/GenderDysphoria.fyi.git
synced 2025-01-31 07:16:17 +00:00
15 lines
365 B
JavaScript
15 lines
365 B
JavaScript
|
|
module.exports = exports = {
|
|
plugins: [
|
|
[ '@babel/plugin-proposal-class-properties', { loose: true } ],
|
|
[ '@babel/plugin-proposal-private-property-in-object', { loose: true } ],
|
|
[ '@babel/plugin-proposal-private-methods', { loose: true } ],
|
|
],
|
|
presets: [
|
|
[ '@babel/preset-env', {
|
|
// useBuiltIns: 'usage',
|
|
} ],
|
|
'preact',
|
|
],
|
|
};
|