diff --git a/gruntfile.js b/gruntfile.js index 060496b54..6403080fb 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -1,3 +1,5 @@ +var tsconfig = require('./tsconfig.json'); + module.exports = function(grunt) { if (grunt.cli.tasks.indexOf("testsapp") >= 0 || grunt.cli.tasks.indexOf("buildTestsApp")>= 0) { @@ -127,7 +129,7 @@ module.exports = function(grunt) { srcAppsDir: "./apps", packageJsonFilePath: "./package.json", outDir: "./bin/dist", - outModulesDir: "./bin/dist/modules", + outModulesDir: tsconfig.compilerOptions.outDir, outAppsDir: "./bin/dist/apps", outTsAppsDir: "./bin/dist/ts-apps", }; @@ -141,37 +143,18 @@ module.exports = function(grunt) { localCfg.mainPackageContent = grunt.file.readJSON(localCfg.packageJsonFilePath); localCfg.packageVersion = getPackageVersion(localCfg.packageJsonFilePath); localCfg.commitSHA = getCommitSha(); - localCfg.defaultExcludes = [ - "!" + localCfg.outDir + "/**/*.*", - "!./node_modules/**/*.*", - "!./bin/**/*.*", - "!./build/**/*.*", - "!./Deploy/**/*.*", - "!./obj/**/*.*", - "!./out/**/*.*", - "!./.*/**/*.*" - ]; - localCfg.typeScriptSrc = [ - "./**/*.ts" - ].concat(localCfg.defaultExcludes); + localCfg.typeScriptSrc = tsconfig.filesGlob; + localCfg.defaultExcludes = localCfg.typeScriptSrc.filter(function(item) { return /^!/.test(item); }); localCfg.typeScriptSrcForTsLint = localCfg.typeScriptSrc.concat([ - "!./ios.d.ts", - "!./android17.d.ts", - "!./libjs.d.ts" + "!ios.d.ts", + "!android17.d.ts", + "!libjs.d.ts" ]); - var tsOptions = { - fast: 'never', - module: "commonjs", - target: "es5", - sourceMap: false, - declaration: false, - removeComments: !grunt.option('leavecomments') || '', - compiler: "node_modules/typescript/bin/tsc", - noEmitOnError: true, - experimentalDecorators: true, - noEmitHelpers: true - }; + var tsOptions = tsconfig.compilerOptions; + tsOptions.fast = 'never'; + tsOptions.removeComments = !grunt.option('leavecomments') || ''; + tsOptions.compiler = "node_modules/typescript/bin/tsc"; grunt.initConfig({ localCfg : localCfg, @@ -183,9 +166,9 @@ module.exports = function(grunt) { typeScriptLeftovers: { expand: true, src: [ - "./.baseDir.*", - "./_references.js", - "./**/*.map" + ".baseDir.*", + "_references.js", + "**/*.map" ], cwd: localCfg.outModulesDir }, @@ -306,7 +289,7 @@ module.exports = function(grunt) { }, ts: { build: { - src: localCfg.typeScriptSrc, + tsconfig: 'tsconfig.json', outDir: localCfg.outModulesDir, options: tsOptions }, @@ -503,8 +486,11 @@ module.exports = function(grunt) { "copy:readyTsAppFiles" ]); grunt.registerTask("generate-tns-core-modules-dts", function() { - var dtsFiles = grunt.file.expand({cwd: localCfg.outModulesDir}, ['**/*.d.ts']); - dtsFiles.sort() + var dtsFiles = grunt.file.expand({cwd: localCfg.outModulesDir}, [ + '**/*.d.ts', + '!tns-core-modules.d.ts' + ].concat(localCfg.defaultExcludes)); + dtsFiles.sort(); var dtsLines = dtsFiles.map(function(dtsFile) { return '/// '; @@ -554,12 +540,6 @@ module.exports = function(grunt) { "pack-modules" ])); - grunt.registerTask("testEnv", function() { - console.log('fafla', process.env.NODE_PATH); - //var x = require('xml') - //console.log(x); - }); - grunt.registerTask("node-tests", [ "clean:nodeTests", "ts:buildNodeTests", diff --git a/tsconfig.json b/tsconfig.json index de73a200c..3d365f768 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,521 +1,669 @@ { "version": "1.6.2", "compilerOptions": { - "moduleResolution": "classic", + "sourceMap": false, + "noEmitOnError": true, + "noEmitHelpers": true, "target": "es5", "module": "commonjs", "declaration": false, "noImplicitAny": false, "removeComments": true, - "noLib": true, - "outDir": "dist", + "outDir": "bin/dist/modules", "experimentalDecorators": true }, "filesGlob": [ - "./**/*.ts", - "!./node_modules/**/*.ts", - "!./bin/**/*.*", - "!./obj/**/*.*" + "**/*.ts", + "!node_modules/**/*.*", + "!bin/**/*.*", + "!build/**/*.*", + "!Deploy/**/*.*", + "!out/**/*.*", + "!.*/**/*.*", + "!obj/**/*.*" ], "files": [ - "./_references.ts", - "./android17.d.ts", - "./application-settings/application-settings-common.ts", - "./application-settings/application-settings.android.ts", - "./application-settings/application-settings.d.ts", - "./application-settings/application-settings.ios.ts", - "./application/application-common.ts", - "./application/application.android.ts", - "./application/application.d.ts", - "./application/application.ios.ts", - "./apps/TelerikNEXT/TelerikUI/side-bar/side-bar-common.ts", - "./apps/TelerikNEXT/TelerikUI/side-bar/side-bar.android.ts", - "./apps/TelerikNEXT/TelerikUI/side-bar/side-bar.d.ts", - "./apps/TelerikNEXT/TelerikUI/side-bar/side-bar.ios.ts", - "./apps/TelerikNEXT/app-view-model.ts", - "./apps/TelerikNEXT/app.ts", - "./apps/TelerikNEXT/everlive-upload.ts", - "./apps/TelerikNEXT/main-page.ts", - "./apps/TelerikNEXT/session-page.ts", - "./apps/absolute-layout-demo/app.ts", - "./apps/absolute-layout-demo/mainPage.ts", - "./apps/cuteness.io/app.ts", - "./apps/cuteness.io/details-page.ts", - "./apps/cuteness.io/main-page.ts", - "./apps/cuteness.io/reddit-app-view-model.ts", - "./apps/cuteness.io/reddit-item-view-model.ts", - "./apps/cuteness.io/reddit-model.d.ts", - "./apps/editable-text-demo/app.ts", - "./apps/editable-text-demo/main-page.ts", - "./apps/editable-text-demo/model.ts", - "./apps/gallery-app/app.ts", - "./apps/gallery-app/main-page.ts", - "./apps/gallery-app/views/dialogs.ts", - "./apps/gallery-app/views/list-picker.ts", - "./apps/gallery-app/views/list-view.ts", - "./apps/paylocity/app.ts", - "./apps/paylocity/login.ts", - "./apps/paylocity/news.ts", - "./apps/perf-tests/ApplicationLoadTimeAndFPS/app.ts", - "./apps/perf-tests/ApplicationLoadTimeAndFPS/mainPage.ts", - "./apps/perf-tests/ApplicationSize/app.ts", - "./apps/perf-tests/ApplicationSize/mainPage.ts", - "./apps/perf-tests/ComplexObjectGraphMemoryTest/app.ts", - "./apps/perf-tests/ComplexObjectGraphMemoryTest/mainPage.ts", - "./apps/perf-tests/ControlCreationSpeedTest/app.ts", - "./apps/perf-tests/ControlCreationSpeedTest/mainPage.ts", - "./apps/perf-tests/LargeObjectArrayMemoryLeakTest/app.ts", - "./apps/perf-tests/LargeObjectArrayMemoryLeakTest/mainPage.ts", - "./apps/perf-tests/LargeObjectArrayMemoryLeakTest/native-calls-wrapper.android.ts", - "./apps/perf-tests/LargeObjectArrayMemoryLeakTest/native-calls-wrapper.d.ts", - "./apps/perf-tests/LargeObjectArrayMemoryLeakTest/native-calls-wrapper.ios.ts", - "./apps/perf-tests/LargeObjectArrayMemoryTest/app.ts", - "./apps/perf-tests/LargeObjectArrayMemoryTest/mainPage.ts", - "./apps/perf-tests/NavigationMemoryLeakTest/app.ts", - "./apps/perf-tests/NavigationMemoryLeakTest/mainPage.ts", - "./apps/perf-tests/NavigationTest/app.ts", - "./apps/perf-tests/NavigationTest/details-page.ts", - "./apps/perf-tests/NavigationTest/master-page.ts", - "./apps/perf-tests/NavigationTest/page1.ts", - "./apps/perf-tests/NavigationTest/page2.ts", - "./apps/perf-tests/SingleUIObjectMemoryLeakTest/app.ts", - "./apps/perf-tests/SingleUIObjectMemoryLeakTest/mainPage.ts", - "./apps/perf-tests/SpeedTests/app.ts", - "./apps/perf-tests/SpeedTests/mainPage.ts", - "./apps/perf-tests/SpeedTests/tests-native.android.ts", - "./apps/perf-tests/SpeedTests/tests-native.d.ts", - "./apps/perf-tests/SpeedTests/tests-native.ios.ts", - "./apps/perf-tests/SpeedTests/tests.d.ts", - "./apps/perf-tests/SpeedTests/tests.ts", - "./apps/perf-tests/common.d.ts", - "./apps/perf-tests/common.ts", - "./apps/perf-tests/controls-page.d.ts", - "./apps/perf-tests/controls-page.ts", - "./apps/perf-tests/nav-page.d.ts", - "./apps/perf-tests/nav-page.ts", - "./apps/pickers-demo/app.ts", - "./apps/pickers-demo/main-page.ts", - "./apps/pickers-demo/model.ts", - "./apps/placeholder-demo/app.ts", - "./apps/placeholder-demo/main-page.android.ts", - "./apps/placeholder-demo/main-page.ios.ts", - "./apps/tab-view-demo/app.ts", - "./apps/tab-view-demo/mainPage.ts", - "./apps/template-blank/app.ts", - "./apps/template-blank/main-page.ts", - "./apps/template-hello-world/app.ts", - "./apps/template-hello-world/main-page.ts", - "./apps/template-hello-world/main-view-model.ts", - "./apps/template-master-detail/app.ts", - "./apps/template-master-detail/details-page.ts", - "./apps/template-master-detail/main-page.ts", - "./apps/template-master-detail/main-view-model.ts", - "./apps/template-settings/app.ts", - "./apps/template-settings/main-page.ts", - "./apps/template-settings/view-model.ts", - "./apps/template-tab-navigation/app.ts", - "./apps/template-tab-navigation/main-page.ts", - "./apps/tests/TKUnit.ts", - "./apps/tests/app/app.ts", - "./apps/tests/app/location-example.ts", - "./apps/tests/app/mainPage.ts", - "./apps/tests/app/pageNavigation.ts", - "./apps/tests/app/style_props.ts", - "./apps/tests/app/testPage.ts", - "./apps/tests/app/testRunnerPage.ts", - "./apps/tests/application-settings-tests.ts", - "./apps/tests/application-tests-common.ts", - "./apps/tests/application-tests.android.ts", - "./apps/tests/application-tests.ios.ts", - "./apps/tests/camera-tests.ts", - "./apps/tests/color-tests.ts", - "./apps/tests/console-tests.ts", - "./apps/tests/file-name-resolver-tests/file-name-resolver-tests.ts", - "./apps/tests/file-system-access-tests/file-system-access-tests.ts", - "./apps/tests/file-system-tests.ts", - "./apps/tests/fps-meter-tests.ts", - "./apps/tests/frame-tests.ts", - "./apps/tests/gestures-tests.ts", - "./apps/tests/http-tests.ts", - "./apps/tests/image-source-tests.ts", - "./apps/tests/layouts/absolute-layout-tests.ts", - "./apps/tests/layouts/dock-layout-tests.ts", - "./apps/tests/layouts/grid-layout-tests.ts", - "./apps/tests/layouts/layout-helper.ts", - "./apps/tests/layouts/stack-layout-tests.ts", - "./apps/tests/layouts/wrap-layout-tests.ts", - "./apps/tests/location-tests.ts", - "./apps/tests/observable-array-tests.ts", - "./apps/tests/pages/app.ts", - "./apps/tests/pages/file-load-test.ts", - "./apps/tests/pages/navigation/pageA-new-activity.ts", - "./apps/tests/pages/navigation/pageA.ts", - "./apps/tests/pages/navigation/pageB-new-activity.ts", - "./apps/tests/pages/navigation/pageB.ts", - "./apps/tests/pages/navigation/pageC-new-activity.ts", - "./apps/tests/pages/navigation/pageC.ts", - "./apps/tests/pages/page10.ts", - "./apps/tests/pages/page11.ts", - "./apps/tests/pages/page12.ts", - "./apps/tests/pages/page13.ts", - "./apps/tests/pages/page15.ts", - "./apps/tests/pages/page16.ts", - "./apps/tests/pages/page17.ts", - "./apps/tests/pages/page18.ts", - "./apps/tests/pages/page5.ts", - "./apps/tests/pages/page6.ts", - "./apps/tests/pages/page7.ts", - "./apps/tests/pages/page8.ts", - "./apps/tests/pages/page9.ts", - "./apps/tests/pages/property-bindings.ts", - "./apps/tests/pages/sandbox-project.ts", - "./apps/tests/platform-tests.ts", - "./apps/tests/styling/app.ts", - "./apps/tests/styling/mainPage.ts", - "./apps/tests/testRunner.ts", - "./apps/tests/text/formatted-string-tests.ts", - "./apps/tests/timer-tests.ts", - "./apps/tests/trace-tests.ts", - "./apps/tests/ui-test.ts", - "./apps/tests/ui/activity-indicator/activity-indicator-tests.ts", - "./apps/tests/ui/bindable-tests.ts", - "./apps/tests/ui/bindingContext_testPage.ts", - "./apps/tests/ui/bindingContext_testPage1.ts", - "./apps/tests/ui/bindingContext_testPage2.ts", - "./apps/tests/ui/border/border-tests.ts", - "./apps/tests/ui/button/button-tests-native.android.ts", - "./apps/tests/ui/button/button-tests-native.d.ts", - "./apps/tests/ui/button/button-tests-native.ios.ts", - "./apps/tests/ui/button/button-tests.ts", - "./apps/tests/ui/date-picker/date-picker-tests-native.android.ts", - "./apps/tests/ui/date-picker/date-picker-tests-native.d.ts", - "./apps/tests/ui/date-picker/date-picker-tests-native.ios.ts", - "./apps/tests/ui/date-picker/date-picker-tests.ts", - "./apps/tests/ui/dependency-observable-tests.ts", - "./apps/tests/ui/dialogs/dialog-tests.ts", - "./apps/tests/ui/helper.ts", - "./apps/tests/ui/image-cache/image-cache-tests.ts", - "./apps/tests/ui/image/image-tests.ts", - "./apps/tests/ui/label/label-tests-native.android.ts", - "./apps/tests/ui/label/label-tests-native.d.ts", - "./apps/tests/ui/label/label-tests-native.ios.ts", - "./apps/tests/ui/label/label-tests.ts", - "./apps/tests/ui/list-picker/list-picker-tests-native.android.ts", - "./apps/tests/ui/list-picker/list-picker-tests-native.d.ts", - "./apps/tests/ui/list-picker/list-picker-tests-native.ios.ts", - "./apps/tests/ui/list-picker/list-picker-tests.ts", - "./apps/tests/ui/list-view/list-view-tests.ts", - "./apps/tests/ui/observable-tests.ts", - "./apps/tests/ui/page/page-tests-common.ts", - "./apps/tests/ui/page/page-tests.android.ts", - "./apps/tests/ui/page/page-tests.ios.ts", - "./apps/tests/ui/page/test-page-module.ts", - "./apps/tests/ui/progress/progress-tests.ts", - "./apps/tests/ui/scroll-view/scroll-view-tests.ts", - "./apps/tests/ui/search-bar/search-bar-tests.ts", - "./apps/tests/ui/segmented-bar/segmented-bar-tests-native.android.ts", - "./apps/tests/ui/segmented-bar/segmented-bar-tests-native.d.ts", - "./apps/tests/ui/segmented-bar/segmented-bar-tests-native.ios.ts", - "./apps/tests/ui/segmented-bar/segmented-bar-tests.ts", - "./apps/tests/ui/slider/slider-tests.ts", - "./apps/tests/ui/style/style-properties-tests.ts", - "./apps/tests/ui/style/style-tests.ts", - "./apps/tests/ui/style/value-source-tests.ts", - "./apps/tests/ui/style/visual-state-tests.ts", - "./apps/tests/ui/switch/switch-tests.ts", - "./apps/tests/ui/tab-view/tab-view-tests-native.android.ts", - "./apps/tests/ui/tab-view/tab-view-tests-native.d.ts", - "./apps/tests/ui/tab-view/tab-view-tests-native.ios.ts", - "./apps/tests/ui/tab-view/tab-view-tests.ts", - "./apps/tests/ui/text-field/text-field-tests-native.android.ts", - "./apps/tests/ui/text-field/text-field-tests-native.d.ts", - "./apps/tests/ui/text-field/text-field-tests-native.ios.ts", - "./apps/tests/ui/text-field/text-field-tests.ts", - "./apps/tests/ui/text-view/text-view-tests-native.android.ts", - "./apps/tests/ui/text-view/text-view-tests-native.d.ts", - "./apps/tests/ui/text-view/text-view-tests-native.ios.ts", - "./apps/tests/ui/text-view/text-view-tests.ts", - "./apps/tests/ui/time-picker/time-picker-tests-native.android.ts", - "./apps/tests/ui/time-picker/time-picker-tests-native.d.ts", - "./apps/tests/ui/time-picker/time-picker-tests-native.ios.ts", - "./apps/tests/ui/time-picker/time-picker-tests.ts", - "./apps/tests/ui/view/view-tests-common.ts", - "./apps/tests/ui/view/view-tests.android.ts", - "./apps/tests/ui/view/view-tests.ios.ts", - "./apps/tests/ui/web-view/web-view-tests.ts", - "./apps/tests/virtual-array-tests.ts", - "./apps/tests/xml-declaration/app.ts", - "./apps/tests/xml-declaration/mainPage.ts", - "./apps/tests/xml-declaration/mymodule/MyControl.ts", - "./apps/tests/xml-declaration/mymodulewithxml/MyControl.ts", - "./apps/tests/xml-declaration/xml-declaration-tests.ts", - "./apps/tests/xml-parser-tests/xml-parser-tests.ts", - "./apps/ui-tests-app/app.ts", - "./apps/ui-tests-app/mainPage.ts", - "./apps/ui-tests-app/pages/gestures.ts", - "./apps/ui-tests-app/pages/i61.ts", - "./apps/ui-tests-app/pages/i73.ts", - "./apps/web-view-demo/app.ts", - "./apps/web-view-demo/main-page.ts", - "./apps/web-view-demo/model.ts", - "./apps/wrap-layout-demo/app.ts", - "./apps/wrap-layout-demo/mainPage.ts", - "./apps/xml-demo/app.ts", - "./apps/xml-demo/mainPage.ts", - "./camera/camera-common.ts", - "./camera/camera.android.ts", - "./camera/camera.d.ts", - "./camera/camera.ios.ts", - "./color/color-common.ts", - "./color/color.android.ts", - "./color/color.d.ts", - "./color/color.ios.ts", - "./color/known-colors.ts", - "./console/console-native.android.ts", - "./console/console-native.d.ts", - "./console/console-native.ios.ts", - "./console/console.d.ts", - "./console/console.ts", - "./data/observable-array/observable-array.d.ts", - "./data/observable-array/observable-array.ts", - "./data/observable/observable.d.ts", - "./data/observable/observable.ts", - "./data/virtual-array/virtual-array.d.ts", - "./data/virtual-array/virtual-array.ts", - "./declarations.android.d.ts", - "./declarations.d.ts", - "./declarations.ios.d.ts", - "./file-system/file-name-resolver.d.ts", - "./file-system/file-name-resolver.ts", - "./file-system/file-system-access.android.ts", - "./file-system/file-system-access.d.ts", - "./file-system/file-system-access.ios.ts", - "./file-system/file-system.d.ts", - "./file-system/file-system.ts", - "./fps-meter/fps-meter.d.ts", - "./fps-meter/fps-meter.ts", - "./fps-meter/fps-native.android.ts", - "./fps-meter/fps-native.d.ts", - "./fps-meter/fps-native.ios.ts", - "./globals/globals.ts", - "./http/http-request.android.ts", - "./http/http-request.d.ts", - "./http/http-request.ios.ts", - "./http/http.d.ts", - "./http/http.ts", - "./image-source/image-source-common.ts", - "./image-source/image-source.android.ts", - "./image-source/image-source.d.ts", - "./image-source/image-source.ios.ts", - "./ios.d.ts", - "./js-libs/easysax/easysax.d.ts", - "./js-libs/esprima/esprima.d.ts", - "./js-libs/polymer-expressions/polymer-expressions.d.ts", - "./css/reworkcss.d.ts", - "./libjs.d.ts", - "./location/location-common.ts", - "./location/location.android.ts", - "./location/location.d.ts", - "./location/location.ios.ts", - "./platform/platform.android.ts", - "./platform/platform.d.ts", - "./platform/platform.ios.ts", - "./text/formatted-string-common.ts", - "./text/formatted-string.android.ts", - "./text/formatted-string.d.ts", - "./text/formatted-string.ios.ts", - "./text/span-common.ts", - "./text/span.android.ts", - "./text/span.d.ts", - "./text/span.ios.ts", - "./text/text.android.ts", - "./text/text.d.ts", - "./text/text.ios.ts", - "./timer/timer.android.ts", - "./timer/timer.d.ts", - "./timer/timer.ios.ts", - "./trace/trace.d.ts", - "./trace/trace.ts", - "./ui/animation/animation-common.ts", - "./ui/animation/animation.android.ts", - "./ui/animation/animation.ios.ts", - "./ui/activity-indicator/activity-indicator-common.ts", - "./ui/activity-indicator/activity-indicator.android.ts", - "./ui/activity-indicator/activity-indicator.d.ts", - "./ui/activity-indicator/activity-indicator.ios.ts", - "./ui/border/border-common.ts", - "./ui/border/border.android.ts", - "./ui/border/border.d.ts", - "./ui/border/border.ios.ts", - "./ui/builder/binding-builder.ts", - "./ui/builder/builder.d.ts", - "./ui/builder/builder.ts", - "./ui/builder/component-builder.d.ts", - "./ui/builder/component-builder.ts", - "./ui/builder/template-builder.d.ts", - "./ui/builder/template-builder.ts", - "./ui/button/button-common.ts", - "./ui/button/button.android.ts", - "./ui/button/button.d.ts", - "./ui/button/button.ios.ts", - "./ui/content-view/content-view.d.ts", - "./ui/content-view/content-view.ts", - "./ui/core/bindable.d.ts", - "./ui/core/bindable.ts", - "./ui/core/control-state-change.d.ts", - "./ui/core/control-state-change.ios.ts", - "./ui/core/dependency-observable.d.ts", - "./ui/core/dependency-observable.ts", - "./ui/core/proxy.d.ts", - "./ui/core/proxy.ts", - "./ui/core/view-common.ts", - "./ui/core/view.android.ts", - "./ui/core/view.d.ts", - "./ui/core/view.ios.ts", - "./ui/core/weak-event-listener.d.ts", - "./ui/core/weak-event-listener.ts", - "./ui/date-picker/date-picker-common.ts", - "./ui/date-picker/date-picker.android.ts", - "./ui/date-picker/date-picker.d.ts", - "./ui/date-picker/date-picker.ios.ts", - "./ui/dialogs/dialogs-common.ts", - "./ui/dialogs/dialogs.android.ts", - "./ui/dialogs/dialogs.d.ts", - "./ui/dialogs/dialogs.ios.ts", - "./ui/editable-text-base/editable-text-base-common.ts", - "./ui/editable-text-base/editable-text-base.android.ts", - "./ui/editable-text-base/editable-text-base.d.ts", - "./ui/editable-text-base/editable-text-base.ios.ts", - "./ui/enums/enums.d.ts", - "./ui/enums/enums.ts", - "./ui/frame/frame-common.ts", - "./ui/frame/frame.android.ts", - "./ui/frame/frame.d.ts", - "./ui/frame/frame.ios.ts", - "./ui/gestures/gestures-common.ts", - "./ui/gestures/gestures.android.ts", - "./ui/gestures/gestures.d.ts", - "./ui/gestures/gestures.ios.ts", - "./ui/image-cache/image-cache-common.ts", - "./ui/image-cache/image-cache.android.ts", - "./ui/image-cache/image-cache.d.ts", - "./ui/image-cache/image-cache.ios.ts", - "./ui/image/image-common.ts", - "./ui/image/image.android.ts", - "./ui/image/image.d.ts", - "./ui/image/image.ios.ts", - "./ui/label/label-common.ts", - "./ui/label/label.android.ts", - "./ui/label/label.d.ts", - "./ui/label/label.ios.ts", - "./ui/layouts/absolute-layout/absolute-layout.d.ts", - "./ui/layouts/absolute-layout/absolute-layout.ts", - "./ui/layouts/dock-layout/dock-layout.d.ts", - "./ui/layouts/dock-layout/dock-layout.ts", - "./ui/layouts/grid-layout/grid-layout.d.ts", - "./ui/layouts/grid-layout/grid-layout.ts", - "./ui/layouts/layout.d.ts", - "./ui/layouts/layout.ts", - "./ui/layouts/stack-layout/stack-layout.d.ts", - "./ui/layouts/stack-layout/stack-layout.ts", - "./ui/layouts/wrap-layout/wrap-layout.d.ts", - "./ui/layouts/wrap-layout/wrap-layout.ts", - "./ui/list-picker/list-picker-common.ts", - "./ui/list-picker/list-picker.android.ts", - "./ui/list-picker/list-picker.d.ts", - "./ui/list-picker/list-picker.ios.ts", - "./ui/list-view/list-view-common.ts", - "./ui/list-view/list-view.android.ts", - "./ui/list-view/list-view.d.ts", - "./ui/list-view/list-view.ios.ts", - "./ui/page/page-common.ts", - "./ui/page/page.android.ts", - "./ui/page/page.d.ts", - "./ui/page/page.ios.ts", - "./ui/placeholder/placeholder-common.ts", - "./ui/placeholder/placeholder.android.ts", - "./ui/placeholder/placeholder.d.ts", - "./ui/placeholder/placeholder.ios.ts", - "./ui/progress/progress-common.ts", - "./ui/progress/progress.android.ts", - "./ui/progress/progress.d.ts", - "./ui/progress/progress.ios.ts", - "./ui/scroll-view/scroll-view-common.ts", - "./ui/scroll-view/scroll-view.android.ts", - "./ui/scroll-view/scroll-view.d.ts", - "./ui/scroll-view/scroll-view.ios.ts", - "./ui/search-bar/search-bar-common.ts", - "./ui/search-bar/search-bar.android.ts", - "./ui/search-bar/search-bar.d.ts", - "./ui/search-bar/search-bar.ios.ts", - "./ui/segmented-bar/segmented-bar-common.ts", - "./ui/segmented-bar/segmented-bar.android.ts", - "./ui/segmented-bar/segmented-bar.d.ts", - "./ui/segmented-bar/segmented-bar.ios.ts", - "./ui/slide-out/slide-out-common.ts", - "./ui/slide-out/slide-out.android.ts", - "./ui/slide-out/slide-out.d.ts", - "./ui/slide-out/slide-out.ios.ts", - "./ui/slider/slider-common.ts", - "./ui/slider/slider.android.ts", - "./ui/slider/slider.d.ts", - "./ui/slider/slider.ios.ts", - "./ui/styling/converters.ts", - "./ui/styling/css-selector.d.ts", - "./ui/styling/css-selector.ts", - "./ui/styling/style-property.d.ts", - "./ui/styling/style-property.ts", - "./ui/styling/style-scope.ts", - "./ui/styling/style.ts", - "./ui/styling/stylers-common.ts", - "./ui/styling/stylers.android.ts", - "./ui/styling/stylers.d.ts", - "./ui/styling/stylers.ios.ts", - "./ui/styling/styling.d.ts", - "./ui/styling/styling.ts", - "./ui/styling/visual-state-constants.d.ts", - "./ui/styling/visual-state-constants.ts", - "./ui/styling/visual-state.ts", - "./ui/switch/switch-common.ts", - "./ui/switch/switch.android.ts", - "./ui/switch/switch.d.ts", - "./ui/switch/switch.ios.ts", - "./ui/tab-view/tab-view-common.ts", - "./ui/tab-view/tab-view.android.ts", - "./ui/tab-view/tab-view.d.ts", - "./ui/tab-view/tab-view.ios.ts", - "./ui/text-base/text-base.d.ts", - "./ui/text-base/text-base.ts", - "./ui/text-field/text-field-common.ts", - "./ui/text-field/text-field.android.ts", - "./ui/text-field/text-field.d.ts", - "./ui/text-field/text-field.ios.ts", - "./ui/text-view/text-view-common.ts", - "./ui/text-view/text-view.android.ts", - "./ui/text-view/text-view.d.ts", - "./ui/text-view/text-view.ios.ts", - "./ui/time-picker/time-picker-common.ts", - "./ui/time-picker/time-picker.android.ts", - "./ui/time-picker/time-picker.d.ts", - "./ui/time-picker/time-picker.ios.ts", - "./ui/tool-bar/tool-bar-common.ts", - "./ui/tool-bar/tool-bar.android.ts", - "./ui/tool-bar/tool-bar.d.ts", - "./ui/tool-bar/tool-bar.ios.ts", - "./ui/web-view/web-view-common.ts", - "./ui/web-view/web-view.android.ts", - "./ui/web-view/web-view.d.ts", - "./ui/web-view/web-view.ios.ts", - "./utils/android_constants.ts", - "./utils/module-merge.ts", - "./utils/number-utils.ts", - "./utils/types.d.ts", - "./utils/types.ts", - "./utils/utils-common.ts", - "./utils/utils.android.ts", - "./utils/utils.d.ts", - "./utils/utils.ios.ts", - "./xml/xml.d.ts", - "./xml/xml.ts" + "android17.d.ts", + "application-settings/application-settings-common.ts", + "application-settings/application-settings.android.ts", + "application-settings/application-settings.d.ts", + "application-settings/application-settings.ios.ts", + "application/application-common.ts", + "application/application.android.ts", + "application/application.d.ts", + "application/application.ios.ts", + "apps/absolute-layout-demo/app.ts", + "apps/absolute-layout-demo/mainPage.ts", + "apps/action-bar-demo/app.ts", + "apps/action-bar-demo/main-page.ts", + "apps/action-bar-demo/pages/action-bar-hidden.ts", + "apps/action-bar-demo/pages/action-items-icon.ts", + "apps/action-bar-demo/pages/action-items-text.ts", + "apps/action-bar-demo/pages/center-view-segmented.ts", + "apps/action-bar-demo/pages/center-view-stack.ts", + "apps/action-bar-demo/pages/center-view.ts", + "apps/action-bar-demo/pages/data-binding.ts", + "apps/action-bar-demo/pages/navigation-button.ts", + "apps/action-bar-demo/pages/page-title-icon.ts", + "apps/animations/app.ts", + "apps/animations/main-page.ts", + "apps/animations/model.ts", + "apps/connectivity-demo/app.ts", + "apps/connectivity-demo/main-page.ts", + "apps/cuteness.io/app.ts", + "apps/cuteness.io/details-page.ts", + "apps/cuteness.io/main-page.ts", + "apps/cuteness.io/reddit-app-view-model.ts", + "apps/cuteness.io/reddit-item-view-model.ts", + "apps/cuteness.io/reddit-model.d.ts", + "apps/cuteness.unoptimized/app.ts", + "apps/cuteness.unoptimized/details-page.ts", + "apps/cuteness.unoptimized/main-page.ts", + "apps/cuteness.unoptimized/reddit-app-view-model.ts", + "apps/cuteness.unoptimized/reddit-item-view-model.ts", + "apps/cuteness.unoptimized/reddit-model.d.ts", + "apps/editable-text-demo/app.ts", + "apps/editable-text-demo/main-page.ts", + "apps/editable-text-demo/model.ts", + "apps/gallery-app/app.ts", + "apps/gallery-app/main-page.ts", + "apps/gallery-app/views/dialogs.ts", + "apps/gallery-app/views/list-picker.ts", + "apps/gallery-app/views/list-view.ts", + "apps/gallery-app/views/repeater.ts", + "apps/list-view-demo/app.ts", + "apps/list-view-demo/main-page.ts", + "apps/modal-views-demo/app.ts", + "apps/modal-views-demo/login-page.ts", + "apps/modal-views-demo/main-page.ts", + "apps/notifications-demo/app.ts", + "apps/notifications-demo/main-page.ts", + "apps/orientation-demo/app.ts", + "apps/orientation-demo/main-page.ts", + "apps/paylocity/app.ts", + "apps/paylocity/login.ts", + "apps/paylocity/news.ts", + "apps/perf-tests/ApplicationLoadTimeAndFPS/app.ts", + "apps/perf-tests/ApplicationLoadTimeAndFPS/mainPage.ts", + "apps/perf-tests/ApplicationSize/app.ts", + "apps/perf-tests/ApplicationSize/mainPage.ts", + "apps/perf-tests/common.d.ts", + "apps/perf-tests/common.ts", + "apps/perf-tests/ComplexObjectGraphMemoryTest/app.ts", + "apps/perf-tests/ComplexObjectGraphMemoryTest/mainPage.ts", + "apps/perf-tests/ControlCreationSpeedTest/app.ts", + "apps/perf-tests/ControlCreationSpeedTest/mainPage.ts", + "apps/perf-tests/controls-page.d.ts", + "apps/perf-tests/controls-page.ts", + "apps/perf-tests/LargeObjectArrayMemoryLeakTest/app.ts", + "apps/perf-tests/LargeObjectArrayMemoryLeakTest/mainPage.ts", + "apps/perf-tests/LargeObjectArrayMemoryLeakTest/native-calls-wrapper.android.ts", + "apps/perf-tests/LargeObjectArrayMemoryLeakTest/native-calls-wrapper.d.ts", + "apps/perf-tests/LargeObjectArrayMemoryLeakTest/native-calls-wrapper.ios.ts", + "apps/perf-tests/LargeObjectArrayMemoryTest/app.ts", + "apps/perf-tests/LargeObjectArrayMemoryTest/mainPage.ts", + "apps/perf-tests/nav-page.d.ts", + "apps/perf-tests/nav-page.ts", + "apps/perf-tests/NavigationMemoryLeakTest/app.ts", + "apps/perf-tests/NavigationMemoryLeakTest/mainPage.ts", + "apps/perf-tests/NavigationTest/app.ts", + "apps/perf-tests/NavigationTest/details-page.ts", + "apps/perf-tests/NavigationTest/master-page.ts", + "apps/perf-tests/NavigationTest/page1.ts", + "apps/perf-tests/NavigationTest/page2.ts", + "apps/perf-tests/SingleUIObjectMemoryLeakTest/app.ts", + "apps/perf-tests/SingleUIObjectMemoryLeakTest/mainPage.ts", + "apps/perf-tests/SpeedTests/app.ts", + "apps/perf-tests/SpeedTests/mainPage.ts", + "apps/perf-tests/SpeedTests/tests-native.android.ts", + "apps/perf-tests/SpeedTests/tests-native.d.ts", + "apps/perf-tests/SpeedTests/tests-native.ios.ts", + "apps/perf-tests/SpeedTests/tests.d.ts", + "apps/perf-tests/SpeedTests/tests.ts", + "apps/pickers-demo/app.ts", + "apps/pickers-demo/main-page.ts", + "apps/pickers-demo/model.ts", + "apps/placeholder-demo/app.ts", + "apps/placeholder-demo/main-page.android.ts", + "apps/placeholder-demo/main-page.ios.ts", + "apps/tab-view-demo/app.ts", + "apps/tab-view-demo/mainPage.ts", + "apps/template-blank/app.ts", + "apps/template-blank/main-page.ts", + "apps/template-hello-world/app.ts", + "apps/template-hello-world/main-page.ts", + "apps/template-hello-world/main-view-model.ts", + "apps/template-master-detail/app.ts", + "apps/template-master-detail/details-page.ts", + "apps/template-master-detail/main-page.ts", + "apps/template-master-detail/main-view-model.ts", + "apps/template-settings/app.ts", + "apps/template-settings/main-page.ts", + "apps/template-settings/view-model.ts", + "apps/template-tab-navigation/app.ts", + "apps/template-tab-navigation/main-page.ts", + "apps/tests/app/app.ts", + "apps/tests/app/location-example.ts", + "apps/tests/app/mainPage.ts", + "apps/tests/app/pageNavigation.ts", + "apps/tests/app/style_props.ts", + "apps/tests/app/testPage.ts", + "apps/tests/app/testRunnerPage.ts", + "apps/tests/application-settings-tests.ts", + "apps/tests/application-tests-common.ts", + "apps/tests/application-tests.android.ts", + "apps/tests/application-tests.ios.ts", + "apps/tests/camera-tests.ts", + "apps/tests/color-tests.ts", + "apps/tests/connectivity-tests.ts", + "apps/tests/console-tests.ts", + "apps/tests/fetch-tests.ts", + "apps/tests/file-name-resolver-tests/file-name-resolver-tests.ts", + "apps/tests/file-system-access-tests/file-system-access-tests.ts", + "apps/tests/file-system-tests.ts", + "apps/tests/fps-meter-tests.ts", + "apps/tests/frame-tests.ts", + "apps/tests/gestures-tests.ts", + "apps/tests/http-tests.ts", + "apps/tests/image-source-tests.ts", + "apps/tests/layouts/absolute-layout-tests.ts", + "apps/tests/layouts/dock-layout-tests.ts", + "apps/tests/layouts/grid-layout-tests.ts", + "apps/tests/layouts/layout-helper.android.ts", + "apps/tests/layouts/layout-helper.d.ts", + "apps/tests/layouts/layout-helper.ios.ts", + "apps/tests/layouts/stack-layout-tests.ts", + "apps/tests/layouts/wrap-layout-tests.ts", + "apps/tests/location-tests.ts", + "apps/tests/navigation-tests.ts", + "apps/tests/observable-array-tests.ts", + "apps/tests/observable-tests.ts", + "apps/tests/pages/app.ts", + "apps/tests/pages/background-test.ts", + "apps/tests/pages/file-load-test.ts", + "apps/tests/pages/fonts-test.ts", + "apps/tests/pages/navigation/pageA-new-activity.ts", + "apps/tests/pages/navigation/pageA.ts", + "apps/tests/pages/navigation/pageB-new-activity.ts", + "apps/tests/pages/navigation/pageB.ts", + "apps/tests/pages/navigation/pageC-new-activity.ts", + "apps/tests/pages/navigation/pageC.ts", + "apps/tests/pages/page10.ts", + "apps/tests/pages/page11.ts", + "apps/tests/pages/page12.ts", + "apps/tests/pages/page13.ts", + "apps/tests/pages/page15.ts", + "apps/tests/pages/page16.ts", + "apps/tests/pages/page17.ts", + "apps/tests/pages/page18.ts", + "apps/tests/pages/page19.ts", + "apps/tests/pages/page20.ts", + "apps/tests/pages/page5.ts", + "apps/tests/pages/page6.ts", + "apps/tests/pages/page7.ts", + "apps/tests/pages/page8.ts", + "apps/tests/pages/page9.ts", + "apps/tests/pages/performance-test/start.ts", + "apps/tests/pages/performance-test/test-big.ts", + "apps/tests/pages/performance-test/test-small.ts", + "apps/tests/pages/property-bindings.ts", + "apps/tests/pages/sandbox-project.ts", + "apps/tests/pages/tab-view.ts", + "apps/tests/platform-tests.ts", + "apps/tests/styling/app.ts", + "apps/tests/styling/mainPage.ts", + "apps/tests/testRunner.ts", + "apps/tests/text/formatted-string-tests.ts", + "apps/tests/timer-tests.ts", + "apps/tests/TKUnit.ts", + "apps/tests/trace-tests.ts", + "apps/tests/ui-test.ts", + "apps/tests/ui/action-bar/action-bar-tests-common.ts", + "apps/tests/ui/action-bar/action-bar-tests.android.ts", + "apps/tests/ui/action-bar/action-bar-tests.ios.ts", + "apps/tests/ui/action-bar/ActionBar_NumberAsText.ts", + "apps/tests/ui/activity-indicator/activity-indicator-tests.ts", + "apps/tests/ui/animation/animation-tests.ts", + "apps/tests/ui/bindable-tests.ts", + "apps/tests/ui/binding-expressions-tests.ts", + "apps/tests/ui/bindingContext_testPage.ts", + "apps/tests/ui/bindingContext_testPage1.ts", + "apps/tests/ui/bindingContext_testPage2.ts", + "apps/tests/ui/border/border-tests.ts", + "apps/tests/ui/button/button-tests-native.android.ts", + "apps/tests/ui/button/button-tests-native.d.ts", + "apps/tests/ui/button/button-tests-native.ios.ts", + "apps/tests/ui/button/button-tests.ts", + "apps/tests/ui/date-picker/date-picker-tests-native.android.ts", + "apps/tests/ui/date-picker/date-picker-tests-native.d.ts", + "apps/tests/ui/date-picker/date-picker-tests-native.ios.ts", + "apps/tests/ui/date-picker/date-picker-tests.ts", + "apps/tests/ui/dependency-observable-tests.ts", + "apps/tests/ui/dialogs/dialog-tests.ts", + "apps/tests/ui/helper.ts", + "apps/tests/ui/html-view/html-view-tests.ts", + "apps/tests/ui/image-cache/image-cache-tests.ts", + "apps/tests/ui/image/image-tests.ts", + "apps/tests/ui/label/label-tests-native.android.ts", + "apps/tests/ui/label/label-tests-native.d.ts", + "apps/tests/ui/label/label-tests-native.ios.ts", + "apps/tests/ui/label/label-tests.ts", + "apps/tests/ui/list-picker/list-picker-tests-native.android.ts", + "apps/tests/ui/list-picker/list-picker-tests-native.d.ts", + "apps/tests/ui/list-picker/list-picker-tests-native.ios.ts", + "apps/tests/ui/list-picker/list-picker-tests.ts", + "apps/tests/ui/list-view/list-view-tests.ts", + "apps/tests/ui/page/modal-page.ts", + "apps/tests/ui/page/page-tests-common.ts", + "apps/tests/ui/page/page-tests.android.ts", + "apps/tests/ui/page/page-tests.ios.ts", + "apps/tests/ui/page/page21.ts", + "apps/tests/ui/page/test-page-module-css.ts", + "apps/tests/ui/page/test-page-module.ts", + "apps/tests/ui/placeholder/placeholder-tests.ts", + "apps/tests/ui/progress/progress-tests.ts", + "apps/tests/ui/repeater/repeater-tests.ts", + "apps/tests/ui/repeater/repeaterItems-bindingToGestures.ts", + "apps/tests/ui/scroll-view/scroll-view-tests.ts", + "apps/tests/ui/search-bar/search-bar-tests-native.android.ts", + "apps/tests/ui/search-bar/search-bar-tests-native.d.ts", + "apps/tests/ui/search-bar/search-bar-tests-native.ios.ts", + "apps/tests/ui/search-bar/search-bar-tests.ts", + "apps/tests/ui/segmented-bar/segmented-bar-tests-native.android.ts", + "apps/tests/ui/segmented-bar/segmented-bar-tests-native.d.ts", + "apps/tests/ui/segmented-bar/segmented-bar-tests-native.ios.ts", + "apps/tests/ui/segmented-bar/segmented-bar-tests.ts", + "apps/tests/ui/slider/slider-tests.ts", + "apps/tests/ui/style/style-properties-tests.ts", + "apps/tests/ui/style/style-tests.ts", + "apps/tests/ui/style/value-source-tests.ts", + "apps/tests/ui/style/visual-state-tests.ts", + "apps/tests/ui/switch/switch-tests.ts", + "apps/tests/ui/tab-view/tab-view-navigation-tests.ts", + "apps/tests/ui/tab-view/tab-view-tests-native.android.ts", + "apps/tests/ui/tab-view/tab-view-tests-native.d.ts", + "apps/tests/ui/tab-view/tab-view-tests-native.ios.ts", + "apps/tests/ui/tab-view/tab-view-tests.ts", + "apps/tests/ui/test-pages/bindingExpressions_arrayAccess_testPage.ts", + "apps/tests/ui/test-pages/bindingExpressions_binaryOperators_testPage.ts", + "apps/tests/ui/test-pages/bindingExpressions_comparisonOperators_testPage.ts", + "apps/tests/ui/test-pages/bindingExpressions_groupingParenthesis_testPage.ts", + "apps/tests/ui/test-pages/bindingExpressions_logicalComparisonOperators_testPage.ts", + "apps/tests/ui/test-pages/bindingExpressions_logicalOperators_testPage.ts", + "apps/tests/ui/test-pages/bindingExpressions_ternaryOperator_testPage.ts", + "apps/tests/ui/test-pages/bindingExpressions_unaryOperators_testPage.ts", + "apps/tests/ui/text-field/text-field-tests-native.android.ts", + "apps/tests/ui/text-field/text-field-tests-native.d.ts", + "apps/tests/ui/text-field/text-field-tests-native.ios.ts", + "apps/tests/ui/text-field/text-field-tests.ts", + "apps/tests/ui/text-view/text-view-tests-native.android.ts", + "apps/tests/ui/text-view/text-view-tests-native.d.ts", + "apps/tests/ui/text-view/text-view-tests-native.ios.ts", + "apps/tests/ui/text-view/text-view-tests.ts", + "apps/tests/ui/time-picker/time-picker-tests-native.android.ts", + "apps/tests/ui/time-picker/time-picker-tests-native.d.ts", + "apps/tests/ui/time-picker/time-picker-tests-native.ios.ts", + "apps/tests/ui/time-picker/time-picker-tests.ts", + "apps/tests/ui/view/view-tests-common.ts", + "apps/tests/ui/view/view-tests.android.ts", + "apps/tests/ui/view/view-tests.d.ts", + "apps/tests/ui/view/view-tests.ios.ts", + "apps/tests/ui/web-view/web-view-tests.ts", + "apps/tests/virtual-array-tests.ts", + "apps/tests/weak-event-listener-tests.ts", + "apps/tests/xhr-tests.ts", + "apps/tests/xml-declaration/app.ts", + "apps/tests/xml-declaration/custom-code-file.ts", + "apps/tests/xml-declaration/inherited-base-page.ts", + "apps/tests/xml-declaration/inherited-page.ts", + "apps/tests/xml-declaration/mainPage.ts", + "apps/tests/xml-declaration/mymodule/MyControl.ts", + "apps/tests/xml-declaration/mymodulewithxml/MyControl.ts", + "apps/tests/xml-declaration/xml-declaration-tests.ts", + "apps/tests/xml-parser-tests/xml-parser-tests.ts", + "apps/transforms/app.ts", + "apps/transforms/main-page.ts", + "apps/transforms/model.ts", + "apps/ui-tests-app/action-bar/all.ts", + "apps/ui-tests-app/action-bar/background.ts", + "apps/ui-tests-app/action-bar/clean.ts", + "apps/ui-tests-app/action-bar/color.ts", + "apps/ui-tests-app/app.ts", + "apps/ui-tests-app/bindings/basics.ts", + "apps/ui-tests-app/bindings/xmlbasics.ts", + "apps/ui-tests-app/css/background.ts", + "apps/ui-tests-app/css/styles.ts", + "apps/ui-tests-app/dialogs/dialogs.ts", + "apps/ui-tests-app/dialogs/view-model.ts", + "apps/ui-tests-app/font/button.ts", + "apps/ui-tests-app/font/label.ts", + "apps/ui-tests-app/font/text-field.ts", + "apps/ui-tests-app/font/text-view.ts", + "apps/ui-tests-app/html-view/html-view.ts", + "apps/ui-tests-app/layouts/absolute.ts", + "apps/ui-tests-app/layouts/dock.ts", + "apps/ui-tests-app/layouts/grid.ts", + "apps/ui-tests-app/layouts/myview.ts", + "apps/ui-tests-app/layouts/stack.ts", + "apps/ui-tests-app/layouts/wrap.ts", + "apps/ui-tests-app/mainPage.ts", + "apps/ui-tests-app/modal-view/login-page.ts", + "apps/ui-tests-app/modal-view/modal-view.ts", + "apps/ui-tests-app/nordic/nordic.ts", + "apps/ui-tests-app/pages/console.ts", + "apps/ui-tests-app/pages/gestures.ts", + "apps/ui-tests-app/pages/handlers.ts", + "apps/ui-tests-app/pages/i61.ts", + "apps/ui-tests-app/pages/i73.ts", + "apps/ui-tests-app/pages/listview_binding.ts", + "apps/ui-tests-app/segmented-bar/all.ts", + "apps/ui-tests-app/segmented-bar/clean.ts", + "apps/ui-tests-app/text-field/text-field.ts", + "apps/ui-tests-app/web-view/web-view.ts", + "apps/web-view-demo/app.ts", + "apps/web-view-demo/main-page.ts", + "apps/web-view-demo/model.ts", + "apps/wrap-layout-demo/app.ts", + "apps/wrap-layout-demo/mainPage.ts", + "apps/xml-demo/app.ts", + "apps/xml-demo/mainPage.ts", + "camera/camera-common.ts", + "camera/camera.android.ts", + "camera/camera.d.ts", + "camera/camera.ios.ts", + "color/color-common.ts", + "color/color.android.ts", + "color/color.d.ts", + "color/color.ios.ts", + "color/known-colors.d.ts", + "color/known-colors.ts", + "connectivity/connectivity-common.ts", + "connectivity/connectivity.android.ts", + "connectivity/connectivity.d.ts", + "connectivity/connectivity.ios.ts", + "console/console.d.ts", + "console/console.ts", + "css-value/reworkcss-value.d.ts", + "css/reworkcss.d.ts", + "data/observable-array/observable-array.d.ts", + "data/observable-array/observable-array.ts", + "data/observable/observable.d.ts", + "data/observable/observable.ts", + "data/virtual-array/virtual-array.d.ts", + "data/virtual-array/virtual-array.ts", + "declarations.android.d.ts", + "declarations.d.ts", + "declarations.ios.d.ts", + "es-collections.d.ts", + "es6-promise.d.ts", + "es6.d.ts", + "file-system/file-name-resolver.d.ts", + "file-system/file-name-resolver.ts", + "file-system/file-system-access.android.ts", + "file-system/file-system-access.d.ts", + "file-system/file-system-access.ios.ts", + "file-system/file-system.d.ts", + "file-system/file-system.ts", + "fps-meter/fps-meter.d.ts", + "fps-meter/fps-meter.ts", + "fps-meter/fps-native.android.ts", + "fps-meter/fps-native.d.ts", + "fps-meter/fps-native.ios.ts", + "globals/globals.ts", + "http/http-request.android.ts", + "http/http-request.d.ts", + "http/http-request.ios.ts", + "http/http.d.ts", + "http/http.ts", + "image-source/image-source-common.ts", + "image-source/image-source.android.ts", + "image-source/image-source.d.ts", + "image-source/image-source.ios.ts", + "ios.d.ts", + "js-libs/easysax/easysax.d.ts", + "js-libs/esprima/esprima.d.ts", + "js-libs/polymer-expressions/polymer-expressions.d.ts", + "location/location-common.ts", + "location/location.android.ts", + "location/location.d.ts", + "location/location.ios.ts", + "node-tests/definitions/chai.d.ts", + "node-tests/definitions/mocha.d.ts", + "node-tests/test-angular-xml.ts", + "node-tests/test-xml.ts", + "org.nativescript.widgets.d.ts", + "platform/platform.android.ts", + "platform/platform.d.ts", + "platform/platform.ios.ts", + "text/formatted-string-common.ts", + "text/formatted-string.android.ts", + "text/formatted-string.d.ts", + "text/formatted-string.ios.ts", + "text/span-common.ts", + "text/span.android.ts", + "text/span.d.ts", + "text/span.ios.ts", + "text/text.android.ts", + "text/text.d.ts", + "text/text.ios.ts", + "timer/timer.android.ts", + "timer/timer.d.ts", + "timer/timer.ios.ts", + "trace/trace.d.ts", + "trace/trace.ts", + "ui/action-bar/action-bar-common.ts", + "ui/action-bar/action-bar.android.ts", + "ui/action-bar/action-bar.d.ts", + "ui/action-bar/action-bar.ios.ts", + "ui/activity-indicator/activity-indicator-common.ts", + "ui/activity-indicator/activity-indicator.android.ts", + "ui/activity-indicator/activity-indicator.d.ts", + "ui/activity-indicator/activity-indicator.ios.ts", + "ui/animation/animation-common.ts", + "ui/animation/animation.android.ts", + "ui/animation/animation.d.ts", + "ui/animation/animation.ios.ts", + "ui/border/border.d.ts", + "ui/border/border.ts", + "ui/builder/binding-builder.d.ts", + "ui/builder/binding-builder.ts", + "ui/builder/builder.d.ts", + "ui/builder/builder.ts", + "ui/builder/component-builder.d.ts", + "ui/builder/component-builder.ts", + "ui/builder/special-properties.d.ts", + "ui/builder/special-properties.ts", + "ui/builder/template-builder.d.ts", + "ui/builder/template-builder.ts", + "ui/button/button-common.ts", + "ui/button/button.android.ts", + "ui/button/button.d.ts", + "ui/button/button.ios.ts", + "ui/content-view/content-view.d.ts", + "ui/content-view/content-view.ts", + "ui/core/bindable.d.ts", + "ui/core/bindable.ts", + "ui/core/control-state-change.d.ts", + "ui/core/control-state-change.ios.ts", + "ui/core/dependency-observable.d.ts", + "ui/core/dependency-observable.ts", + "ui/core/proxy.d.ts", + "ui/core/proxy.ts", + "ui/core/view-common.ts", + "ui/core/view.android.ts", + "ui/core/view.d.ts", + "ui/core/view.ios.ts", + "ui/core/weak-event-listener.d.ts", + "ui/core/weak-event-listener.ts", + "ui/date-picker/date-picker-common.ts", + "ui/date-picker/date-picker.android.ts", + "ui/date-picker/date-picker.d.ts", + "ui/date-picker/date-picker.ios.ts", + "ui/dialogs/dialogs-common.ts", + "ui/dialogs/dialogs.android.ts", + "ui/dialogs/dialogs.d.ts", + "ui/dialogs/dialogs.ios.ts", + "ui/editable-text-base/editable-text-base-common.ts", + "ui/editable-text-base/editable-text-base.android.ts", + "ui/editable-text-base/editable-text-base.d.ts", + "ui/editable-text-base/editable-text-base.ios.ts", + "ui/enums/enums.d.ts", + "ui/enums/enums.ts", + "ui/frame/frame-common.ts", + "ui/frame/frame.android.ts", + "ui/frame/frame.d.ts", + "ui/frame/frame.ios.ts", + "ui/gestures/gestures-common.ts", + "ui/gestures/gestures.android.ts", + "ui/gestures/gestures.d.ts", + "ui/gestures/gestures.ios.ts", + "ui/html-view/html-view-common.ts", + "ui/html-view/html-view.android.ts", + "ui/html-view/html-view.d.ts", + "ui/html-view/html-view.ios.ts", + "ui/image-cache/image-cache-common.ts", + "ui/image-cache/image-cache.android.ts", + "ui/image-cache/image-cache.d.ts", + "ui/image-cache/image-cache.ios.ts", + "ui/image/image-common.ts", + "ui/image/image.android.ts", + "ui/image/image.d.ts", + "ui/image/image.ios.ts", + "ui/label/label-common.ts", + "ui/label/label.android.ts", + "ui/label/label.d.ts", + "ui/label/label.ios.ts", + "ui/layouts/absolute-layout/absolute-layout-common.ts", + "ui/layouts/absolute-layout/absolute-layout.android.ts", + "ui/layouts/absolute-layout/absolute-layout.d.ts", + "ui/layouts/absolute-layout/absolute-layout.ios.ts", + "ui/layouts/dock-layout/dock-layout-common.ts", + "ui/layouts/dock-layout/dock-layout.android.ts", + "ui/layouts/dock-layout/dock-layout.d.ts", + "ui/layouts/dock-layout/dock-layout.ios.ts", + "ui/layouts/grid-layout/grid-layout-common.ts", + "ui/layouts/grid-layout/grid-layout.android.ts", + "ui/layouts/grid-layout/grid-layout.d.ts", + "ui/layouts/grid-layout/grid-layout.ios.ts", + "ui/layouts/layout-base.d.ts", + "ui/layouts/layout-base.ts", + "ui/layouts/layout.android.ts", + "ui/layouts/layout.d.ts", + "ui/layouts/layout.ios.ts", + "ui/layouts/stack-layout/stack-layout-common.ts", + "ui/layouts/stack-layout/stack-layout.android.ts", + "ui/layouts/stack-layout/stack-layout.d.ts", + "ui/layouts/stack-layout/stack-layout.ios.ts", + "ui/layouts/wrap-layout/wrap-layout-common.ts", + "ui/layouts/wrap-layout/wrap-layout.android.ts", + "ui/layouts/wrap-layout/wrap-layout.d.ts", + "ui/layouts/wrap-layout/wrap-layout.ios.ts", + "ui/list-picker/list-picker-common.ts", + "ui/list-picker/list-picker.android.ts", + "ui/list-picker/list-picker.d.ts", + "ui/list-picker/list-picker.ios.ts", + "ui/list-view/list-view-common.ts", + "ui/list-view/list-view.android.ts", + "ui/list-view/list-view.d.ts", + "ui/list-view/list-view.ios.ts", + "ui/page/page-common.ts", + "ui/page/page.android.ts", + "ui/page/page.d.ts", + "ui/page/page.ios.ts", + "ui/placeholder/placeholder-common.ts", + "ui/placeholder/placeholder.android.ts", + "ui/placeholder/placeholder.d.ts", + "ui/placeholder/placeholder.ios.ts", + "ui/progress/progress-common.ts", + "ui/progress/progress.android.ts", + "ui/progress/progress.d.ts", + "ui/progress/progress.ios.ts", + "ui/repeater/repeater.d.ts", + "ui/repeater/repeater.ts", + "ui/scroll-view/scroll-view-common.ts", + "ui/scroll-view/scroll-view.android.ts", + "ui/scroll-view/scroll-view.d.ts", + "ui/scroll-view/scroll-view.ios.ts", + "ui/search-bar/search-bar-common.ts", + "ui/search-bar/search-bar.android.ts", + "ui/search-bar/search-bar.d.ts", + "ui/search-bar/search-bar.ios.ts", + "ui/segmented-bar/segmented-bar-common.ts", + "ui/segmented-bar/segmented-bar.android.ts", + "ui/segmented-bar/segmented-bar.d.ts", + "ui/segmented-bar/segmented-bar.ios.ts", + "ui/slider/slider-common.ts", + "ui/slider/slider.android.ts", + "ui/slider/slider.d.ts", + "ui/slider/slider.ios.ts", + "ui/styling/background-common.ts", + "ui/styling/background.android.d.ts", + "ui/styling/background.android.ts", + "ui/styling/background.d.ts", + "ui/styling/background.ios.ts", + "ui/styling/converters.ts", + "ui/styling/css-selector.d.ts", + "ui/styling/css-selector.ts", + "ui/styling/font-common.ts", + "ui/styling/font.android.ts", + "ui/styling/font.d.ts", + "ui/styling/font.ios.ts", + "ui/styling/style-property.d.ts", + "ui/styling/style-property.ts", + "ui/styling/style-scope.d.ts", + "ui/styling/style-scope.ts", + "ui/styling/style.d.ts", + "ui/styling/style.ts", + "ui/styling/stylers-common.ts", + "ui/styling/stylers.android.ts", + "ui/styling/stylers.d.ts", + "ui/styling/stylers.ios.ts", + "ui/styling/styling.d.ts", + "ui/styling/styling.ts", + "ui/styling/visual-state-constants.d.ts", + "ui/styling/visual-state-constants.ts", + "ui/styling/visual-state.ts", + "ui/switch/switch-common.ts", + "ui/switch/switch.android.ts", + "ui/switch/switch.d.ts", + "ui/switch/switch.ios.ts", + "ui/tab-view/tab-view-common.ts", + "ui/tab-view/tab-view.android.ts", + "ui/tab-view/tab-view.d.ts", + "ui/tab-view/tab-view.ios.ts", + "ui/text-base/text-base.d.ts", + "ui/text-base/text-base.ts", + "ui/text-field/text-field-common.ts", + "ui/text-field/text-field.android.ts", + "ui/text-field/text-field.d.ts", + "ui/text-field/text-field.ios.ts", + "ui/text-view/text-view-common.ts", + "ui/text-view/text-view.android.ts", + "ui/text-view/text-view.d.ts", + "ui/text-view/text-view.ios.ts", + "ui/time-picker/time-picker-common.ts", + "ui/time-picker/time-picker.android.ts", + "ui/time-picker/time-picker.d.ts", + "ui/time-picker/time-picker.ios.ts", + "ui/ui.d.ts", + "ui/ui.ts", + "ui/utils.d.ts", + "ui/utils.ios.ts", + "ui/web-view/web-view-common.ts", + "ui/web-view/web-view.android.ts", + "ui/web-view/web-view.d.ts", + "ui/web-view/web-view.ios.ts", + "utils/module-merge.ts", + "utils/number-utils.ts", + "utils/types.d.ts", + "utils/types.ts", + "utils/utils-common.ts", + "utils/utils.android.ts", + "utils/utils.d.ts", + "utils/utils.ios.ts", + "weakmap.d.ts", + "xhr/xhr.ts", + "xml/xml.d.ts", + "xml/xml.ts" ] }