there is bundle.js
window.$ = window.jQuery = require('jquery');
import './app.js';
and there is app.js
$('#button').on('click', function(e) {
...
});
so I get this:
Uncaught ReferenceError: $ is not defined
why imported script does not see jquery?