We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd3203f commit 5fa786cCopy full SHA for 5fa786c
CHANGELOG.md
@@ -3,6 +3,7 @@
3
- Fix toolbar button state not updated in some cases
4
- Narrower `BubbleTheme.tooltip` type
5
- Fix `Selection.getBounds()` when starting range at end of text node
6
+- Improve compatibility with esbuild
7
8
# 2.0.0-rc.1
9
packages/quill/babel.config.js
@@ -1,7 +1,10 @@
1
const pkg = require('./package.json');
2
module.exports = {
- presets: ['@babel/preset-env', '@babel/preset-typescript'],
+ presets: [
+ ['@babel/preset-env', { modules: false }],
+ '@babel/preset-typescript'
+ ],
plugins: [
['transform-define', { QUILL_VERSION: pkg.version }],
10
'./scripts/babel-svg-inline-import',
0 commit comments