UNPKG

karma-typescript-preprocessor2

Version:

Leverage the power of gulp-typescript compiler to a simple yet powerfull karma preprocessor plugin

16 lines 476 B
interface IConfigOptions { tsconfigPath: string; /** * Used to transform files paths. */ transformPath?: (path:string)=>string | ((path:string)=>string)[]; /** * Use to ignore paths at you will */ ignorePath?: (path:string)=>string | ((path:string)=>string)[]; /** * Options passed to gulp-typescript. * All options avaliable by gulp-typescript can be configured here */ compilerOptions?: any; }