realfavicon
Version:
Check favicon with RealFaviconGenerator from the CLI
15 lines (12 loc) • 329 B
text/typescript
import { pathsToModuleNameMapper, JestConfigWithTsJest } from "ts-jest"
import type { Config } from 'jest'
import path from "path";
const config = {
preset: 'ts-jest',
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
moduleNameMapper: pathsToModuleNameMapper({
"@/*": ["./*.ts"]
}),
};
export default config