Merge pull request #1713 from NativeScript/cankov/grunt-inplace

Ignore .base.d.ts from references, pass through no strict
This commit is contained in:
Panayot Cankov
2016-03-09 09:33:30 +02:00

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