mirror of
https://github.com/egoist/tsup.git
synced 2025-12-08 20:35:58 +00:00
9 lines
288 B
JavaScript
9 lines
288 B
JavaScript
module.exports = {
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
'^.+\\.tsx?$': 'ts-jest'
|
|
},
|
|
testRegex: '(/__test__/.*|(\\.|/)(test|spec))\\.tsx?$',
|
|
testPathIgnorePatterns: ['/node_modules/', '/dist/', '/types/'],
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node']
|
|
} |