From 5eb598f270639598531f2937484b1eb5b39504e8 Mon Sep 17 00:00:00 2001 From: Michael Tiller Date: Tue, 3 Nov 2015 16:29:57 -0500 Subject: [PATCH] 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. --- urijs/URIjs.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/urijs/URIjs.d.ts b/urijs/URIjs.d.ts index 3bd4ba366..23d79218b 100644 --- a/urijs/URIjs.d.ts +++ b/urijs/URIjs.d.ts @@ -230,3 +230,7 @@ declare var URI: uri.URIStatic; declare module 'URI' { export = URI; } + +declare module 'urijs' { + export = URI; +}