UNPKG

nowjs-core

Version:

NowCanDo Javascript Core [nowjs-core] is a library written by TypeScript code maintains under Apache 2.0 licence

38 lines 832 B
module.exports = { "globals": { "ts-jest": { "tsConfig": "./tsconfig.test.json" } }, "collectCoverageFrom": [ "src/**/*.{ts,tsx}", "!**/node_modules/**", ], "verbose": true, "transform": { ".(ts|tsx)": "ts-jest" }, "testRegex": "(\\.(test|spec))\\.(ts|tsx)$", "testPathIgnorePatterns":[ "test/bpms\\-old"], "modulePathIgnorePatterns": ["test/bpms\\-old"], "moduleFileExtensions": [ "ts", "tsx", "js" ], "coveragePathIgnorePatterns": [ "/node_modules/", "/test/", "/lib/", "/dist/", ], "coverageThreshold": { "global": { "branches": 90, "functions": 90, "lines": 90, "statements": 90 } } }