├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── README.md ├── appveyor.yml ├── assets ├── angular2.png ├── react.png └── vanilla.png ├── ci-install.js ├── examples ├── angular2 │ ├── README.md │ ├── base.spec.ts │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── hello.html │ │ │ ├── hello.spec.ts │ │ │ └── hello.ts │ │ └── assets │ │ │ └── style │ │ │ ├── main.css │ │ │ ├── main.less │ │ │ └── main.scss │ └── tsconfig.json ├── angularjs │ ├── README.md │ ├── app │ │ ├── app.ts │ │ ├── controller.spec.ts │ │ ├── controller.ts │ │ ├── service.spec.ts │ │ └── service.ts │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── docker │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── karma.conf.js │ ├── package.json │ ├── src │ │ ├── hello-service.interface.ts │ │ ├── hello.component.spec.ts │ │ └── hello.component.ts │ └── tsconfig.json ├── gulp │ ├── README.md │ ├── gulpfile.js │ ├── karma.bar.conf.js │ ├── karma.foo.conf.js │ ├── package.json │ ├── src │ │ ├── bar │ │ │ ├── Bar.test.ts │ │ │ ├── Bar.ts │ │ │ └── typings │ │ │ │ ├── index.d.ts │ │ │ │ ├── jasmine │ │ │ │ └── jasmine.d.ts │ │ │ │ └── lodash │ │ │ │ └── lodash.d.ts │ │ └── foo │ │ │ ├── Foo.test.ts │ │ │ ├── Foo.ts │ │ │ └── typings │ │ │ ├── index.d.ts │ │ │ └── jasmine │ │ │ └── jasmine.d.ts │ ├── typings_bar.json │ └── typings_foo.json ├── mocha │ ├── README.md │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── hello-service.interface.ts │ │ ├── hello.component.spec.ts │ │ └── hello.component.ts │ └── tsconfig.json ├── typescript-1.6.2 │ ├── README.md │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── hello-service.interface.ts │ │ ├── hello.component.spec.ts │ │ └── hello.component.ts │ ├── tsconfig.json │ └── typings │ │ └── jasmine.d.ts ├── typescript-1.8.10 │ ├── README.md │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── hello-service.interface.ts │ │ ├── hello.component.spec.ts │ │ └── hello.component.ts │ ├── tsconfig.json │ └── typings │ │ └── jasmine.d.ts └── typescript-latest │ ├── README.md │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── hello-service.interface.ts │ ├── hello.component.spec.ts │ └── hello.component.ts │ └── tsconfig.json ├── lerna.json ├── obliterate.sh ├── package.json ├── packages ├── karma-typescript-angular2-transform │ ├── LICENSE │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── test │ │ │ ├── another-mock-component.ts │ │ │ ├── mock-component.ts │ │ │ ├── mock-service.ts │ │ │ └── transform.spec.ts │ │ └── transform.ts │ └── tsconfig.json ├── karma-typescript-cssmodules-transform │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── transform.spec.ts │ │ └── transform.ts │ └── tsconfig.json ├── karma-typescript-es6-transform │ ├── LICENSE │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── transform.spec.ts │ │ └── transform.ts │ └── tsconfig.json ├── karma-typescript-postcss-transform │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── transform.spec.ts │ │ └── transform.ts │ └── tsconfig.json └── karma-typescript │ ├── LICENSE │ ├── README.md │ ├── cookbook.md │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── api │ │ ├── configuration.ts │ │ ├── index.ts │ │ └── transforms.ts │ ├── bundler │ │ ├── bundle-callback.ts │ │ ├── bundle-item.ts │ │ ├── bundler.ts │ │ ├── dependency-walker.ts │ │ ├── globals.ts │ │ ├── queued.ts │ │ ├── resolve │ │ │ ├── empty.ts │ │ │ ├── resolver.ts │ │ │ ├── shims.ts │ │ │ ├── source-reader.spec.ts │ │ │ └── source-reader.ts │ │ ├── source-map.ts │ │ ├── transformer.ts │ │ └── validator.ts │ ├── client │ │ └── commonjs.ts │ ├── compiler │ │ ├── compile-callback.ts │ │ ├── compiler.ts │ │ └── emit-output.ts │ ├── index.ts │ ├── istanbul │ │ ├── coverage-callback.ts │ │ ├── coverage.ts │ │ ├── threshold.spec.ts │ │ └── threshold.ts │ ├── karma │ │ ├── framework.ts │ │ ├── preprocessor.ts │ │ └── reporter.ts │ └── shared │ │ ├── benchmark.ts │ │ ├── configuration.ts │ │ ├── extender.ts │ │ ├── file-utils.ts │ │ ├── file.ts │ │ ├── path-tool.ts │ │ └── project.ts │ └── tsconfig.json └── tests └── integration-latest ├── README.md ├── assets └── style │ ├── main.css │ └── require.css ├── karma-typescript-test-module-commonjs-a ├── index.js └── package.json ├── karma-typescript-test-module-commonjs-b ├── index.js └── package.json ├── karma-typescript-test-module ├── add │ ├── index.d.ts │ ├── index.js │ └── package.json ├── cyclic-dependency │ ├── a.js │ ├── b.js │ └── index.js ├── dynamic-require │ ├── index.js │ └── required.js ├── esm │ ├── add │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ └── index.js ├── excluded │ └── index.js ├── ignored │ └── index.js ├── ignorer │ └── index.js ├── index.js ├── no-parse │ └── index.js ├── non-extensible │ └── index.js ├── package.json └── typings.d.ts ├── karma.conf.js ├── package-lock.json ├── package.json ├── src ├── alias │ ├── alias-tester.spec.ts │ └── alias-tester.ts ├── ambient │ ├── ambient-module-tester.spec.ts │ ├── ambient-module-tester.ts │ └── ambient-module.d.ts ├── constants │ ├── constants-tester.spec.ts │ └── constants-tester.ts ├── custom-typings │ └── my-typings.d.ts ├── cyclic-dependencies │ ├── cyclic-dependency-tester.spec.ts │ └── cyclic-dependency-tester.ts ├── exclude │ ├── exclude-tester.spec.ts │ └── exclude-tester.ts ├── exports │ ├── commonjs-a.ts │ ├── commonjs-b.ts │ ├── commonjs-tester.spec.ts │ ├── exported-class.ts │ ├── exports-tester.spec.ts │ └── exports-tester.ts ├── ignore │ ├── ignore-tester.spec.ts │ └── ignore-tester.ts ├── imports │ ├── index-import │ │ ├── dependency │ │ │ └── index.ts │ │ ├── index-import-tester.spec.ts │ │ └── index-import-tester.ts │ ├── js-import │ │ ├── js-import-tester.spec.ts │ │ ├── js-import-tester.ts │ │ ├── urls.js │ │ └── vendor-api.js │ ├── json-import │ │ ├── json-direct-import.ts │ │ ├── json-import-tester.json │ │ ├── json-import-tester.spec.ts │ │ └── json-import-tester.ts │ ├── module-import │ │ ├── empty-export.js │ │ ├── module-import-tester.spec.ts │ │ └── module-import-tester.ts │ ├── node-require │ │ ├── dependency.ts │ │ ├── node-require-tester.spec.ts │ │ └── node-require-tester.ts │ ├── relative-import-path │ │ ├── relative-path-import-tester.spec.ts │ │ └── relative-path-import-tester.ts │ ├── style-import │ │ ├── style-import-tester.css │ │ ├── style-import-tester.spec.ts │ │ ├── style-import-tester.ts │ │ └── style │ │ │ ├── css.css │ │ │ ├── less.less │ │ │ ├── sass.sass │ │ │ └── scss.scss │ └── typings-import │ │ ├── typings-import-tester.spec.ts │ │ └── typings-import-tester.ts ├── misc │ ├── formatting │ │ ├── formatting-tester.spec.ts │ │ └── formatting-tester.ts │ └── interface-mocking │ │ ├── interface-mocking-tester.interface.ts │ │ ├── interface-mocking-tester.spec.ts │ │ └── interface-mocking-tester.ts ├── module-id-tester.spec.ts ├── no-module-tester.spec.ts ├── no-parse │ ├── no-parse-tester.spec.ts │ └── no-parse-tester.ts ├── node │ ├── core │ │ ├── core-module-tester.spec.ts │ │ └── core-module-tester.ts │ └── globals │ │ ├── globals-tester.spec.ts │ │ └── globals-tester.ts ├── resolve-typings │ ├── hello.js │ ├── js-lib.d.ts │ ├── js-lib.js │ ├── resolve-typings-tester.spec.ts │ └── resolve-typings-tester.ts ├── transforms │ ├── es6-transform-tester.spec.ts │ └── es6-transform-tester.ts ├── typescript │ ├── compiler-paths │ │ ├── compiler-paths-tester.spec.ts │ │ └── compiler-paths-tester.ts │ └── language-features │ │ ├── language-features-tester.spec.ts │ │ └── language-features-tester.ts └── window-global │ ├── window-global-tester.js │ ├── window-global-tester.spec.js │ ├── window-global-tester.spec.ts │ └── window-global-tester.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/appveyor.yml -------------------------------------------------------------------------------- /assets/angular2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/assets/angular2.png -------------------------------------------------------------------------------- /assets/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/assets/react.png -------------------------------------------------------------------------------- /assets/vanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/assets/vanilla.png -------------------------------------------------------------------------------- /ci-install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/ci-install.js -------------------------------------------------------------------------------- /examples/angular2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angular2/README.md -------------------------------------------------------------------------------- /examples/angular2/base.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angular2/base.spec.ts -------------------------------------------------------------------------------- /examples/angular2/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angular2/karma.conf.js -------------------------------------------------------------------------------- /examples/angular2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angular2/package-lock.json -------------------------------------------------------------------------------- /examples/angular2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angular2/package.json -------------------------------------------------------------------------------- /examples/angular2/src/app/hello.html: -------------------------------------------------------------------------------- 1 |

