2020-05-23 17:13:45 +00:00
|
|
|
//
|
2020-06-23 14:19:01 +00:00
|
|
|
// Copyright 2020 DXOS.org
|
2020-05-23 17:13:45 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
presets: [
|
2020-05-27 23:09:20 +00:00
|
|
|
'@babel/preset-env',
|
|
|
|
'@babel/preset-react'
|
2020-05-23 17:13:45 +00:00
|
|
|
],
|
|
|
|
plugins: [
|
|
|
|
[
|
|
|
|
'babel-plugin-inline-import', {
|
|
|
|
extensions: [
|
2020-05-27 23:09:20 +00:00
|
|
|
'.mustache',
|
|
|
|
'.graphql'
|
2020-05-23 17:13:45 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2020-05-27 23:09:20 +00:00
|
|
|
|
|
|
|
// Allows export of components importing GQL files (without webpack).
|
|
|
|
'import-graphql',
|
|
|
|
'inline-json-import',
|
|
|
|
|
2020-05-23 17:13:45 +00:00
|
|
|
'@babel/plugin-proposal-class-properties',
|
|
|
|
'@babel/plugin-proposal-export-default-from'
|
|
|
|
]
|
|
|
|
};
|