mirror of
https://github.com/hknsh/project-knedita.git
synced 2024-11-28 17:41:15 +00:00
9 lines
227 B
JavaScript
9 lines
227 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
setupFilesAfterEnv: ['<rootDir>/setupTest.ts'],
|
|
transform: {
|
|
'^.+\\.(t|j)sx?$': '@swc/jest'
|
|
}
|
|
}
|