CommunitySolidServer/test/tsconfig.json
Joachim Van Herwegen cccca96d28 test: Workaround for Jest dynamic import issues
Dynamic imports cause segmentation faults with Jest:
https://github.com/nodejs/node/issues/35889.
We work around this by handling imports in IdentityProviderFactory
differently when Jest is running.
For unit tests we use a different tsconfig
that transpiles dynamic imports differently,
as those are also used in AppRunner.
2023-10-06 08:39:07 +02:00

10 lines
123 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"moduleResolution": "node"
},
"include": [
"."
]
}