mirror of
https://github.com/tauri-apps/typedoc-plugin-markdown.git
synced 2026-01-31 00:45:20 +01:00
17 lines
336 B
JavaScript
17 lines
336 B
JavaScript
const path = require('path');
|
|
module.exports = {
|
|
modulePaths: ['<rootDir>/dist'],
|
|
transform: {
|
|
'^.+\\.tsx?$': [
|
|
'ts-jest',
|
|
{
|
|
tsconfig: '<rootDir>/tsconfig.test.json',
|
|
},
|
|
],
|
|
},
|
|
verbose: true,
|
|
setupFiles: [path.join(__dirname, 'jest.helpers.ts')],
|
|
maxWorkers: '50%',
|
|
testTimeout: 30000,
|
|
};
|