frigate/web/babel.config.js

5 lines
168 B
JavaScript
Raw Normal View History

module.exports = {
2022-02-27 08:04:12 -06:00
presets: ['@babel/preset-env', ['@babel/typescript', { jsxPragma: 'h' }]],
2021-02-09 13:35:33 -06:00
plugins: [['@babel/plugin-transform-react-jsx', { pragma: 'h' }]],
};