I am trying to create binary for a react electron application and I came across with this in package.json. What does **/*
mean ?
"build": {
"appId": "com.com.com",
"productName": "Prost",
"files": [
"build/**/*",
"public/**/*",
"src/images/**/*"
]
},
Thanks