Ignore .base.d.ts for referenc.d.ts-es, pass through no strict

This commit is contained in:
Panayot Cankov
2016-03-08 09:18:38 +02:00
parent e5131c3c3c
commit acd4f0b358

View File

@@ -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();