UNPKG

@kcws/node-rig

Version:

a rig package for node environment projects using heft

34 lines (33 loc) 768 B
{ "extends": "@rushstack/heft-jest-plugin/includes/jest-shared.config.json", "testEnvironment": "jest-environment-node", "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/**/*.{cjs,js}", "!lib/**/*.d.ts", "!lib/**/*.test.{cjs,js}", "!lib/**/*.type.{cjs,js}", "!lib/**/test/**", "!lib/**/__tests__/**", "!lib/**/__fixtures__/**", "!lib/**/__mocks__/**" ] }