├── .gitattributes ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── .vscode ├── launch.json └── settings.json ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── custom.TypeScript.targets ├── customcompiler ├── lib.core.d.ts ├── lib.d.ts ├── lib.dom.d.ts ├── lib.scripthost.d.ts ├── lib.webworker.d.ts ├── tsc ├── tsc.js └── typescriptServices.js ├── defs ├── detect-indent │ └── detect-indent.d.ts ├── detect-newline │ └── detect-newline.d.ts ├── es6-promise │ └── es6-promise.d.ts ├── gruntjs │ └── gruntjs.d.ts ├── lodash │ └── lodash.d.ts ├── node │ └── node.d.ts ├── nodeunit │ └── nodeunit.d.ts ├── semver │ └── semver.d.ts └── tsd.d.ts ├── docs ├── DetailedGettingStartedInstructions.md ├── DisableVisualStudioBuild.md ├── amdLoader.md ├── fast.md └── html2ts.md ├── grunt-ts.csproj ├── grunt-ts.sln ├── package.json ├── sample ├── Gruntfile.js └── commonjs │ └── Gruntfile.js ├── tasks-internal ├── modules │ ├── amdLoader.js │ ├── amdLoader.ts │ ├── cacheUtils.js │ ├── cacheUtils.ts │ ├── compile.js │ ├── compile.ts │ ├── defaults.js │ ├── defaults.ts │ ├── html2ts.js │ ├── html2ts.ts │ ├── interfaces.d.ts │ ├── optionsResolver.js │ ├── optionsResolver.ts │ ├── reference.js │ ├── reference.ts │ ├── templateCache.js │ ├── templateCache.ts │ ├── transformers.js │ ├── transformers.ts │ ├── tsconfig.js │ ├── tsconfig.ts │ ├── utils.js │ ├── utils.ts │ ├── visualStudioOptionsResolver.js │ └── visualStudioOptionsResolver.ts ├── scratch.js ├── scratch.ts ├── ts-internal.js └── ts.ts ├── tasks ├── modules │ ├── amdLoader.js │ ├── amdLoader.ts │ ├── cacheUtils.js │ ├── cacheUtils.ts │ ├── compile.js │ ├── compile.ts │ ├── defaults.js │ ├── defaults.ts │ ├── html2ts.js │ ├── html2ts.ts │ ├── interfaces.d.ts │ ├── optionsResolver.js │ ├── optionsResolver.ts │ ├── reference.js │ ├── reference.ts │ ├── templateCache.js │ ├── templateCache.ts │ ├── transformers.js │ ├── transformers.ts │ ├── tsconfig.js │ ├── tsconfig.ts │ ├── utils.js │ ├── utils.ts │ ├── visualStudioOptionsResolver.js │ └── visualStudioOptionsResolver.ts ├── scratch.ts ├── ts.js └── ts.ts ├── test ├── abtest │ ├── a.ts │ ├── b.ts │ ├── c.ts │ └── reference.ts ├── allowJs │ ├── allowJsConsumer.ts │ └── allowJsLibrary.js ├── amdloader │ ├── index.html │ └── ts │ │ ├── app │ │ ├── app.ts │ │ ├── classa.ts │ │ ├── deep │ │ │ ├── classb.ts │ │ │ ├── classc.ts │ │ │ └── deeper │ │ │ │ └── classd.ts │ │ ├── partials │ │ │ └── templates.a.html │ │ └── reference.ts │ │ └── test │ │ ├── classt.ts │ │ ├── deep │ │ ├── classu.ts │ │ ├── classv.ts │ │ └── deeper │ │ │ └── classw.ts │ │ ├── extendedAppCode.ts │ │ ├── partials │ │ └── templates.b.html │ │ ├── reference.ts │ │ └── test.ts ├── amdtest │ ├── a.ts │ ├── b.ts │ └── c.ts ├── baseDirOption │ ├── baseDirNotSpecified │ │ └── foo │ │ │ └── bar.ts │ └── baseDirSpecified │ │ └── foo │ │ └── bar.ts ├── bothcomments │ └── a.ts ├── commandLineAssertions.js ├── commandLineAssertions.ts ├── compilerTests.js ├── compilerTests.ts ├── customcompiler │ └── ts │ │ └── foo.ts ├── definitelytypedtest │ ├── d.ts │ │ └── DefinitelyTyped │ │ │ └── async │ │ │ ├── async.d.key │ │ │ └── async.d.ts │ └── test.ts ├── es6 │ └── stringTemplate.ts ├── expected │ ├── abtest │ │ ├── out.js │ │ ├── out.js.map │ │ └── reference.ts │ ├── allowJs │ │ └── result.js │ ├── amdloader │ │ └── js │ │ │ └── app │ │ │ ├── loader.bin.js │ │ │ └── loader.js │ ├── customcompiler │ │ └── js │ │ │ └── foo.js │ ├── es6 │ │ ├── es5 │ │ │ └── stringTemplate.js │ │ └── es6 │ │ │ └── stringTemplate.js │ ├── fail │ │ └── ts │ │ │ └── deep │ │ │ └── work.ts │ ├── files_ObjectFormat │ │ ├── a.js │ │ └── b.js │ ├── htmlExternal │ │ └── html.external.html.ts │ ├── htmlSnakeModuleName │ │ └── out.js │ ├── htmlTemplate │ │ └── out.js │ ├── nestedSources │ │ └── zoo.js │ ├── noEmitOnError │ │ └── testNoEmitOnError_false.js │ ├── out with spaces │ │ └── zoo.js │ ├── preserveConstEnums │ │ ├── test_preserveConstEnums_false.js │ │ └── test_preserveConstEnums_true.js │ ├── references-transform │ │ └── references-transform.js │ ├── simple │ │ └── js │ │ │ ├── zoo.d.ts │ │ │ └── zoo.js │ ├── simple_with_rootDir │ │ └── js │ │ │ └── ts │ │ │ └── zoo.js │ ├── suppressImplicitAnyIndexErrors │ │ └── test_suppressImplicitAnyIndexError_true.js │ ├── templatecache │ │ └── js │ │ │ └── templateCache.js │ ├── transform │ │ ├── js │ │ │ ├── bar │ │ │ │ └── c │ │ │ │ │ ├── c1.js │ │ │ │ │ └── c2.js │ │ │ ├── foo │ │ │ │ ├── a │ │ │ │ │ ├── A1.js │ │ │ │ │ ├── A2.js │ │ │ │ │ └── index.js │ │ │ │ ├── b │ │ │ │ │ ├── b1.js │ │ │ │ │ └── b2.js │ │ │ │ └── index.js │ │ │ └── rootLevel.js │ │ └── ts │ │ │ ├── bar │ │ │ └── c │ │ │ │ ├── c1.ts │ │ │ │ └── c2.ts │ │ │ ├── foo │ │ │ ├── a │ │ │ │ ├── A1.ts │ │ │ │ ├── A2.ts │ │ │ │ └── index.ts │ │ │ ├── b │ │ │ │ ├── b1.ts │ │ │ │ └── b2.ts │ │ │ └── index.ts │ │ │ └── rootLevel.ts │ ├── varreplacedtest │ │ ├── grunt-ts-test.js │ │ └── grunt-ts-test.js.map │ └── vsproj │ │ └── ignoreSettings │ │ └── vsprojtest1.js ├── fail │ └── ts │ │ └── deep │ │ ├── fail.ts │ │ └── work.ts ├── failontypeerror │ └── ts │ │ └── fail.ts ├── files_testFailedCompilation │ ├── a │ │ └── syntaxError.ts │ └── b │ │ └── a.ts ├── html │ └── src │ │ ├── bar.ts │ │ ├── foo.ts │ │ └── test.tpl.html ├── htmlExternal │ └── html.external.html ├── htmlOutDir │ ├── reference.ts │ └── src │ │ ├── bar.ts │ │ ├── foo.ts │ │ └── test.tpl.html ├── htmlOutDirFlat │ ├── reference.ts │ └── src │ │ ├── bar.ts │ │ ├── foo.ts │ │ └── test.tpl.html ├── htmlSnakeModuleName │ ├── reference.ts │ └── src │ │ ├── foo.ts │ │ └── snake-module-name.tpl.html ├── htmlTemplate │ ├── reference.ts │ └── src │ │ ├── advanced.$$template.name.tpl.html │ │ └── foo.ts ├── htmlTemplateGlob │ ├── doNotTranspile.html │ ├── othercompilation.ts │ └── test.html ├── issue_392 │ ├── app │ │ ├── 392-a.spec.ts │ │ └── 392-a.ts │ ├── issue_392-tsconfig.json │ └── typings │ │ └── 392-testtype.ts ├── issue_392_2 │ ├── app │ │ └── subfolder │ │ │ ├── test1.spec.ts │ │ │ └── test1.ts │ ├── compiled │ │ └── compiled │ │ │ └── shouldnotbefound.ts │ └── tsconfig.json ├── issue_397 │ └── src │ │ ├── app │ │ └── 397-a.ts │ │ ├── issue_397-tsconfig.json │ │ ├── other_typings │ │ └── 397-othertesttype.d.ts │ │ └── typings │ │ └── 397-testtype.d.ts ├── issue_426_baseUrl │ └── src │ │ ├── issue_426_1.tsconfig.json │ │ ├── issue_426_2.tsconfig.json │ │ └── issue_426_3.tsconfig.json ├── multifile │ ├── a │ │ ├── a.ts │ │ ├── b.ts │ │ ├── c.ts │ │ └── reference.ts │ └── b │ │ ├── a.ts │ │ ├── b.ts │ │ ├── c.ts │ │ └── reference.ts ├── noEmitOnError │ └── testNoEmitOnError.ts ├── nocompile │ ├── a.ts │ ├── b.ts │ ├── c.ts │ └── reference.ts ├── optionsResolverTests.js ├── optionsResolverTests.ts ├── outdirtest │ └── ts │ │ └── source.ts ├── preserveConstEnums │ └── test_preserveConstEnums.ts ├── referenceReplaced │ ├── referenced-grunt-ts.ts │ ├── referencing1.ts │ └── referencing2.ts ├── references-transform-library.d.ts ├── references-transform │ └── references-transform.ts ├── simple │ ├── js │ │ ├── .baseDir.d.ts │ │ └── zoo.d.ts │ └── ts │ │ └── zoo.ts ├── sourceroot │ └── src │ │ ├── a.ts │ │ ├── nested │ │ ├── b.html │ │ └── b.ts │ │ └── reference.ts ├── suppressImplicitAnyIndexErrors │ └── test_suppressImplicitAnyIndexError.ts ├── templatecache │ ├── index.html │ ├── js │ │ └── partials │ │ │ ├── test.html │ │ │ └── test2.html │ └── ts │ │ ├── app.ts │ │ ├── classa.ts │ │ ├── deep │ │ ├── classb.ts │ │ └── classc.ts │ │ └── reference.ts ├── test.js ├── test.ts ├── testHelpers.js ├── testHelpers.ts ├── transform │ └── ts │ │ ├── bar │ │ └── c │ │ │ ├── c1.ts │ │ │ └── c2.ts │ │ ├── foo │ │ ├── a │ │ │ ├── A1.ts │ │ │ ├── A2.ts │ │ │ └── index.ts │ │ ├── b │ │ │ ├── b1.ts │ │ │ └── b2.ts │ │ └── index.ts │ │ └── rootLevel.ts ├── tsconfig │ ├── files │ │ └── validtsconfig.ts │ └── otherFiles │ │ ├── other.ts │ │ ├── that.ts │ │ └── this.ts ├── tsconfig_artifact │ ├── blank_tsconfig.json │ ├── empty_object_literal_tsconfig.json │ ├── extends │ │ ├── configs │ │ │ └── base.json │ │ ├── tsconfig.json │ │ └── tsconfig.nostrictnull.json │ ├── four_spaces_indent_tsconfig.expected.json │ ├── four_spaces_indent_tsconfig.json │ ├── full_valid_tsconfig.json │ ├── invalid_tsconfig.json │ ├── mixed_indent_tsconfig.expected.json │ ├── mixed_indent_tsconfig.json │ ├── newlineConfigs │ │ ├── crlf_newline_tsconfig.expected.json.js │ │ ├── crlf_newline_tsconfig.expected.json.ts │ │ ├── crlf_newline_tsconfig.json.js │ │ ├── crlf_newline_tsconfig.json.ts │ │ ├── lf_newline_tsconfig.expected.json.js │ │ ├── lf_newline_tsconfig.expected.json.ts │ │ ├── lf_newline_tsconfig.json.js │ │ ├── lf_newline_tsconfig.json.ts │ │ ├── mixed_newline_tsconfig.expected.json.js │ │ ├── mixed_newline_tsconfig.expected.json.ts │ │ ├── mixed_newline_tsconfig.json.js │ │ └── mixed_newline_tsconfig.json.ts │ ├── simple_filesGlob_tsconfig.json │ ├── tab_indent_tsconfig.expected.json │ ├── tab_indent_tsconfig.json │ ├── test_exclude_tsconfig.json │ ├── test_include_tsconfig.json │ ├── test_include_wildcard.json │ ├── test_simple_tsconfig.json │ ├── test_simple_with_out.json │ ├── test_simple_with_outFile.json │ ├── three_spaces_indent_tsconfig.expected.json │ ├── three_spaces_indent_tsconfig.json │ └── tsconfig-grunt-ts.json ├── vsproj │ ├── ignoreFiles │ │ └── ignoreFiles_test.ts │ ├── testproject.csproj │ ├── vsprojtest1.ts │ └── vsprojtest2.ts ├── withemptymodule │ └── ts │ │ ├── Bar.ts │ │ ├── Foo.ts │ │ └── Main.ts ├── withwrongmodule │ └── ts │ │ ├── Foo.ts │ │ └── Main.ts └── work │ ├── inside │ ├── tada.ts │ ├── tada2.ts │ └── work3.ts │ ├── work.ts │ └── work2.ts ├── tsconfig.json ├── tsd.json └── tslint.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/README.md -------------------------------------------------------------------------------- /custom.TypeScript.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/custom.TypeScript.targets -------------------------------------------------------------------------------- /customcompiler/lib.core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/customcompiler/lib.core.d.ts -------------------------------------------------------------------------------- /customcompiler/lib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/customcompiler/lib.d.ts -------------------------------------------------------------------------------- /customcompiler/lib.dom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/customcompiler/lib.dom.d.ts -------------------------------------------------------------------------------- /customcompiler/lib.scripthost.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/customcompiler/lib.scripthost.d.ts -------------------------------------------------------------------------------- /customcompiler/lib.webworker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/customcompiler/lib.webworker.d.ts -------------------------------------------------------------------------------- /customcompiler/tsc: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('./tsc.js') 3 | -------------------------------------------------------------------------------- /customcompiler/tsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/customcompiler/tsc.js -------------------------------------------------------------------------------- /customcompiler/typescriptServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/customcompiler/typescriptServices.js -------------------------------------------------------------------------------- /defs/detect-indent/detect-indent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/defs/detect-indent/detect-indent.d.ts -------------------------------------------------------------------------------- /defs/detect-newline/detect-newline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/defs/detect-newline/detect-newline.d.ts -------------------------------------------------------------------------------- /defs/es6-promise/es6-promise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/defs/es6-promise/es6-promise.d.ts -------------------------------------------------------------------------------- /defs/gruntjs/gruntjs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/defs/gruntjs/gruntjs.d.ts -------------------------------------------------------------------------------- /defs/lodash/lodash.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/defs/lodash/lodash.d.ts -------------------------------------------------------------------------------- /defs/node/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/defs/node/node.d.ts -------------------------------------------------------------------------------- /defs/nodeunit/nodeunit.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/defs/nodeunit/nodeunit.d.ts -------------------------------------------------------------------------------- /defs/semver/semver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/defs/semver/semver.d.ts -------------------------------------------------------------------------------- /defs/tsd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/defs/tsd.d.ts -------------------------------------------------------------------------------- /docs/DetailedGettingStartedInstructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/docs/DetailedGettingStartedInstructions.md -------------------------------------------------------------------------------- /docs/DisableVisualStudioBuild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/docs/DisableVisualStudioBuild.md -------------------------------------------------------------------------------- /docs/amdLoader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/docs/amdLoader.md -------------------------------------------------------------------------------- /docs/fast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/docs/fast.md -------------------------------------------------------------------------------- /docs/html2ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/docs/html2ts.md -------------------------------------------------------------------------------- /grunt-ts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/grunt-ts.csproj -------------------------------------------------------------------------------- /grunt-ts.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/grunt-ts.sln -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/package.json -------------------------------------------------------------------------------- /sample/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/sample/Gruntfile.js -------------------------------------------------------------------------------- /sample/commonjs/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/sample/commonjs/Gruntfile.js -------------------------------------------------------------------------------- /tasks-internal/modules/amdLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/amdLoader.js -------------------------------------------------------------------------------- /tasks-internal/modules/amdLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/amdLoader.ts -------------------------------------------------------------------------------- /tasks-internal/modules/cacheUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/cacheUtils.js -------------------------------------------------------------------------------- /tasks-internal/modules/cacheUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/cacheUtils.ts -------------------------------------------------------------------------------- /tasks-internal/modules/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/compile.js -------------------------------------------------------------------------------- /tasks-internal/modules/compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/compile.ts -------------------------------------------------------------------------------- /tasks-internal/modules/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/defaults.js -------------------------------------------------------------------------------- /tasks-internal/modules/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/defaults.ts -------------------------------------------------------------------------------- /tasks-internal/modules/html2ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/html2ts.js -------------------------------------------------------------------------------- /tasks-internal/modules/html2ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/html2ts.ts -------------------------------------------------------------------------------- /tasks-internal/modules/interfaces.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/interfaces.d.ts -------------------------------------------------------------------------------- /tasks-internal/modules/optionsResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/optionsResolver.js -------------------------------------------------------------------------------- /tasks-internal/modules/optionsResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/optionsResolver.ts -------------------------------------------------------------------------------- /tasks-internal/modules/reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/reference.js -------------------------------------------------------------------------------- /tasks-internal/modules/reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/reference.ts -------------------------------------------------------------------------------- /tasks-internal/modules/templateCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/templateCache.js -------------------------------------------------------------------------------- /tasks-internal/modules/templateCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/templateCache.ts -------------------------------------------------------------------------------- /tasks-internal/modules/transformers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/transformers.js -------------------------------------------------------------------------------- /tasks-internal/modules/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/transformers.ts -------------------------------------------------------------------------------- /tasks-internal/modules/tsconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/tsconfig.js -------------------------------------------------------------------------------- /tasks-internal/modules/tsconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/tsconfig.ts -------------------------------------------------------------------------------- /tasks-internal/modules/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/utils.js -------------------------------------------------------------------------------- /tasks-internal/modules/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/utils.ts -------------------------------------------------------------------------------- /tasks-internal/modules/visualStudioOptionsResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/visualStudioOptionsResolver.js -------------------------------------------------------------------------------- /tasks-internal/modules/visualStudioOptionsResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/modules/visualStudioOptionsResolver.ts -------------------------------------------------------------------------------- /tasks-internal/scratch.js: -------------------------------------------------------------------------------- 1 | //# sourceMappingURL=scratch.js.map -------------------------------------------------------------------------------- /tasks-internal/scratch.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks-internal/ts-internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/ts-internal.js -------------------------------------------------------------------------------- /tasks-internal/ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks-internal/ts.ts -------------------------------------------------------------------------------- /tasks/modules/amdLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/amdLoader.js -------------------------------------------------------------------------------- /tasks/modules/amdLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/amdLoader.ts -------------------------------------------------------------------------------- /tasks/modules/cacheUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/cacheUtils.js -------------------------------------------------------------------------------- /tasks/modules/cacheUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/cacheUtils.ts -------------------------------------------------------------------------------- /tasks/modules/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/compile.js -------------------------------------------------------------------------------- /tasks/modules/compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/compile.ts -------------------------------------------------------------------------------- /tasks/modules/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/defaults.js -------------------------------------------------------------------------------- /tasks/modules/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/defaults.ts -------------------------------------------------------------------------------- /tasks/modules/html2ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/html2ts.js -------------------------------------------------------------------------------- /tasks/modules/html2ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/html2ts.ts -------------------------------------------------------------------------------- /tasks/modules/interfaces.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/interfaces.d.ts -------------------------------------------------------------------------------- /tasks/modules/optionsResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/optionsResolver.js -------------------------------------------------------------------------------- /tasks/modules/optionsResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/optionsResolver.ts -------------------------------------------------------------------------------- /tasks/modules/reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/reference.js -------------------------------------------------------------------------------- /tasks/modules/reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/reference.ts -------------------------------------------------------------------------------- /tasks/modules/templateCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/templateCache.js -------------------------------------------------------------------------------- /tasks/modules/templateCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/templateCache.ts -------------------------------------------------------------------------------- /tasks/modules/transformers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/transformers.js -------------------------------------------------------------------------------- /tasks/modules/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/transformers.ts -------------------------------------------------------------------------------- /tasks/modules/tsconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/tsconfig.js -------------------------------------------------------------------------------- /tasks/modules/tsconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/tsconfig.ts -------------------------------------------------------------------------------- /tasks/modules/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/utils.js -------------------------------------------------------------------------------- /tasks/modules/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/utils.ts -------------------------------------------------------------------------------- /tasks/modules/visualStudioOptionsResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/visualStudioOptionsResolver.js -------------------------------------------------------------------------------- /tasks/modules/visualStudioOptionsResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/modules/visualStudioOptionsResolver.ts -------------------------------------------------------------------------------- /tasks/scratch.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/ts.js -------------------------------------------------------------------------------- /tasks/ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tasks/ts.ts -------------------------------------------------------------------------------- /test/abtest/a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/abtest/a.ts -------------------------------------------------------------------------------- /test/abtest/b.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/abtest/b.ts -------------------------------------------------------------------------------- /test/abtest/c.ts: -------------------------------------------------------------------------------- 1 | class C { } -------------------------------------------------------------------------------- /test/abtest/reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/abtest/reference.ts -------------------------------------------------------------------------------- /test/allowJs/allowJsConsumer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/allowJs/allowJsConsumer.ts -------------------------------------------------------------------------------- /test/allowJs/allowJsLibrary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/allowJs/allowJsLibrary.js -------------------------------------------------------------------------------- /test/amdloader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdloader/index.html -------------------------------------------------------------------------------- /test/amdloader/ts/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdloader/ts/app/app.ts -------------------------------------------------------------------------------- /test/amdloader/ts/app/classa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdloader/ts/app/classa.ts -------------------------------------------------------------------------------- /test/amdloader/ts/app/deep/classb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdloader/ts/app/deep/classb.ts -------------------------------------------------------------------------------- /test/amdloader/ts/app/deep/classc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdloader/ts/app/deep/classc.ts -------------------------------------------------------------------------------- /test/amdloader/ts/app/deep/deeper/classd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdloader/ts/app/deep/deeper/classd.ts -------------------------------------------------------------------------------- /test/amdloader/ts/app/partials/templates.a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdloader/ts/app/partials/templates.a.html -------------------------------------------------------------------------------- /test/amdloader/ts/app/reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdloader/ts/app/reference.ts -------------------------------------------------------------------------------- /test/amdloader/ts/test/classt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdloader/ts/test/classt.ts -------------------------------------------------------------------------------- /test/amdloader/ts/test/deep/classu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdloader/ts/test/deep/classu.ts -------------------------------------------------------------------------------- /test/amdloader/ts/test/deep/classv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdloader/ts/test/deep/classv.ts -------------------------------------------------------------------------------- /test/amdloader/ts/test/deep/deeper/classw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdloader/ts/test/deep/deeper/classw.ts -------------------------------------------------------------------------------- /test/amdloader/ts/test/extendedAppCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdloader/ts/test/extendedAppCode.ts -------------------------------------------------------------------------------- /test/amdloader/ts/test/partials/templates.b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdloader/ts/test/partials/templates.b.html -------------------------------------------------------------------------------- /test/amdloader/ts/test/reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdloader/ts/test/reference.ts -------------------------------------------------------------------------------- /test/amdloader/ts/test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdloader/ts/test/test.ts -------------------------------------------------------------------------------- /test/amdtest/a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdtest/a.ts -------------------------------------------------------------------------------- /test/amdtest/b.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/amdtest/b.ts -------------------------------------------------------------------------------- /test/amdtest/c.ts: -------------------------------------------------------------------------------- 1 | class C { } 2 | export = C; -------------------------------------------------------------------------------- /test/baseDirOption/baseDirNotSpecified/foo/bar.ts: -------------------------------------------------------------------------------- 1 | class Bar {} 2 | -------------------------------------------------------------------------------- /test/baseDirOption/baseDirSpecified/foo/bar.ts: -------------------------------------------------------------------------------- 1 | class Bar {} 2 | -------------------------------------------------------------------------------- /test/bothcomments/a.ts: -------------------------------------------------------------------------------- 1 | class A extends B { } -------------------------------------------------------------------------------- /test/commandLineAssertions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/commandLineAssertions.js -------------------------------------------------------------------------------- /test/commandLineAssertions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/commandLineAssertions.ts -------------------------------------------------------------------------------- /test/compilerTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/compilerTests.js -------------------------------------------------------------------------------- /test/compilerTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/compilerTests.ts -------------------------------------------------------------------------------- /test/customcompiler/ts/foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/customcompiler/ts/foo.ts -------------------------------------------------------------------------------- /test/definitelytypedtest/d.ts/DefinitelyTyped/async/async.d.key: -------------------------------------------------------------------------------- 1 | C9E5903D-85FB-4127-A487-0F8479942F42 -------------------------------------------------------------------------------- /test/definitelytypedtest/d.ts/DefinitelyTyped/async/async.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/definitelytypedtest/d.ts/DefinitelyTyped/async/async.d.ts -------------------------------------------------------------------------------- /test/definitelytypedtest/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/definitelytypedtest/test.ts -------------------------------------------------------------------------------- /test/es6/stringTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/es6/stringTemplate.ts -------------------------------------------------------------------------------- /test/expected/abtest/out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/abtest/out.js -------------------------------------------------------------------------------- /test/expected/abtest/out.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/abtest/out.js.map -------------------------------------------------------------------------------- /test/expected/abtest/reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/abtest/reference.ts -------------------------------------------------------------------------------- /test/expected/allowJs/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/allowJs/result.js -------------------------------------------------------------------------------- /test/expected/amdloader/js/app/loader.bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/amdloader/js/app/loader.bin.js -------------------------------------------------------------------------------- /test/expected/amdloader/js/app/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/amdloader/js/app/loader.js -------------------------------------------------------------------------------- /test/expected/customcompiler/js/foo.js: -------------------------------------------------------------------------------- 1 | var foo = [1, ]; 2 | //# sourceMappingURL=foo.js.map -------------------------------------------------------------------------------- /test/expected/es6/es5/stringTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/es6/es5/stringTemplate.js -------------------------------------------------------------------------------- /test/expected/es6/es6/stringTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/es6/es6/stringTemplate.js -------------------------------------------------------------------------------- /test/expected/fail/ts/deep/work.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/fail/ts/deep/work.ts -------------------------------------------------------------------------------- /test/expected/files_ObjectFormat/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/files_ObjectFormat/a.js -------------------------------------------------------------------------------- /test/expected/files_ObjectFormat/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/files_ObjectFormat/b.js -------------------------------------------------------------------------------- /test/expected/htmlExternal/html.external.html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/htmlExternal/html.external.html.ts -------------------------------------------------------------------------------- /test/expected/htmlSnakeModuleName/out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/htmlSnakeModuleName/out.js -------------------------------------------------------------------------------- /test/expected/htmlTemplate/out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/htmlTemplate/out.js -------------------------------------------------------------------------------- /test/expected/nestedSources/zoo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/nestedSources/zoo.js -------------------------------------------------------------------------------- /test/expected/noEmitOnError/testNoEmitOnError_false.js: -------------------------------------------------------------------------------- 1 | var x = 5; 2 | //# sourceMappingURL=testNoEmitOnError_false.js.map -------------------------------------------------------------------------------- /test/expected/out with spaces/zoo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/out with spaces/zoo.js -------------------------------------------------------------------------------- /test/expected/preserveConstEnums/test_preserveConstEnums_false.js: -------------------------------------------------------------------------------- 1 | var x = 1; 2 | //# sourceMappingURL=test_preserveConstEnums_false.js.map -------------------------------------------------------------------------------- /test/expected/preserveConstEnums/test_preserveConstEnums_true.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/preserveConstEnums/test_preserveConstEnums_true.js -------------------------------------------------------------------------------- /test/expected/references-transform/references-transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/references-transform/references-transform.js -------------------------------------------------------------------------------- /test/expected/simple/js/zoo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/simple/js/zoo.d.ts -------------------------------------------------------------------------------- /test/expected/simple/js/zoo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/simple/js/zoo.js -------------------------------------------------------------------------------- /test/expected/simple_with_rootDir/js/ts/zoo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/simple_with_rootDir/js/ts/zoo.js -------------------------------------------------------------------------------- /test/expected/suppressImplicitAnyIndexErrors/test_suppressImplicitAnyIndexError_true.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/suppressImplicitAnyIndexErrors/test_suppressImplicitAnyIndexError_true.js -------------------------------------------------------------------------------- /test/expected/templatecache/js/templateCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/templatecache/js/templateCache.js -------------------------------------------------------------------------------- /test/expected/transform/js/bar/c/c1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/js/bar/c/c1.js -------------------------------------------------------------------------------- /test/expected/transform/js/bar/c/c2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/js/bar/c/c2.js -------------------------------------------------------------------------------- /test/expected/transform/js/foo/a/A1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/js/foo/a/A1.js -------------------------------------------------------------------------------- /test/expected/transform/js/foo/a/A2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/js/foo/a/A2.js -------------------------------------------------------------------------------- /test/expected/transform/js/foo/a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/js/foo/a/index.js -------------------------------------------------------------------------------- /test/expected/transform/js/foo/b/b1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/js/foo/b/b1.js -------------------------------------------------------------------------------- /test/expected/transform/js/foo/b/b2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/js/foo/b/b2.js -------------------------------------------------------------------------------- /test/expected/transform/js/foo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/js/foo/index.js -------------------------------------------------------------------------------- /test/expected/transform/js/rootLevel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/js/rootLevel.js -------------------------------------------------------------------------------- /test/expected/transform/ts/bar/c/c1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/ts/bar/c/c1.ts -------------------------------------------------------------------------------- /test/expected/transform/ts/bar/c/c2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/ts/bar/c/c2.ts -------------------------------------------------------------------------------- /test/expected/transform/ts/foo/a/A1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/ts/foo/a/A1.ts -------------------------------------------------------------------------------- /test/expected/transform/ts/foo/a/A2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/ts/foo/a/A2.ts -------------------------------------------------------------------------------- /test/expected/transform/ts/foo/a/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/ts/foo/a/index.ts -------------------------------------------------------------------------------- /test/expected/transform/ts/foo/b/b1.ts: -------------------------------------------------------------------------------- 1 | 2 | export class B1 { 3 | b1() { return "b1" } 4 | } -------------------------------------------------------------------------------- /test/expected/transform/ts/foo/b/b2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/ts/foo/b/b2.ts -------------------------------------------------------------------------------- /test/expected/transform/ts/foo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/ts/foo/index.ts -------------------------------------------------------------------------------- /test/expected/transform/ts/rootLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/transform/ts/rootLevel.ts -------------------------------------------------------------------------------- /test/expected/varreplacedtest/grunt-ts-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/varreplacedtest/grunt-ts-test.js -------------------------------------------------------------------------------- /test/expected/varreplacedtest/grunt-ts-test.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/varreplacedtest/grunt-ts-test.js.map -------------------------------------------------------------------------------- /test/expected/vsproj/ignoreSettings/vsprojtest1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/expected/vsproj/ignoreSettings/vsprojtest1.js -------------------------------------------------------------------------------- /test/fail/ts/deep/fail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/fail/ts/deep/fail.ts -------------------------------------------------------------------------------- /test/fail/ts/deep/work.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/fail/ts/deep/work.ts -------------------------------------------------------------------------------- /test/failontypeerror/ts/fail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/failontypeerror/ts/fail.ts -------------------------------------------------------------------------------- /test/files_testFailedCompilation/a/syntaxError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/files_testFailedCompilation/a/syntaxError.ts -------------------------------------------------------------------------------- /test/files_testFailedCompilation/b/a.ts: -------------------------------------------------------------------------------- 1 | class A { } -------------------------------------------------------------------------------- /test/html/src/bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/html/src/bar.ts -------------------------------------------------------------------------------- /test/html/src/foo.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/html/src/test.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/html/src/test.tpl.html -------------------------------------------------------------------------------- /test/htmlExternal/html.external.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/htmlExternal/html.external.html -------------------------------------------------------------------------------- /test/htmlOutDir/reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/htmlOutDir/reference.ts -------------------------------------------------------------------------------- /test/htmlOutDir/src/bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/htmlOutDir/src/bar.ts -------------------------------------------------------------------------------- /test/htmlOutDir/src/foo.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/htmlOutDir/src/test.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/htmlOutDir/src/test.tpl.html -------------------------------------------------------------------------------- /test/htmlOutDirFlat/reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/htmlOutDirFlat/reference.ts -------------------------------------------------------------------------------- /test/htmlOutDirFlat/src/bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/htmlOutDirFlat/src/bar.ts -------------------------------------------------------------------------------- /test/htmlOutDirFlat/src/foo.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/htmlOutDirFlat/src/test.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/htmlOutDirFlat/src/test.tpl.html -------------------------------------------------------------------------------- /test/htmlSnakeModuleName/reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/htmlSnakeModuleName/reference.ts -------------------------------------------------------------------------------- /test/htmlSnakeModuleName/src/foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/htmlSnakeModuleName/src/foo.ts -------------------------------------------------------------------------------- /test/htmlSnakeModuleName/src/snake-module-name.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/htmlSnakeModuleName/src/snake-module-name.tpl.html -------------------------------------------------------------------------------- /test/htmlTemplate/reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/htmlTemplate/reference.ts -------------------------------------------------------------------------------- /test/htmlTemplate/src/advanced.$$template.name.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/htmlTemplate/src/advanced.$$template.name.tpl.html -------------------------------------------------------------------------------- /test/htmlTemplate/src/foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/htmlTemplate/src/foo.ts -------------------------------------------------------------------------------- /test/htmlTemplateGlob/doNotTranspile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/htmlTemplateGlob/doNotTranspile.html -------------------------------------------------------------------------------- /test/htmlTemplateGlob/othercompilation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/htmlTemplateGlob/othercompilation.ts -------------------------------------------------------------------------------- /test/htmlTemplateGlob/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/htmlTemplateGlob/test.html -------------------------------------------------------------------------------- /test/issue_392/app/392-a.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue_392/app/392-a.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue_392/issue_392-tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/issue_392/issue_392-tsconfig.json -------------------------------------------------------------------------------- /test/issue_392/typings/392-testtype.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue_392_2/app/subfolder/test1.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue_392_2/app/subfolder/test1.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue_392_2/compiled/compiled/shouldnotbefound.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue_392_2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/issue_392_2/tsconfig.json -------------------------------------------------------------------------------- /test/issue_397/src/app/397-a.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue_397/src/issue_397-tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/issue_397/src/issue_397-tsconfig.json -------------------------------------------------------------------------------- /test/issue_397/src/other_typings/397-othertesttype.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue_397/src/typings/397-testtype.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/issue_426_baseUrl/src/issue_426_1.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/issue_426_baseUrl/src/issue_426_1.tsconfig.json -------------------------------------------------------------------------------- /test/issue_426_baseUrl/src/issue_426_2.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/issue_426_baseUrl/src/issue_426_2.tsconfig.json -------------------------------------------------------------------------------- /test/issue_426_baseUrl/src/issue_426_3.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/issue_426_baseUrl/src/issue_426_3.tsconfig.json -------------------------------------------------------------------------------- /test/multifile/a/a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/multifile/a/a.ts -------------------------------------------------------------------------------- /test/multifile/a/b.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/multifile/a/b.ts -------------------------------------------------------------------------------- /test/multifile/a/c.ts: -------------------------------------------------------------------------------- 1 | class C { } -------------------------------------------------------------------------------- /test/multifile/a/reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/multifile/a/reference.ts -------------------------------------------------------------------------------- /test/multifile/b/a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/multifile/b/a.ts -------------------------------------------------------------------------------- /test/multifile/b/b.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/multifile/b/b.ts -------------------------------------------------------------------------------- /test/multifile/b/c.ts: -------------------------------------------------------------------------------- 1 | class C { } -------------------------------------------------------------------------------- /test/multifile/b/reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/multifile/b/reference.ts -------------------------------------------------------------------------------- /test/noEmitOnError/testNoEmitOnError.ts: -------------------------------------------------------------------------------- 1 | var x: string = 5; -------------------------------------------------------------------------------- /test/nocompile/a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/nocompile/a.ts -------------------------------------------------------------------------------- /test/nocompile/b.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/nocompile/b.ts -------------------------------------------------------------------------------- /test/nocompile/c.ts: -------------------------------------------------------------------------------- 1 | class C { } -------------------------------------------------------------------------------- /test/nocompile/reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/nocompile/reference.ts -------------------------------------------------------------------------------- /test/optionsResolverTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/optionsResolverTests.js -------------------------------------------------------------------------------- /test/optionsResolverTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/optionsResolverTests.ts -------------------------------------------------------------------------------- /test/outdirtest/ts/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/outdirtest/ts/source.ts -------------------------------------------------------------------------------- /test/preserveConstEnums/test_preserveConstEnums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/preserveConstEnums/test_preserveConstEnums.ts -------------------------------------------------------------------------------- /test/referenceReplaced/referenced-grunt-ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/referenceReplaced/referenced-grunt-ts.ts -------------------------------------------------------------------------------- /test/referenceReplaced/referencing1.ts: -------------------------------------------------------------------------------- 1 | var referencingTest = {name: "Steve", city: "New York"}; 2 | -------------------------------------------------------------------------------- /test/referenceReplaced/referencing2.ts: -------------------------------------------------------------------------------- 1 | referencingTest.city = ""; 2 | -------------------------------------------------------------------------------- /test/references-transform-library.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/references-transform-library.d.ts -------------------------------------------------------------------------------- /test/references-transform/references-transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/references-transform/references-transform.ts -------------------------------------------------------------------------------- /test/simple/js/.baseDir.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/simple/js/zoo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/simple/js/zoo.d.ts -------------------------------------------------------------------------------- /test/simple/ts/zoo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/simple/ts/zoo.ts -------------------------------------------------------------------------------- /test/sourceroot/src/a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/sourceroot/src/a.ts -------------------------------------------------------------------------------- /test/sourceroot/src/nested/b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/sourceroot/src/nested/b.html -------------------------------------------------------------------------------- /test/sourceroot/src/nested/b.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/sourceroot/src/nested/b.ts -------------------------------------------------------------------------------- /test/sourceroot/src/reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/sourceroot/src/reference.ts -------------------------------------------------------------------------------- /test/suppressImplicitAnyIndexErrors/test_suppressImplicitAnyIndexError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/suppressImplicitAnyIndexErrors/test_suppressImplicitAnyIndexError.ts -------------------------------------------------------------------------------- /test/templatecache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/templatecache/index.html -------------------------------------------------------------------------------- /test/templatecache/js/partials/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/templatecache/js/partials/test.html -------------------------------------------------------------------------------- /test/templatecache/js/partials/test2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/templatecache/js/partials/test2.html -------------------------------------------------------------------------------- /test/templatecache/ts/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/templatecache/ts/app.ts -------------------------------------------------------------------------------- /test/templatecache/ts/classa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/templatecache/ts/classa.ts -------------------------------------------------------------------------------- /test/templatecache/ts/deep/classb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/templatecache/ts/deep/classb.ts -------------------------------------------------------------------------------- /test/templatecache/ts/deep/classc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/templatecache/ts/deep/classc.ts -------------------------------------------------------------------------------- /test/templatecache/ts/reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/templatecache/ts/reference.ts -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/test.js -------------------------------------------------------------------------------- /test/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/test.ts -------------------------------------------------------------------------------- /test/testHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/testHelpers.js -------------------------------------------------------------------------------- /test/testHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/testHelpers.ts -------------------------------------------------------------------------------- /test/transform/ts/bar/c/c1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/transform/ts/bar/c/c1.ts -------------------------------------------------------------------------------- /test/transform/ts/bar/c/c2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/transform/ts/bar/c/c2.ts -------------------------------------------------------------------------------- /test/transform/ts/foo/a/A1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/transform/ts/foo/a/A1.ts -------------------------------------------------------------------------------- /test/transform/ts/foo/a/A2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/transform/ts/foo/a/A2.ts -------------------------------------------------------------------------------- /test/transform/ts/foo/a/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/transform/ts/foo/a/index.ts -------------------------------------------------------------------------------- /test/transform/ts/foo/b/b1.ts: -------------------------------------------------------------------------------- 1 | 2 | export class B1 { 3 | b1() { return "b1" } 4 | } -------------------------------------------------------------------------------- /test/transform/ts/foo/b/b2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/transform/ts/foo/b/b2.ts -------------------------------------------------------------------------------- /test/transform/ts/foo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/transform/ts/foo/index.ts -------------------------------------------------------------------------------- /test/transform/ts/rootLevel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/transform/ts/rootLevel.ts -------------------------------------------------------------------------------- /test/tsconfig/files/validtsconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig/files/validtsconfig.ts -------------------------------------------------------------------------------- /test/tsconfig/otherFiles/other.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/tsconfig/otherFiles/that.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/tsconfig/otherFiles/this.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/tsconfig_artifact/blank_tsconfig.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/tsconfig_artifact/empty_object_literal_tsconfig.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/tsconfig_artifact/extends/configs/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/extends/configs/base.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/extends/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/extends/tsconfig.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/extends/tsconfig.nostrictnull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/extends/tsconfig.nostrictnull.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/four_spaces_indent_tsconfig.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/four_spaces_indent_tsconfig.expected.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/four_spaces_indent_tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/four_spaces_indent_tsconfig.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/full_valid_tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/full_valid_tsconfig.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/invalid_tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/invalid_tsconfig.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/mixed_indent_tsconfig.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/mixed_indent_tsconfig.expected.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/mixed_indent_tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/mixed_indent_tsconfig.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/newlineConfigs/crlf_newline_tsconfig.expected.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/newlineConfigs/crlf_newline_tsconfig.expected.json.js -------------------------------------------------------------------------------- /test/tsconfig_artifact/newlineConfigs/crlf_newline_tsconfig.expected.json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/newlineConfigs/crlf_newline_tsconfig.expected.json.ts -------------------------------------------------------------------------------- /test/tsconfig_artifact/newlineConfigs/crlf_newline_tsconfig.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/newlineConfigs/crlf_newline_tsconfig.json.js -------------------------------------------------------------------------------- /test/tsconfig_artifact/newlineConfigs/crlf_newline_tsconfig.json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/newlineConfigs/crlf_newline_tsconfig.json.ts -------------------------------------------------------------------------------- /test/tsconfig_artifact/newlineConfigs/lf_newline_tsconfig.expected.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/newlineConfigs/lf_newline_tsconfig.expected.json.js -------------------------------------------------------------------------------- /test/tsconfig_artifact/newlineConfigs/lf_newline_tsconfig.expected.json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/newlineConfigs/lf_newline_tsconfig.expected.json.ts -------------------------------------------------------------------------------- /test/tsconfig_artifact/newlineConfigs/lf_newline_tsconfig.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/newlineConfigs/lf_newline_tsconfig.json.js -------------------------------------------------------------------------------- /test/tsconfig_artifact/newlineConfigs/lf_newline_tsconfig.json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/newlineConfigs/lf_newline_tsconfig.json.ts -------------------------------------------------------------------------------- /test/tsconfig_artifact/newlineConfigs/mixed_newline_tsconfig.expected.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/newlineConfigs/mixed_newline_tsconfig.expected.json.js -------------------------------------------------------------------------------- /test/tsconfig_artifact/newlineConfigs/mixed_newline_tsconfig.expected.json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/newlineConfigs/mixed_newline_tsconfig.expected.json.ts -------------------------------------------------------------------------------- /test/tsconfig_artifact/newlineConfigs/mixed_newline_tsconfig.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/newlineConfigs/mixed_newline_tsconfig.json.js -------------------------------------------------------------------------------- /test/tsconfig_artifact/newlineConfigs/mixed_newline_tsconfig.json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/newlineConfigs/mixed_newline_tsconfig.json.ts -------------------------------------------------------------------------------- /test/tsconfig_artifact/simple_filesGlob_tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/simple_filesGlob_tsconfig.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/tab_indent_tsconfig.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/tab_indent_tsconfig.expected.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/tab_indent_tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/tab_indent_tsconfig.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/test_exclude_tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/test_exclude_tsconfig.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/test_include_tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/test_include_tsconfig.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/test_include_wildcard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/test_include_wildcard.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/test_simple_tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/test_simple_tsconfig.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/test_simple_with_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/test_simple_with_out.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/test_simple_with_outFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/test_simple_with_outFile.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/three_spaces_indent_tsconfig.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/three_spaces_indent_tsconfig.expected.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/three_spaces_indent_tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/three_spaces_indent_tsconfig.json -------------------------------------------------------------------------------- /test/tsconfig_artifact/tsconfig-grunt-ts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/tsconfig_artifact/tsconfig-grunt-ts.json -------------------------------------------------------------------------------- /test/vsproj/ignoreFiles/ignoreFiles_test.ts: -------------------------------------------------------------------------------- 1 | var x = "hello"; 2 | console.log(x); -------------------------------------------------------------------------------- /test/vsproj/testproject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/vsproj/testproject.csproj -------------------------------------------------------------------------------- /test/vsproj/vsprojtest1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/vsproj/vsprojtest1.ts -------------------------------------------------------------------------------- /test/vsproj/vsprojtest2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/vsproj/vsprojtest2.ts -------------------------------------------------------------------------------- /test/withemptymodule/ts/Bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/withemptymodule/ts/Bar.ts -------------------------------------------------------------------------------- /test/withemptymodule/ts/Foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/withemptymodule/ts/Foo.ts -------------------------------------------------------------------------------- /test/withemptymodule/ts/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/withemptymodule/ts/Main.ts -------------------------------------------------------------------------------- /test/withwrongmodule/ts/Foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/withwrongmodule/ts/Foo.ts -------------------------------------------------------------------------------- /test/withwrongmodule/ts/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/withwrongmodule/ts/Main.ts -------------------------------------------------------------------------------- /test/work/inside/tada.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/work/inside/tada2.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/work/inside/work3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/work/inside/work3.ts -------------------------------------------------------------------------------- /test/work/work.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/work/work.ts -------------------------------------------------------------------------------- /test/work/work2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/test/work/work2.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tsd.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/grunt-ts/HEAD/tslint.json --------------------------------------------------------------------------------