在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1.使用npm 或 yarn 安装 babel-plugin-root-importnpm install babel-plugin-root-import --save-dev
or
yarn add babel-plugin-root-import --dev
2.使用babel 配置 babel-plugin-root-import使用.babelrc 或 babel.conf.js 两者只要配一个! a.使用.babelrc{ "plugins": [ ["babel-plugin-root-import"], { rootPathSuffix: "./src", rootPathPrefix: "@/" } ] } b.使用babel.conf.jsmodule.exports = function(api) { api.cache(true); return { presets: ["babel-preset-expo", "mobx"], plugins: [ [ "babel-plugin-root-import", { rootPathSuffix: "./src", rootPathPrefix: "@/" } ] ] }; };
vscode 不识别“@/youpath”解决:需要在tsconfig.json 添加以下配置{ "compilerOptions": { "baseUrl": ".", "paths": { "@/*": ["src/*"] } } }
参考文档: https://www.npmjs.com/package/babel-plugin-root-import babel-plugin-root-import 插件文档 https://www.jianshu.com/p/6d2783f1ab51 tsconfig.json 配置列表 |
请发表评论