dataset-xml
Version:
Read Dataset-XML format in JavaScript
21 lines (20 loc) • 390 B
JavaScript
module.exports = {
globals: {
"ts-jest": {
tsConfig: "tsconfig.json"
}
},
moduleFileExtensions: [
"ts",
"js"
],
transform: {
"^.+\\.(ts|tsx)$": "ts-jest"
},
testMatch: [
"**/test/**/*.test.(ts|js)",
"**/test/**/*.xml"
],
testPathIgnorePatterns: ['dist'],
testEnvironment: "node"
};