mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 21:49:51 +01:00
cd251df713
Co-authored-by: Michael Matloka <dev@twixes.com>
12 lines
351 B
JavaScript
12 lines
351 B
JavaScript
/* global module */
|
|
module.exports = {
|
|
plugins: [
|
|
'@babel/plugin-transform-runtime',
|
|
'@babel/plugin-transform-react-jsx',
|
|
'@babel/plugin-proposal-class-properties',
|
|
'react-hot-loader/babel',
|
|
['babel-plugin-kea', { path: './frontend/src' }],
|
|
],
|
|
presets: ['@babel/preset-env', '@babel/typescript'],
|
|
}
|