In npm script, if it matches to a file, all the specified suffix files

.
 src
    a_folder
       a_chlid_folder
          a_chlid.js
       a.js

I"d like to know how to match all .js files under src in npm script
such as eslint. / src/**/*.js can only match a.js, but not a_child.js

.
Mar.21,2021
Menu