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 (
2 * 3 = {multiply(2, 3)}
);
};
const styles = StyleSheet.create({
wrap: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
});
export default App;
运行
yarn start --reset-cache
一定要记得加入 --reset-cache
标记清理缓存,否则配置不会生效。
结果
参考:官网指南
❤️支持
如果本文对你有帮助,点赞支持下我吧,你的「赞」是我创作的动力。