forked from cerc-io/laconic-console
18 lines
311 B
JavaScript
18 lines
311 B
JavaScript
//
|
|
// Copyright 2020 DXOS.org
|
|
//
|
|
|
|
module.exports = {
|
|
presets: [
|
|
'@babel/preset-env',
|
|
'@babel/preset-react'
|
|
],
|
|
plugins: [
|
|
// Allows export of components importing GQL files (without webpack).
|
|
'import-graphql',
|
|
'inline-json-import',
|
|
|
|
'@babel/plugin-proposal-class-properties'
|
|
]
|
|
};
|