aurelia / http-client

A simple, restful, message-based wrapper around XMLHttpRequest.
MIT License
62 stars 59 forks source link

fix(http-client): Use correct import for core-js #78

Closed davismj closed 9 years ago

davismj commented 9 years ago

We were previously using import core from core-js which generates d.ts that do not match the corejs d.ts. This is now updated to import * as core 'core-js', which resolves TypeScript compilation warnings.

closes aurelia/framework#177