├── .editorconfig ├── .gitignore ├── .nvmrc ├── .travis.yml ├── Gruntfile.coffee ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── karma.conf.debug.js ├── karma.conf.js ├── spec1.ts ├── spec2.ts └── src └── person.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyt/karma-typescript-preprocessor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 6.9.2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyt/karma-typescript-preprocessor/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyt/karma-typescript-preprocessor/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyt/karma-typescript-preprocessor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyt/karma-typescript-preprocessor/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyt/karma-typescript-preprocessor/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyt/karma-typescript-preprocessor/HEAD/package.json -------------------------------------------------------------------------------- /test/karma.conf.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyt/karma-typescript-preprocessor/HEAD/test/karma.conf.debug.js -------------------------------------------------------------------------------- /test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyt/karma-typescript-preprocessor/HEAD/test/karma.conf.js -------------------------------------------------------------------------------- /test/spec1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyt/karma-typescript-preprocessor/HEAD/test/spec1.ts -------------------------------------------------------------------------------- /test/spec2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyt/karma-typescript-preprocessor/HEAD/test/spec2.ts -------------------------------------------------------------------------------- /test/src/person.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeyt/karma-typescript-preprocessor/HEAD/test/src/person.ts --------------------------------------------------------------------------------