mirror of
https://github.com/decaf-dev/obsidian-vault-explorer.git
synced 2026-07-22 10:10:31 +00:00
8 lines
181 B
JavaScript
8 lines
181 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
preset: "ts-jest",
|
|
testEnvironment: "node",
|
|
moduleNameMapper: {
|
|
"^src/(.*)$": "<rootDir>/src/$1"
|
|
}
|
|
};
|