entry
то вам нужно объявить её как let
или var
const getEntryPoint = () => {
const jsFiles = [ 'another_index.js', 'article.js', 'blog.js', 'index.js' ]
let entry = {}
jsFiles.forEach(file => {
entry[file] = file;
})
return entry
}
console.log(getEntryPoint());