GenderDysphoria.fyi/babel.config.js

15 lines
365 B
JavaScript
Raw Normal View History

module.exports = exports = {
plugins: [
[ '@babel/plugin-proposal-class-properties', { loose: true } ],
2021-08-11 11:48:50 -07:00
[ '@babel/plugin-proposal-private-property-in-object', { loose: true } ],
[ '@babel/plugin-proposal-private-methods', { loose: true } ],
],
presets: [
[ '@babel/preset-env', {
// useBuiltIns: 'usage',
} ],
'preact',
],
};