关于react-native:reactnative之路径别名配置

33次阅读

共计 1369 个字符,预计需要花费 4 分钟才能阅读完成。

1. 初始化我的项目

创立我的项目

应用 react-native 脚手架创立一个名字叫 rn-demo 的我的项目,应用官网 typescript 模板。

npx react-native init rn_demo --template react-native-template-typescript

留神:项目名称不能应用 - 字符,脚手架不反对。

运行我的项目

yarn ios

或者

yarn android

创立文件

如下图所示:

接下来要给 src/utils 门路配置别名。

2. 编辑 tsconfig.json 设置别名

用来给 .ts.tsx 引入文件的时候解析门路别名应用。

{
  "extends": "@tsconfig/react-native/tsconfig.json",     /* Recommended React Native TSConfig base */
  "compilerOptions": {
    /* Visit https://aka.ms/tsconfig.json to read more about this file */

    /* Completeness */
    "skipLibCheck": true,   /* Skip type checking all .d.ts files. */
    
    /* 配置根底地址 */
    "baseUrl": ".",
    /* 配置门路别名 */ 
    "paths": {"*": ["src/*"],
    } 
  }
}

3. 退出 babel 插件babel-plugin-module-resolver

用于 babel 打包的时候解析门路别名应用,不配置的话,运行过程中会报错,找不到文件。

yarn add -D babel-plugin-module-resolver

编辑 babel.config.js 配置插件

module.exports = {presets: ['module:metro-react-native-babel-preset'],
  plugins: [
    [
      'module-resolver',
      {root: ['./src'],
        extensions: ['.ios.js', '.android.js', '.js', '.ts', '.tsx', '.json'],
        alias: {'*': ['./src'],
        },
      },
    ],
  ],
};

4. 验证

批改 App.tsx

编写测试代码:

import React from 'react';
import {SafeAreaView, StyleSheet, Text} from 'react-native';

import multiply from 'utils/multiply'; // 应用别名导入模块

const App = () => {
  return (<SafeAreaView style={styles.wrap}>
      <Text>2 * 3 = {multiply(2, 3)}</Text>
    </SafeAreaView>
  );
};

const styles = StyleSheet.create({
  wrap: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
  },
});

export default App;

运行

yarn start --reset-cache

肯定要记得退出 --reset-cache 标记清理缓存,否则配置不会失效。

后果

参考:官网指南

❤️反对

如果本文对你有帮忙,点赞👍反对下我吧,你的「赞」是我创作的能源。

正文完
 0