项目作者: syanbo
项目描述 :
React Native 相关,Prettier ESLint Redux Rematch使用
高级语言: JavaScript
项目地址: git://github.com/syanbo/RNPlayground.git
React-Native
设置路径别名支持IDE跳转联想
- yarn add -D babel-plugin-root-import
- babel.config.js 添加 plugins
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: [
[
'babel-plugin-root-import',
{
paths: [
{
rootPathPrefix: '~',
rootPathSuffix: 'src',
},
],
},
],
],
};
{
"compilerOptions": {
"jsx": "react-native",
"allowSyntheticDefaultImports": false,
"experimentalDecorators": true,
"baseUrl": ".",
"paths": {
"~/*": ["src/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}
import env from '~/constants/env';