stryker-api
Version:
The api for the extendable JavaScript mutation testing framework Stryker
13 lines • 420 B
TypeScript
import { Config } from '../../config';
export default interface TranspilerOptions {
/**
* The stryker config
*/
config: Config;
/**
* Indicates whether or not the source maps need to be produced as part of the transpiler output.
* If false, the transpiler may optimize to not calculate source maps.
*/
produceSourceMaps: boolean;
}
//# sourceMappingURL=TranspilerOptions.d.ts.map