Faced with problem - setup some prototype of project based on TypeScript. It contains client scripts and server part (NodeJs with ExpressJs).
I would like to have webpack as a bundler and use hot reloading feature to see changes on fly. Initially, i used react-transform-boilerplate-ts, but the problem there - entry point of development server is js file. I suppose it should be ts, because there i would like to include my configuration of express, etc.
So, Does anyone has good boilerplate (followed best practices in project structure) to create project that contains:
- client (React) and server (typescript)
- Back-end uses NodeJs and ExpressJs (typescript)
- client and server support hot reload (as i understand best choice - is webpack option for reloading, not gulp tasks that run watching).
Or maybe you could me good advices, how to configure that kind of stuff in proper way.
Thanks a lot