Collecting a project to work with ArcGIS. I don’t need to include his modules in the general bundle. Now I have to ignore each module in ignore

return browserify( { entries: config.src, debug: debug }) .plugin("tsify") .ignore([ "esri/Map", "esri/views/MapView", "esri/layers/GraphicsLayer", "esri/Graphic", "esri/geometry/Point", "esri/symbols/PictureMarkerSymbol", "esri/widgets/ScaleBar", "esri/core/watchUtils", "esri/geometry/support/webMercatorUtils", ]) .bundle() .pipe(source(config.outName)) .pipe(header(hdr)) .pipe(gulp.dest(config.outDir)); 

Is it possible to somehow specify the exception mask? Such

 .ignore(["esri/*"]) 

    0