mirror of
https://github.com/mikecao/umami.git
synced 2025-05-09 07:03:23 +08:00
11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
export default {
|
|
roots: ['./src'],
|
|
testMatch: ['**/__tests__/**/*.+(ts|tsx|js)', '**/?(*.)+(spec|test).+(ts|tsx|js)'],
|
|
transform: {
|
|
'^.+\\.(ts|tsx)$': 'ts-jest',
|
|
},
|
|
moduleNameMapper: {
|
|
'^@/(.*)$': '<rootDir>/src/$1',
|
|
},
|
|
};
|