Skip to content

Commit ad9ddef

Browse files
committed
Fixed an issue with module resolution.
1 parent a6edd11 commit ad9ddef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

application/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
declare var module, require;
2-
module.exports = require("application");
2+
module.exports = require("application/application");

file-system/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
declare var module, require;
2-
module.exports = require("file-system");
2+
module.exports = require("file-system/file-system");

0 commit comments

Comments
 (0)