tiddlywiki-plugin-dev
Version:
[](https://github.com/tiddly-gittly)
18 lines (17 loc) • 389 B
JavaScript
export default {
testEnvironment: 'node',
roots: ['<rootDir>/tests'],
transform: {
'^.+\\.tsx?$': [
'ts-jest',
{
tsconfig: '<rootDir>/tests/tsconfig.json',
},
],
},
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
'^chalk$': '<rootDir>/tests/mocks/chalk.ts',
},
moduleFileExtensions: ['ts', 'tsx', 'js', 'mjs', 'cjs', 'json'],
};