From acd4f0b358a24b355218be0e120d6785880c7b8e Mon Sep 17 00:00:00 2001 From: Panayot Cankov Date: Tue, 8 Mar 2016 09:18:38 +0200 Subject: [PATCH] Ignore .base.d.ts for referenc.d.ts-es, pass through no strict --- gruntfile.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gruntfile.js b/gruntfile.js index a5203e498..a96403f32 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -348,7 +348,10 @@ module.exports = function(grunt) { options: tsOptions }, "build-inplace": { - tsconfig: 'tsconfig.json' + tsconfig: { + tsconfig: 'tsconfig.json', + passThrough: true, + } }, buildNodeTests: { src: [ @@ -528,7 +531,8 @@ module.exports = function(grunt) { "!**/*.android.d.ts", "!ios.d.ts", "!**/*.ios.d.ts", - "!tns-core-modules.d.ts" + "!tns-core-modules.d.ts", + "!tns-core-modules.base.d.ts" ].concat(localCfg.defaultExcludes).concat(es6Excludes).concat(angularExcludes)); dtsFiles.sort();