{{title}}

2 | -------------------------------------------------------------------------------- /examples/angular2/src/app/hello.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angular2/src/app/hello.spec.ts -------------------------------------------------------------------------------- /examples/angular2/src/app/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angular2/src/app/hello.ts -------------------------------------------------------------------------------- /examples/angular2/src/assets/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angular2/src/assets/style/main.css -------------------------------------------------------------------------------- /examples/angular2/src/assets/style/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angular2/src/assets/style/main.less -------------------------------------------------------------------------------- /examples/angular2/src/assets/style/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angular2/src/assets/style/main.scss -------------------------------------------------------------------------------- /examples/angular2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angular2/tsconfig.json -------------------------------------------------------------------------------- /examples/angularjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angularjs/README.md -------------------------------------------------------------------------------- /examples/angularjs/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angularjs/app/app.ts -------------------------------------------------------------------------------- /examples/angularjs/app/controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angularjs/app/controller.spec.ts -------------------------------------------------------------------------------- /examples/angularjs/app/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angularjs/app/controller.ts -------------------------------------------------------------------------------- /examples/angularjs/app/service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angularjs/app/service.spec.ts -------------------------------------------------------------------------------- /examples/angularjs/app/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angularjs/app/service.ts -------------------------------------------------------------------------------- /examples/angularjs/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angularjs/karma.conf.js -------------------------------------------------------------------------------- /examples/angularjs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angularjs/package-lock.json -------------------------------------------------------------------------------- /examples/angularjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angularjs/package.json -------------------------------------------------------------------------------- /examples/angularjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/angularjs/tsconfig.json -------------------------------------------------------------------------------- /examples/docker/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /examples/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/docker/Dockerfile -------------------------------------------------------------------------------- /examples/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/docker/README.md -------------------------------------------------------------------------------- /examples/docker/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/docker/karma.conf.js -------------------------------------------------------------------------------- /examples/docker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/docker/package.json -------------------------------------------------------------------------------- /examples/docker/src/hello-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/docker/src/hello-service.interface.ts -------------------------------------------------------------------------------- /examples/docker/src/hello.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/docker/src/hello.component.spec.ts -------------------------------------------------------------------------------- /examples/docker/src/hello.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/docker/src/hello.component.ts -------------------------------------------------------------------------------- /examples/docker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/docker/tsconfig.json -------------------------------------------------------------------------------- /examples/gulp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/gulp/README.md -------------------------------------------------------------------------------- /examples/gulp/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/gulp/gulpfile.js -------------------------------------------------------------------------------- /examples/gulp/karma.bar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/gulp/karma.bar.conf.js -------------------------------------------------------------------------------- /examples/gulp/karma.foo.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/gulp/karma.foo.conf.js -------------------------------------------------------------------------------- /examples/gulp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/gulp/package.json -------------------------------------------------------------------------------- /examples/gulp/src/bar/Bar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/gulp/src/bar/Bar.test.ts -------------------------------------------------------------------------------- /examples/gulp/src/bar/Bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/gulp/src/bar/Bar.ts -------------------------------------------------------------------------------- /examples/gulp/src/bar/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/gulp/src/bar/typings/index.d.ts -------------------------------------------------------------------------------- /examples/gulp/src/bar/typings/jasmine/jasmine.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/gulp/src/bar/typings/jasmine/jasmine.d.ts -------------------------------------------------------------------------------- /examples/gulp/src/bar/typings/lodash/lodash.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/gulp/src/bar/typings/lodash/lodash.d.ts -------------------------------------------------------------------------------- /examples/gulp/src/foo/Foo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/gulp/src/foo/Foo.test.ts -------------------------------------------------------------------------------- /examples/gulp/src/foo/Foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/gulp/src/foo/Foo.ts -------------------------------------------------------------------------------- /examples/gulp/src/foo/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/gulp/src/foo/typings/index.d.ts -------------------------------------------------------------------------------- /examples/gulp/src/foo/typings/jasmine/jasmine.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/gulp/src/foo/typings/jasmine/jasmine.d.ts -------------------------------------------------------------------------------- /examples/gulp/typings_bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/gulp/typings_bar.json -------------------------------------------------------------------------------- /examples/gulp/typings_foo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/gulp/typings_foo.json -------------------------------------------------------------------------------- /examples/mocha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/mocha/README.md -------------------------------------------------------------------------------- /examples/mocha/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/mocha/karma.conf.js -------------------------------------------------------------------------------- /examples/mocha/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/mocha/package-lock.json -------------------------------------------------------------------------------- /examples/mocha/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/mocha/package.json -------------------------------------------------------------------------------- /examples/mocha/src/hello-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/mocha/src/hello-service.interface.ts -------------------------------------------------------------------------------- /examples/mocha/src/hello.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/mocha/src/hello.component.spec.ts -------------------------------------------------------------------------------- /examples/mocha/src/hello.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/mocha/src/hello.component.ts -------------------------------------------------------------------------------- /examples/mocha/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/mocha/tsconfig.json -------------------------------------------------------------------------------- /examples/typescript-1.6.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.6.2/README.md -------------------------------------------------------------------------------- /examples/typescript-1.6.2/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.6.2/karma.conf.js -------------------------------------------------------------------------------- /examples/typescript-1.6.2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.6.2/package-lock.json -------------------------------------------------------------------------------- /examples/typescript-1.6.2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.6.2/package.json -------------------------------------------------------------------------------- /examples/typescript-1.6.2/src/hello-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.6.2/src/hello-service.interface.ts -------------------------------------------------------------------------------- /examples/typescript-1.6.2/src/hello.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.6.2/src/hello.component.spec.ts -------------------------------------------------------------------------------- /examples/typescript-1.6.2/src/hello.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.6.2/src/hello.component.ts -------------------------------------------------------------------------------- /examples/typescript-1.6.2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.6.2/tsconfig.json -------------------------------------------------------------------------------- /examples/typescript-1.6.2/typings/jasmine.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.6.2/typings/jasmine.d.ts -------------------------------------------------------------------------------- /examples/typescript-1.8.10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.8.10/README.md -------------------------------------------------------------------------------- /examples/typescript-1.8.10/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.8.10/karma.conf.js -------------------------------------------------------------------------------- /examples/typescript-1.8.10/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.8.10/package-lock.json -------------------------------------------------------------------------------- /examples/typescript-1.8.10/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.8.10/package.json -------------------------------------------------------------------------------- /examples/typescript-1.8.10/src/hello-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.8.10/src/hello-service.interface.ts -------------------------------------------------------------------------------- /examples/typescript-1.8.10/src/hello.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.8.10/src/hello.component.spec.ts -------------------------------------------------------------------------------- /examples/typescript-1.8.10/src/hello.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.8.10/src/hello.component.ts -------------------------------------------------------------------------------- /examples/typescript-1.8.10/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.8.10/tsconfig.json -------------------------------------------------------------------------------- /examples/typescript-1.8.10/typings/jasmine.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-1.8.10/typings/jasmine.d.ts -------------------------------------------------------------------------------- /examples/typescript-latest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-latest/README.md -------------------------------------------------------------------------------- /examples/typescript-latest/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-latest/karma.conf.js -------------------------------------------------------------------------------- /examples/typescript-latest/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-latest/package-lock.json -------------------------------------------------------------------------------- /examples/typescript-latest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-latest/package.json -------------------------------------------------------------------------------- /examples/typescript-latest/src/hello-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-latest/src/hello-service.interface.ts -------------------------------------------------------------------------------- /examples/typescript-latest/src/hello.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-latest/src/hello.component.spec.ts -------------------------------------------------------------------------------- /examples/typescript-latest/src/hello.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-latest/src/hello.component.ts -------------------------------------------------------------------------------- /examples/typescript-latest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/examples/typescript-latest/tsconfig.json -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/lerna.json -------------------------------------------------------------------------------- /obliterate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/obliterate.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/package.json -------------------------------------------------------------------------------- /packages/karma-typescript-angular2-transform/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-angular2-transform/LICENSE -------------------------------------------------------------------------------- /packages/karma-typescript-angular2-transform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-angular2-transform/README.md -------------------------------------------------------------------------------- /packages/karma-typescript-angular2-transform/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-angular2-transform/package-lock.json -------------------------------------------------------------------------------- /packages/karma-typescript-angular2-transform/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-angular2-transform/package.json -------------------------------------------------------------------------------- /packages/karma-typescript-angular2-transform/src/test/another-mock-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-angular2-transform/src/test/another-mock-component.ts -------------------------------------------------------------------------------- /packages/karma-typescript-angular2-transform/src/test/mock-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-angular2-transform/src/test/mock-component.ts -------------------------------------------------------------------------------- /packages/karma-typescript-angular2-transform/src/test/mock-service.ts: -------------------------------------------------------------------------------- 1 | export class MockService {} 2 | -------------------------------------------------------------------------------- /packages/karma-typescript-angular2-transform/src/test/transform.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-angular2-transform/src/test/transform.spec.ts -------------------------------------------------------------------------------- /packages/karma-typescript-angular2-transform/src/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-angular2-transform/src/transform.ts -------------------------------------------------------------------------------- /packages/karma-typescript-angular2-transform/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-angular2-transform/tsconfig.json -------------------------------------------------------------------------------- /packages/karma-typescript-cssmodules-transform/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-cssmodules-transform/LICENSE -------------------------------------------------------------------------------- /packages/karma-typescript-cssmodules-transform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-cssmodules-transform/README.md -------------------------------------------------------------------------------- /packages/karma-typescript-cssmodules-transform/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-cssmodules-transform/package.json -------------------------------------------------------------------------------- /packages/karma-typescript-cssmodules-transform/src/transform.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-cssmodules-transform/src/transform.spec.ts -------------------------------------------------------------------------------- /packages/karma-typescript-cssmodules-transform/src/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-cssmodules-transform/src/transform.ts -------------------------------------------------------------------------------- /packages/karma-typescript-cssmodules-transform/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-cssmodules-transform/tsconfig.json -------------------------------------------------------------------------------- /packages/karma-typescript-es6-transform/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-es6-transform/LICENSE -------------------------------------------------------------------------------- /packages/karma-typescript-es6-transform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-es6-transform/README.md -------------------------------------------------------------------------------- /packages/karma-typescript-es6-transform/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-es6-transform/package-lock.json -------------------------------------------------------------------------------- /packages/karma-typescript-es6-transform/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-es6-transform/package.json -------------------------------------------------------------------------------- /packages/karma-typescript-es6-transform/src/transform.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-es6-transform/src/transform.spec.ts -------------------------------------------------------------------------------- /packages/karma-typescript-es6-transform/src/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-es6-transform/src/transform.ts -------------------------------------------------------------------------------- /packages/karma-typescript-es6-transform/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-es6-transform/tsconfig.json -------------------------------------------------------------------------------- /packages/karma-typescript-postcss-transform/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-postcss-transform/LICENSE -------------------------------------------------------------------------------- /packages/karma-typescript-postcss-transform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-postcss-transform/README.md -------------------------------------------------------------------------------- /packages/karma-typescript-postcss-transform/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-postcss-transform/package.json -------------------------------------------------------------------------------- /packages/karma-typescript-postcss-transform/src/transform.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-postcss-transform/src/transform.spec.ts -------------------------------------------------------------------------------- /packages/karma-typescript-postcss-transform/src/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-postcss-transform/src/transform.ts -------------------------------------------------------------------------------- /packages/karma-typescript-postcss-transform/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript-postcss-transform/tsconfig.json -------------------------------------------------------------------------------- /packages/karma-typescript/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/LICENSE -------------------------------------------------------------------------------- /packages/karma-typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/README.md -------------------------------------------------------------------------------- /packages/karma-typescript/cookbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/cookbook.md -------------------------------------------------------------------------------- /packages/karma-typescript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/package-lock.json -------------------------------------------------------------------------------- /packages/karma-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/package.json -------------------------------------------------------------------------------- /packages/karma-typescript/src/api/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/api/configuration.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/api/index.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/api/transforms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/api/transforms.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/bundler/bundle-callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/bundler/bundle-callback.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/bundler/bundle-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/bundler/bundle-item.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/bundler/bundler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/bundler/bundler.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/bundler/dependency-walker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/bundler/dependency-walker.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/bundler/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/bundler/globals.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/bundler/queued.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/bundler/queued.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/bundler/resolve/empty.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/karma-typescript/src/bundler/resolve/resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/bundler/resolve/resolver.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/bundler/resolve/shims.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/bundler/resolve/shims.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/bundler/resolve/source-reader.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/bundler/resolve/source-reader.spec.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/bundler/resolve/source-reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/bundler/resolve/source-reader.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/bundler/source-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/bundler/source-map.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/bundler/transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/bundler/transformer.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/bundler/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/bundler/validator.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/client/commonjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/client/commonjs.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/compiler/compile-callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/compiler/compile-callback.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/compiler/compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/compiler/compiler.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/compiler/emit-output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/compiler/emit-output.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/index.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/istanbul/coverage-callback.ts: -------------------------------------------------------------------------------- 1 | export type CoverageCallback = (result: string) => void; 2 | -------------------------------------------------------------------------------- /packages/karma-typescript/src/istanbul/coverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/istanbul/coverage.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/istanbul/threshold.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/istanbul/threshold.spec.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/istanbul/threshold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/istanbul/threshold.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/karma/framework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/karma/framework.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/karma/preprocessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/karma/preprocessor.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/karma/reporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/karma/reporter.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/shared/benchmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/shared/benchmark.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/shared/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/shared/configuration.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/shared/extender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/shared/extender.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/shared/file-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/shared/file-utils.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/shared/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/shared/file.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/shared/path-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/shared/path-tool.ts -------------------------------------------------------------------------------- /packages/karma-typescript/src/shared/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/src/shared/project.ts -------------------------------------------------------------------------------- /packages/karma-typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/packages/karma-typescript/tsconfig.json -------------------------------------------------------------------------------- /tests/integration-latest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/README.md -------------------------------------------------------------------------------- /tests/integration-latest/assets/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/assets/style/main.css -------------------------------------------------------------------------------- /tests/integration-latest/assets/style/require.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/assets/style/require.css -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module-commonjs-a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module-commonjs-a/index.js -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module-commonjs-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module-commonjs-a/package.json -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module-commonjs-b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module-commonjs-b/index.js -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module-commonjs-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module-commonjs-b/package.json -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/add/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/add/index.d.ts -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/add/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/add/index.js -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/add/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/add/package.json -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/cyclic-dependency/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/cyclic-dependency/a.js -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/cyclic-dependency/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/cyclic-dependency/b.js -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/cyclic-dependency/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/cyclic-dependency/index.js -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/dynamic-require/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/dynamic-require/index.js -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/dynamic-require/required.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/dynamic-require/required.js -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/esm/add/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/esm/add/index.d.ts -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/esm/add/index.js: -------------------------------------------------------------------------------- 1 | export default function add(a, b) { 2 | return a + b; 3 | } -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/esm/add/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/esm/add/package.json -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/esm/index.js: -------------------------------------------------------------------------------- 1 | export { default as add } from './add/index.js'; 2 | -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/excluded/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/excluded/index.js -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/ignored/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/ignored/index.js -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/ignorer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/ignorer/index.js -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/index.js -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/no-parse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/no-parse/index.js -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/non-extensible/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/non-extensible/index.js -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/package.json -------------------------------------------------------------------------------- /tests/integration-latest/karma-typescript-test-module/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma-typescript-test-module/typings.d.ts -------------------------------------------------------------------------------- /tests/integration-latest/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/karma.conf.js -------------------------------------------------------------------------------- /tests/integration-latest/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/package-lock.json -------------------------------------------------------------------------------- /tests/integration-latest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/package.json -------------------------------------------------------------------------------- /tests/integration-latest/src/alias/alias-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/alias/alias-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/alias/alias-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/alias/alias-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/ambient/ambient-module-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/ambient/ambient-module-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/ambient/ambient-module-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/ambient/ambient-module-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/ambient/ambient-module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/ambient/ambient-module.d.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/constants/constants-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/constants/constants-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/constants/constants-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/constants/constants-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/custom-typings/my-typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/custom-typings/my-typings.d.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/cyclic-dependencies/cyclic-dependency-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/cyclic-dependencies/cyclic-dependency-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/cyclic-dependencies/cyclic-dependency-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/cyclic-dependencies/cyclic-dependency-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/exclude/exclude-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/exclude/exclude-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/exclude/exclude-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/exclude/exclude-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/exports/commonjs-a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/exports/commonjs-a.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/exports/commonjs-b.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/exports/commonjs-b.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/exports/commonjs-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/exports/commonjs-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/exports/exported-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/exports/exported-class.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/exports/exports-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/exports/exports-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/exports/exports-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/exports/exports-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/ignore/ignore-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/ignore/ignore-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/ignore/ignore-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/ignore/ignore-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/index-import/dependency/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/index-import/dependency/index.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/index-import/index-import-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/index-import/index-import-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/index-import/index-import-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/index-import/index-import-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/js-import/js-import-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/js-import/js-import-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/js-import/js-import-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/js-import/js-import-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/js-import/urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/js-import/urls.js -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/js-import/vendor-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/js-import/vendor-api.js -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/json-import/json-direct-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/json-import/json-direct-import.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/json-import/json-import-tester.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/json-import/json-import-tester.json -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/json-import/json-import-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/json-import/json-import-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/json-import/json-import-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/json-import/json-import-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/module-import/empty-export.js: -------------------------------------------------------------------------------- 1 | module.exports = undefined; -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/module-import/module-import-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/module-import/module-import-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/module-import/module-import-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/module-import/module-import-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/node-require/dependency.ts: -------------------------------------------------------------------------------- 1 | export class DependencyComponent {} 2 | -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/node-require/node-require-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/node-require/node-require-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/node-require/node-require-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/node-require/node-require-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/relative-import-path/relative-path-import-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/relative-import-path/relative-path-import-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/relative-import-path/relative-path-import-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/relative-import-path/relative-path-import-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/style-import/style-import-tester.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/style-import/style-import-tester.css -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/style-import/style-import-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/style-import/style-import-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/style-import/style-import-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/style-import/style-import-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/style-import/style/css.css: -------------------------------------------------------------------------------- 1 | body { 2 | font: 100% Helvetica, sans-serif; 3 | color: #333; 4 | } 5 | -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/style-import/style/less.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/style-import/style/less.less -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/style-import/style/sass.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/style-import/style/sass.sass -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/style-import/style/scss.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/style-import/style/scss.scss -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/typings-import/typings-import-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/typings-import/typings-import-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/imports/typings-import/typings-import-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/imports/typings-import/typings-import-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/misc/formatting/formatting-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/misc/formatting/formatting-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/misc/formatting/formatting-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/misc/formatting/formatting-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/misc/interface-mocking/interface-mocking-tester.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/misc/interface-mocking/interface-mocking-tester.interface.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/misc/interface-mocking/interface-mocking-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/misc/interface-mocking/interface-mocking-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/misc/interface-mocking/interface-mocking-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/misc/interface-mocking/interface-mocking-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/module-id-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/module-id-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/no-module-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/no-module-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/no-parse/no-parse-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/no-parse/no-parse-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/no-parse/no-parse-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/no-parse/no-parse-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/node/core/core-module-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/node/core/core-module-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/node/core/core-module-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/node/core/core-module-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/node/globals/globals-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/node/globals/globals-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/node/globals/globals-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/node/globals/globals-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/resolve-typings/hello.js: -------------------------------------------------------------------------------- 1 | exports.value = "Hello!"; -------------------------------------------------------------------------------- /tests/integration-latest/src/resolve-typings/js-lib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/resolve-typings/js-lib.d.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/resolve-typings/js-lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/resolve-typings/js-lib.js -------------------------------------------------------------------------------- /tests/integration-latest/src/resolve-typings/resolve-typings-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/resolve-typings/resolve-typings-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/resolve-typings/resolve-typings-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/resolve-typings/resolve-typings-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/transforms/es6-transform-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/transforms/es6-transform-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/transforms/es6-transform-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/transforms/es6-transform-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/typescript/compiler-paths/compiler-paths-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/typescript/compiler-paths/compiler-paths-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/typescript/compiler-paths/compiler-paths-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/typescript/compiler-paths/compiler-paths-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/typescript/language-features/language-features-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/typescript/language-features/language-features-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/typescript/language-features/language-features-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/typescript/language-features/language-features-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/window-global/window-global-tester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/window-global/window-global-tester.js -------------------------------------------------------------------------------- /tests/integration-latest/src/window-global/window-global-tester.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/window-global/window-global-tester.spec.js -------------------------------------------------------------------------------- /tests/integration-latest/src/window-global/window-global-tester.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/window-global/window-global-tester.spec.ts -------------------------------------------------------------------------------- /tests/integration-latest/src/window-global/window-global-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/src/window-global/window-global-tester.ts -------------------------------------------------------------------------------- /tests/integration-latest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monounity/karma-typescript/HEAD/tests/integration-latest/tsconfig.json --------------------------------------------------------------------------------