jupystar
Version:
Converter from Jupyter notebook (ipynb) to Starboard notebook
31 lines (30 loc) • 663 B
JavaScript
module.exports = {
"testEnvironment": "node",
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 40,
"functions": 55,
"lines": 55,
"statements": 55
}
},
"testPathIgnorePatterns": [
"/dist/"
],
"collectCoverageFrom": [
"src/**/*.{js,ts}"
]
}