mirror of
https://github.com/status-im/react-native.git
synced 2025-02-22 14:18:23 +00:00
Summary: Metro and react-native now have first-class support to Typescript with Babel 7, but react-native Jest preset needs specific settings to work with .ts and .tsx files. This PR updates react-native Jest preset to use Typescript out of the box. Pull Request resolved: https://github.com/facebook/react-native/pull/22217 Differential Revision: D13396206 Pulled By: cpojer fbshipit-source-id: aa4e4163e555c6b213457755bc13432fa1cddf5e
40 lines
1.0 KiB
JSON
40 lines
1.0 KiB
JSON
{
|
|
"haste": {
|
|
"defaultPlatform": "ios",
|
|
"platforms": ["android", "ios", "native"],
|
|
"hasteImplModulePath": "<rootDir>/node_modules/react-native/jest/hasteImpl.js",
|
|
"providesModuleNodeModules": [
|
|
"react-native"
|
|
]
|
|
},
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json",
|
|
"jsx",
|
|
"node",
|
|
"ts",
|
|
"tsx"
|
|
],
|
|
"moduleNameMapper": {
|
|
"^React$": "<rootDir>/node_modules/react"
|
|
},
|
|
"modulePathIgnorePatterns": [
|
|
"<rootDir>/node_modules/react-native/Libraries/react-native/"
|
|
],
|
|
"transform": {
|
|
"^.+\\.(js|ts|tsx)$": "babel-jest",
|
|
"^.+\\.(bmp|gif|jpg|jpeg|mp4|png|psd|svg|webp)$": "<rootDir>/node_modules/react-native/jest/assetFileTransformer.js"
|
|
},
|
|
"transformIgnorePatterns": [
|
|
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element)"
|
|
],
|
|
"testMatch": [
|
|
"**/__tests__/**/*.(js|ts|tsx)",
|
|
"**/?(*.)+(spec|test).(js|ts|tsx)"
|
|
],
|
|
"setupFiles": [
|
|
"<rootDir>/node_modules/react-native/jest/setup.js"
|
|
],
|
|
"testEnvironment": "node"
|
|
}
|