-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathbabel.config.js
More file actions
20 lines (19 loc) · 1.07 KB
/
babel.config.js
File metadata and controls
20 lines (19 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*=================================================================================================
// Project: CADS/MADS - An Integrated Web-based Visual Platform for Materials Informatics
// Hokkaido University (2018)
// Last Update: Q3 2023
// ________________________________________________________________________________________________
// Authors: Mikael Nicander Kuwahara (Lead Developer) [2021-]
// Jun Fujima (Former Lead Developer) [2018-2021]
// ________________________________________________________________________________________________
=================================================================================================*/
//-------------------------------------------------------------------------------------------------
module.exports = {
presets: ['@babel/preset-env', '@babel/preset-react'],
plugins: [
'react-hot-loader/babel',
'@babel/plugin-proposal-class-properties',
'@babel/plugin-transform-runtime',
],
};
//-------------------------------------------------------------------------------------------------