From 910f23afe6fe683efeb85ef748e64e5ab972356c Mon Sep 17 00:00:00 2001 From: Alexander Vakrilov Date: Tue, 9 May 2017 13:30:56 +0300 Subject: [PATCH] Fixed tsconfig snippet --- Modules30Changes.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Modules30Changes.md b/Modules30Changes.md index b4fb91d6c..11a76552c 100644 --- a/Modules30Changes.md +++ b/Modules30Changes.md @@ -14,9 +14,10 @@ TypeScript projects need to reference the **ES6 and DOM libraries**. Add this to "lib": ["es6", "dom"], "baseUrl": ".", "paths": { - "*": [ - "./node_modules/tns-core-modules/*", - "./node_modules/*"] + "*": [ + "./node_modules/tns-core-modules/*", + "./node_modules/*"] + } } } ```