mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-27 16:26:50 +01:00
23 lines
540 B
JavaScript
23 lines
540 B
JavaScript
/* global module */
|
|
module.exports = {
|
|
plugins: [
|
|
'@babel/plugin-transform-runtime',
|
|
'@babel/plugin-transform-react-jsx',
|
|
'@babel/plugin-proposal-class-properties',
|
|
['babel-plugin-kea', { path: './frontend/src' }],
|
|
],
|
|
presets: [
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
useBuiltIns: 'usage',
|
|
corejs: 3,
|
|
targets: {
|
|
node: 'current'
|
|
}
|
|
},
|
|
],
|
|
'@babel/typescript',
|
|
],
|
|
}
|