We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f37e9d commit 108eb43Copy full SHA for 108eb43
packages/uikit-workshop/webpack.config.js
@@ -77,6 +77,11 @@ module.exports = function (apiConfig) {
77
'@babel/plugin-proposal-optional-chaining',
78
['@babel/plugin-proposal-decorators', { legacy: true }],
79
['@babel/plugin-proposal-class-properties', { loose: true }],
80
+ ['@babel/plugin-proposal-private-methods', { loose: true }],
81
+ [
82
+ '@babel/plugin-proposal-private-property-in-object',
83
+ { loose: true },
84
+ ],
85
'@babel/plugin-syntax-dynamic-import',
86
'@babel/plugin-syntax-jsx' /* [1] */,
87
[
@@ -120,7 +125,7 @@ module.exports = function (apiConfig) {
120
125
options: {
121
126
sassOptions: {
122
127
sourceMap: config.sourceMaps,
123
- outputStyle: 'expanded'
128
+ outputStyle: 'expanded',
124
129
},
130
131
0 commit comments