xport-js
Version:
Node.js library to read SAS XPORT v5/v6 data transport files (*.xpt).
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/**/*.xpt"
],
testPathIgnorePatterns: ['dist'],
testEnvironment: "node"
};