mirror of
https://github.com/laurent22/joplin.git
synced 2025-04-01 21:24:45 +02:00
12 lines
234 B
JavaScript
12 lines
234 B
JavaScript
// Sync object
|
|
/** @type {import('@jest/types').Config.InitialOptions} */
|
|
const config = {
|
|
preset: 'react-native',
|
|
modulePathIgnorePatterns: [
|
|
'<rootDir>/example/node_modules',
|
|
'<rootDir>/lib/',
|
|
],
|
|
};
|
|
|
|
module.exports = config;
|