From ad9ddef7ff5d91a9e2106871d356bcde9a0d10f7 Mon Sep 17 00:00:00 2001 From: atanasovg Date: Wed, 21 May 2014 15:27:20 +0300 Subject: [PATCH] Fixed an issue with module resolution. --- application/index.ts | 2 +- file-system/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/application/index.ts b/application/index.ts index 5e860ae40..3f57f37da 100644 --- a/application/index.ts +++ b/application/index.ts @@ -1,2 +1,2 @@ declare var module, require; -module.exports = require("application"); +module.exports = require("application/application"); diff --git a/file-system/index.ts b/file-system/index.ts index a89436af8..5862515c5 100644 --- a/file-system/index.ts +++ b/file-system/index.ts @@ -1,2 +1,2 @@ declare var module, require; -module.exports = require("file-system"); +module.exports = require("file-system/file-system");