laconic-console/babel.config.js

18 lines
311 B
JavaScript
Raw Permalink Normal View History

//
2020-06-23 14:19:01 +00:00
// 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',
2023-03-21 15:17:30 +00:00
'@babel/plugin-proposal-class-properties'
]
};