From ce445cfe895cd09d79ced245925a3bd559b00adc Mon Sep 17 00:00:00 2001 From: stherrienaspnet Date: Tue, 9 May 2017 12:15:23 -0400 Subject: [PATCH] Moved setting moduleResolution inside compilerOptions section --- templates/app/tsconfig(ts).json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/app/tsconfig(ts).json b/templates/app/tsconfig(ts).json index cddcf25b2..7fe883d2f 100644 --- a/templates/app/tsconfig(ts).json +++ b/templates/app/tsconfig(ts).json @@ -8,10 +8,10 @@ "module": "es6", "outDir": ".tmp", "removeComments": false, - "target": "ES5", - "skipLibCheck": true + "target": "es5", + "skipLibCheck": true, + "moduleResolution": "node" }, - "moduleResolution": "node", "typeRoots": [ "node_modules/@types" ],