mirror of
https://github.com/zhigang1992/nativewind.git
synced 2026-06-15 18:27:52 +08:00
15 lines
352 B
JavaScript
15 lines
352 B
JavaScript
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
|
|
module.exports = {
|
|
preset: "react-native",
|
|
globals: {
|
|
"ts-jest": {
|
|
tsconfig: "tsconfig.json",
|
|
},
|
|
},
|
|
transform: {
|
|
"^.+\\.tsx?$": "ts-jest",
|
|
},
|
|
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"],
|
|
testPathIgnorePatterns: ["/node_modules/"],
|
|
};
|