mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
Don't emit "use strict" in compiled source. It breaks on iOS.
This commit is contained in:
@ -336,7 +336,10 @@ module.exports = function(grunt) {
|
||||
},
|
||||
ts: {
|
||||
build: {
|
||||
tsconfig: {
|
||||
tsconfig: 'tsconfig.json',
|
||||
passThrough: true,
|
||||
},
|
||||
outDir: localCfg.outModulesDir,
|
||||
options: tsOptions
|
||||
},
|
||||
|
@ -9,6 +9,7 @@
|
||||
"declaration": false,
|
||||
"noImplicitAny": false,
|
||||
"removeComments": true,
|
||||
"noImplicitUseStrict": true,
|
||||
"outDir": "bin/dist/modules",
|
||||
"experimentalDecorators": true
|
||||
},
|
||||
|
Reference in New Issue
Block a user