mframejs
Version:
simple framework
33 lines • 680 B
JSON
{
"verbose": true,
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": ".*(.test|.spec)(.js?|.ts?)",
"testPathIgnorePatterns": [
"<rootDir>/build",
"<rootDir>/dist"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"roots": [
"<rootDir>/test/"
],
"testEnvironment": "node",
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"coverageDirectory": "./coverage",
"collectCoverage": false,
"coverageReporters": [
"json",
"html",
"text",
"lcov",
"clover"
]
}