UNPKG

math-interval-2

Version:

Create math intervals like '(-∞, 100]' and test values

18 lines 387 B
module.exports = function (config) { config.set({ frameworks: ["jasmine", "karma-typescript"], files: [ { pattern: "src/**/*.ts" }, ], preprocessors: { "**/*.ts": ["karma-typescript"], }, karmaTypescriptConfig: { compilerOptions: { module: "commonjs" }, tsconfig: "./tsconfig.json", }, browsers: ["Chrome"] }); };