| 123456789101112131415161718192021222324252627282930 |
- /* eslint-env node */
- module.exports = function (api) {
- api.cache(true);
- return {
- presets: [
- "babel-preset-expo"
- ],
- plugins: [
- [
- "module-resolver",
- {
- extensions: [
- ".js",
- ".jsx",
- ".ts",
- ".tsx",
- ".json"
- ],
- alias: {
- "ncore-ui-kit": "../../src",
- "react": "../../node_modules/react",
- "react-native": "../../node_modules/react-native"
- }
- }
- ]
- ]
- };
- };
|