python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
rollup --config gives : [!] SyntaxError: Unexpected token 'export'
I'm trying to learn how to use rollup to package some javascript, following some tutorial on the net.
I stuck at the very beginning trying to use a config file.
With command line everything seems OK, ...
Joël Hecht
Votes: 0
Answers: 1
.net core weboptimizer not creating a bundle
I'm trying to use https://github.com/ligershark/WebOptimizer as suggested by microsoft in order to bundle and minimise my js files, so following the instructions, I have the following in my startup.cs...

Pete
Votes: 0
Answers: 2
webpack error in /webpack/lib/stats/DefaultStatsPrinterPlugin.js:1248
I am currently moving some legacy jQuery project to be bundled with Webpack 5.
Building the project works but only if I remove the webpack folder before like so:
rm -rf src/dist && npm run bui...

nerdess
Votes: 0
Answers: 0
for const of minification
I have the following typescript:
var mynames = new Array<string>();
mynames.push("Currency");
mynames.push("School_Id");
for (const mn of mynames) {
console.log(mn);
}
W...
stefan
Votes: 0
Answers: 1