mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-09-20 14:05:39 +00:00
10 lines
164 B
JavaScript
10 lines
164 B
JavaScript
module.exports = {
|
|
preset: "ts-jest",
|
|
testEnvironment: "node",
|
|
transform: {
|
|
'^.+\\.ts$': ['ts-jest', {
|
|
tsconfig: 'tests/tsconfig.json'
|
|
}]
|
|
}
|
|
}
|