Added another alias module

I found I had to add this to get Typescript and webpack to both be happy with this.  The other names are ok for the Typescript compiler, but when you go to load underlying code, webpack gets confused because the name doesn't match the `npm` name.
This commit is contained in:
Michael Tiller
2015-11-03 16:29:57 -05:00
parent 0dd29bf825
commit 5eb598f270

4
urijs/URIjs.d.ts vendored
View File

@@ -230,3 +230,7 @@ declare var URI: uri.URIStatic;
declare module 'URI' {
export = URI;
}
declare module 'urijs' {
export = URI;
}