From 3a9f4e44dcba2001c425104fb74843d7418097b6 Mon Sep 17 00:00:00 2001 From: Basarat Ali Syed Date: Tue, 21 Jun 2016 20:07:14 +1000 Subject: [PATCH] tsconfig : make the module resolution explicit --- src/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tsconfig.json b/src/tsconfig.json index cd43795b89a..7b7bdf30a99 100644 --- a/src/tsconfig.json +++ b/src/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { "module": "amd", + "moduleResolution": "classic", "noImplicitAny": false, "removeComments": false, "preserveConstEnums": true, @@ -8,4 +9,4 @@ "sourceMap": false, "experimentalDecorators": true } -} \ No newline at end of file +}