* filter at pdf generation * full filter support via external package * added to jest ignore * fix intry * fix filter size * brightness weirdness fix * fix preview screen colors
12 lines
469 B
JavaScript
12 lines
469 B
JavaScript
module.exports = {
|
|
preset: 'react-native',
|
|
testMatch: [
|
|
'**/__tests__/**/*.test.{ts,tsx}',
|
|
'**/?(*.)+(spec|test).{ts,tsx}',
|
|
],
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'],
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!(react-native|@react-native|react-native-document-scanner-plugin|react-native-fs|react-native-html-to-pdf|react-native-share|react-native-color-matrix-image-filters|rn-color-matrices|concat-color-matrices)/)',
|
|
],
|
|
};
|