0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/babel.config.js

25 lines
540 B
JavaScript
Raw Normal View History

2020-07-13 10:36:38 +02:00
/* global module */
module.exports = {
plugins: [
'@babel/plugin-transform-runtime',
'@babel/plugin-proposal-class-properties',
'@babel/plugin-proposal-private-property-in-object',
2020-07-13 10:36:38 +02:00
],
presets: [
[
'@babel/preset-env',
{
useBuiltIns: 'usage',
corejs: 3,
},
],
[
'@babel/preset-react',
{
runtime: 'automatic',
},
],
'@babel/typescript',
],
2020-07-13 10:36:38 +02:00
}