From a4939c16e619c354362908dc01f5cfb24386612c Mon Sep 17 00:00:00 2001 From: sergeome Date: Mon, 28 Nov 2016 14:50:16 -0600 Subject: [PATCH 1/3] docs(webpack): fix for tsconfig.json provided in example --- public/docs/_examples/webpack/ts/tsconfig.1.json | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/public/docs/_examples/webpack/ts/tsconfig.1.json b/public/docs/_examples/webpack/ts/tsconfig.1.json index fd1d10190d..d4f174f39d 100644 --- a/public/docs/_examples/webpack/ts/tsconfig.1.json +++ b/public/docs/_examples/webpack/ts/tsconfig.1.json @@ -6,8 +6,15 @@ "sourceMap": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, + "lib": ["es2015", "dom"], "removeComments": false, "noImplicitAny": true, - "suppressImplicitAnyIndexErrors": true - } -} + "suppressImplicitAnyIndexErrors": true, + "typeRoots": [ + "node_modules/@types/" + ] + }, + "exclude": [ + "node_modules/*" + ] +} \ No newline at end of file From d357523f8dec999d17f6508fa21f1cd3298cddb6 Mon Sep 17 00:00:00 2001 From: sergeome Date: Mon, 28 Nov 2016 17:46:05 -0600 Subject: [PATCH 2/3] docs(webpack): fix for tsconfig.json provided in example --- public/docs/_examples/webpack/ts/tsconfig.1.json | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/public/docs/_examples/webpack/ts/tsconfig.1.json b/public/docs/_examples/webpack/ts/tsconfig.1.json index d4f174f39d..b2229448de 100644 --- a/public/docs/_examples/webpack/ts/tsconfig.1.json +++ b/public/docs/_examples/webpack/ts/tsconfig.1.json @@ -9,12 +9,6 @@ "lib": ["es2015", "dom"], "removeComments": false, "noImplicitAny": true, - "suppressImplicitAnyIndexErrors": true, - "typeRoots": [ - "node_modules/@types/" - ] - }, - "exclude": [ - "node_modules/*" - ] + "suppressImplicitAnyIndexErrors": true + } } \ No newline at end of file From d0627b65b3566e7bf37502a72a3afb680ebc03bf Mon Sep 17 00:00:00 2001 From: sergeome Date: Wed, 30 Nov 2016 18:49:04 -0600 Subject: [PATCH 3/3] docs(webpack): fix for tsconfig.json provided in example --- public/docs/_examples/webpack/ts/tsconfig.1.json | 1 - 1 file changed, 1 deletion(-) diff --git a/public/docs/_examples/webpack/ts/tsconfig.1.json b/public/docs/_examples/webpack/ts/tsconfig.1.json index b2229448de..544e895bce 100644 --- a/public/docs/_examples/webpack/ts/tsconfig.1.json +++ b/public/docs/_examples/webpack/ts/tsconfig.1.json @@ -7,7 +7,6 @@ "emitDecoratorMetadata": true, "experimentalDecorators": true, "lib": ["es2015", "dom"], - "removeComments": false, "noImplicitAny": true, "suppressImplicitAnyIndexErrors": true }