├── .gitignore ├── .npmignore ├── README.md ├── lib ├── client │ └── client.ts ├── common.ts └── server │ └── server.ts ├── package.json ├── tsconfig.json └── tsd.json /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | typings 4 | 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular2-hot-loader/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular2-hot-loader/HEAD/README.md -------------------------------------------------------------------------------- /lib/client/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular2-hot-loader/HEAD/lib/client/client.ts -------------------------------------------------------------------------------- /lib/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular2-hot-loader/HEAD/lib/common.ts -------------------------------------------------------------------------------- /lib/server/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular2-hot-loader/HEAD/lib/server/server.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular2-hot-loader/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular2-hot-loader/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/angular2-hot-loader/HEAD/tsd.json --------------------------------------------------------------------------------