Karma Preprocessor that compiles your TypeScript files.
Add karma-tsc-preprocessor as a devDependency in your package.json.
{
"devDependencies": {
"karma-tsc-preprocessor": "1.0.0"
}
}Or just issue the following command:
npm install karma-tsc-preprocessor --save-devUsing an existing tsconfig.json file:
module.exports = function(config) {
config.set({
bastPath: ".",
preprocessors: {
'**/*.ts': ['tsc']
},
plugins: [
"karma-tsc-preprocessor",
],
});
};You do not need to pass the tsc options if you want to use your existing tsconfig.json file that is relative to the basePath property
Using an existing tsconfig file with a non standard file name, for example tsconfig.tests.json:
module.exports = function(config) {
config.set({
bastPath: ".",
preprocessors: {
'**/*.ts': ['tsc']
},
tsc: {
configFile: 'tsconfig.tests.json'
},
plugins: [
"karma-tsc-preprocessor",
],
});
};Using a compilerOptions object:
module.exports = function(config) {
config.set({
preprocessors: {
'**/*.ts': ['tsc']
},
tsc: {
compilerOptions: {
module: "commonjs",
target: "es5",
sourceMap: true,
}
},
plugins: [
"karma-tsc-preprocessor",
],
});
};configFileproperty takes precedence overcompilerOptions.- Setting
sourceMapto true emulates theinlineSourceMapbehaviour.
See integration folder for example projects.
typescript is a peer dependency so consumers can use any supported version.
TypeScriptversion>= 2.0.0are supported.Node.jsversion>= 8.16.0are supported.
For more information on Karma see the homepage.