tiptap/babel.config.js

11 lines
215 B
JavaScript
Raw Permalink Normal View History

2020-08-21 05:25:55 +08:00
module.exports = {
presets: [
'@babel/preset-env',
2021-02-26 09:40:22 +08:00
'@babel/preset-react',
2020-08-21 05:25:55 +08:00
],
2020-09-23 03:54:44 +08:00
plugins: [
2020-10-01 01:19:42 +08:00
'@babel/plugin-proposal-nullish-coalescing-operator',
2020-09-23 03:54:44 +08:00
'@babel/plugin-proposal-optional-chaining',
],
2020-09-24 05:38:11 +08:00
}