* chore: Update module test runner to support DmlEntities when needed * update es version for core test utils * fix test * update swc config
16 lines
331 B
JavaScript
16 lines
331 B
JavaScript
module.exports = {
|
|
transform: {
|
|
"^.+\\.[jt]s$": [
|
|
"@swc/jest",
|
|
{
|
|
jsc: {
|
|
parser: { syntax: "typescript", decorators: true },
|
|
transform: { decoratorMetadata: true },
|
|
},
|
|
},
|
|
],
|
|
},
|
|
testEnvironment: `node`,
|
|
moduleFileExtensions: [`js`, `jsx`, `ts`, `tsx`, `json`],
|
|
}
|