@abux/builder
Version:
Quick scaffolding code base to build web apps and games
13 lines (12 loc) • 314 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
testRegex: '.+/*\\.(test|spec)\\.(ts|tsx)$',
preset: 'ts-jest',
// testEnvironment: 'node'
transform: {
'^.+\\.tsx?$': [
'ts-jest'
// { tsconfig: require('@abux/resolve').resolve('./custom.config.json') }
]
}
}