Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 315 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 315 Bytes

TS Webpack HMR

Usage

Load deps & create an initial build

yarn
webpack

Watch for changes & server the bundle

webpack --watch & node build/bundle.js

Edit the lib2.ts file and see that the lib.ts and lib2.ts file are reloaded, but not the index.ts file. The interval should continue.