1
0
mirror of https://github.com/fluencelabs/aqua-playground synced 2025-03-15 08:41:04 +00:00

19 lines
372 B
JavaScript
Raw Permalink Normal View History

/** @type {import('ts-jest').JestConfigWithTsJest} */
2023-02-21 11:25:00 +04:00
module.exports = {
extensionsToTreatAsEsm: ['.ts'],
"preset": "ts-jest/presets/default-esm",
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
2023-02-21 11:25:00 +04:00
},
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"useESM": true
}
]
}
2023-02-21 11:25:00 +04:00
};