UNPKG

@kcws/web-rig

Version:

a rig package for web environment projects using heft

33 lines (32 loc) 791 B
{ "extends": "@rushstack/heft-jest-plugin/includes/jest-web.config.json", "reporters": [ "default", [ "jest-html-reporters", { "publicPath": "temp/test/html" } ], [ "jest-junit", { "outputDirectory": "temp/test", "outputName": "junit.xml" } ] ], // Enabled code coverage by default "collectCoverage": true, "coverageReporters": ["text", ["lcov", { "projectRoot": "../.." }]], "collectCoverageFrom": [ "lib-commonjs/**/*.{cjs,js}", "!lib-commonjs/**/*.d.ts", "!lib-commonjs/**/*.test.{cjs,js}", "!lib-commonjs/**/*.type.{cjs,js}", "!lib-commonjs/**/test/**", "!lib-commonjs/**/__tests__/**", "!lib-commonjs/**/__fixtures__/**", "!lib-commonjs/**/__mocks__/**" ] }