mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
6e3e6ac102
Co-authored-by: Dimitri Mitropoulos <dimitrimitropoulos@gmail.com> Co-authored-by: David Marby <david@dmarby.se>
16 lines
558 B
JavaScript
16 lines
558 B
JavaScript
/** @type { import('@babel/core').TransformOptions } */
|
|
module.exports = {
|
|
presets: [
|
|
['@babel/preset-env',{targets: {electron: '17.3.1'}}],
|
|
'@babel/preset-typescript',
|
|
'@babel/preset-react',
|
|
],
|
|
plugins: [
|
|
["@babel/plugin-proposal-nullish-coalescing-operator"],
|
|
['@babel/plugin-proposal-decorators', { legacy: true }],
|
|
['@babel/plugin-proposal-class-properties', { loose: true }],
|
|
['@babel/plugin-proposal-private-property-in-object', { loose: true }],
|
|
['@babel/plugin-proposal-private-methods', { loose: true }]
|
|
],
|
|
}
|