├── .editorconfig ├── .gitignore ├── package.json ├── readme.md ├── src ├── app │ ├── app.component.ts │ └── app.module.ts ├── index.html ├── main.ts ├── service │ └── wikipedia.service.ts └── vendor.ts ├── tsconfig.json ├── typings.json ├── webpack.config.js ├── webpack.dev.js └── webpack.prod.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainCodeman/angular2-webpack-polyfill/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | typings -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainCodeman/angular2-webpack-polyfill/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainCodeman/angular2-webpack-polyfill/HEAD/readme.md -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainCodeman/angular2-webpack-polyfill/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainCodeman/angular2-webpack-polyfill/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainCodeman/angular2-webpack-polyfill/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainCodeman/angular2-webpack-polyfill/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/service/wikipedia.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainCodeman/angular2-webpack-polyfill/HEAD/src/service/wikipedia.service.ts -------------------------------------------------------------------------------- /src/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainCodeman/angular2-webpack-polyfill/HEAD/src/vendor.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainCodeman/angular2-webpack-polyfill/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainCodeman/angular2-webpack-polyfill/HEAD/typings.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainCodeman/angular2-webpack-polyfill/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainCodeman/angular2-webpack-polyfill/HEAD/webpack.dev.js -------------------------------------------------------------------------------- /webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CaptainCodeman/angular2-webpack-polyfill/HEAD/webpack.prod.js --------------------------------------------------------------------------------