mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-03 09:49:24 +02:00
13 lines
310 B
JavaScript
13 lines
310 B
JavaScript
/** @type {import('ts-jest').InitialOptionsTsJest} */
|
|
export default {
|
|
preset: "ts-jest/presets/default-esm",
|
|
globals: {
|
|
'ts-jest': {
|
|
tsconfig: 'tsconfig.test.json',
|
|
useESM: true,
|
|
},
|
|
},
|
|
moduleNameMapper: {
|
|
'^(\\.{1,2}/.*)\\.js$': '$1',
|
|
},
|
|
};
|