mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2026-06-22 20:00:39 +00:00
78062bb75c
Signed-off-by: Erik Michelson <github@erik.michelson.eu>
28 lines
499 B
JSON
28 lines
499 B
JSON
{
|
|
"testRegex" : "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
|
|
"testPathIgnorePatterns" : [
|
|
"/dist/"
|
|
],
|
|
"moduleFileExtensions" : [
|
|
"ts",
|
|
"tsx",
|
|
"js"
|
|
],
|
|
"extensionsToTreatAsEsm" : [
|
|
".ts"
|
|
],
|
|
"moduleNameMapper" : {
|
|
"^(\\.{1,2}/.*)\\.js$" : "$1"
|
|
},
|
|
"transformIgnorePatterns": ["<rootDir>/node_modules/"],
|
|
"transform" : {
|
|
"^.+\\.tsx?$" : [
|
|
"ts-jest",
|
|
{
|
|
"tsconfig" : "tsconfig.cjs.json",
|
|
"useESM" : true
|
|
}
|
|
]
|
|
}
|
|
}
|