File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed
Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,8 @@ export default defineConfig([
2323 } ) ,
2424 babel ( {
2525 presets : [ "@babel/preset-react" ] ,
26+ babelHelpers : 'bundled' ,
27+ exclude : 'node_modules/**'
2628 } ) ,
2729 commonjs ( ) ,
2830 nodeResolve ( {
@@ -37,6 +39,7 @@ export default defineConfig([
3739 ] ,
3840 onwarn : ( msg , warn ) => {
3941 if ( msg . code === 'THIS_IS_UNDEFINED' ) return ;
42+ if ( msg . code === 'MODULE_LEVEL_DIRECTIVE' ) return ;
4043 if ( ! / C i r c u l a r / . test ( `${ msg } ` ) ) {
4144 warn ( msg )
4245 }
Original file line number Diff line number Diff line change 44 "private" : true ,
55 "license" : " MIT" ,
66 "directories" : {},
7+ "type" : " module" ,
78 "scripts" : {
89 "build" : " rollup -c ./config/rollup.config.js" ,
910 "test" : " jest" ,
Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ function Home() {
8282 onKeyDown = { handleKeyPress }
8383 clearable
8484 style = { { flex : 1 } }
85+ required = "true"
8586 > </ SlInput >
8687 < sl-button
8788 variant = "primary"
You can’t perform that action at this time.
0 commit comments