mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
13 lines
434 B
JavaScript
13 lines
434 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',
|
||
|
['import', { libraryName: 'antd', libraryDirectory: 'es', style: 'css' }],
|
||
|
['babel-plugin-kea', { path: './frontend/src' }],
|
||
|
],
|
||
|
presets: ['@babel/preset-env', '@babel/typescript'],
|
||
|
}
|