mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-05 22:56:11 +00:00
PR bumping packages, eslint, tsconfig, prettier and resolving all conflicts connected to it.
10 lines
245 B
TypeScript
10 lines
245 B
TypeScript
import { Config } from '@jest/types';
|
|
|
|
const config: Config.InitialOptions = {
|
|
testPathIgnorePatterns: ['/node_modules/', '/Example/', '/TestsExample/', '/FabricExample/'],
|
|
preset: 'react-native',
|
|
verbose: true,
|
|
};
|
|
|
|
export default config;
|