My repo so far: GitHub - Nezteb/phaser-missile-command
I’m awful with webpack/rollup. I basically want:
- Code to all live as separate TypeScript files in
src/
- Running
yarn build
compiles TS, bundles JS, puts these (and anindex.html
) intodist/
- Running
yarn start
serves thedist/
folder in order to play the game in a browser
Are there any good resources/boilerplates/templates for this kind of setup that anyone is aware of? If not I’ll have to slowly cobble together my own.
Thanks for any and all information/tips!