Skip to content

Commit

Permalink
build(common): update expo to sdk-33
Browse files Browse the repository at this point in the history
  • Loading branch information
artyorsh authored Jun 10, 2019
1 parent c32b8e2 commit e914362
Show file tree
Hide file tree
Showing 22 changed files with 3,463 additions and 6,192 deletions.
11 changes: 4 additions & 7 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { defaults: tsJestConfig } = require('ts-jest/presets');
const { pathsToModuleNameMapper } = require('ts-jest/utils');
const jestConfig = require('./tsconfig.jest');
const tsConfig = require('./tsconfig.dev');

module.exports = {
...tsJestConfig,
Expand All @@ -12,24 +12,21 @@ module.exports = {
globals: {
'ts-jest': {
babelConfig: true,
tsConfig: './tsconfig.jest.json',
tsConfig: './tsconfig.test.json',
},
},
cacheDirectory: './dist/jest/cache',
coverageDirectory: './dist/jest/coverage',
snapshotResolver: '<rootDir>/jest.config.snapshot',
moduleNameMapper: pathsToModuleNameMapper(jestConfig.compilerOptions.paths, {
moduleNameMapper: pathsToModuleNameMapper(tsConfig.compilerOptions.paths, {
prefix: '<rootDir>/',
}),
modulePathIgnorePatterns: [
'<rootDir>/src/playground/',
],
testPathIgnorePatterns: [
'<rootDir>/dist',
'<rootDir>/node_modules',
'<rootDir>/dist',
'<rootDir>/docs',
],
transformIgnorePatterns: [
'node_modules/(?!(react-native|react-native-cookies|@eva-design)/)'
],
};
Loading

0 comments on commit e914362

Please sign in to comment.