美文网首页
vscode 中 react native 别名 路径及代码提示

vscode 中 react native 别名 路径及代码提示

作者: Vissioon | 来源:发表于2020-05-06 19:06 被阅读0次

    ./jsconfig.json

    {
        "compilerOptions": {
            // "experimentalDecorators": true,
            "baseUrl": ".",
            "paths": {
                "@/*": ["src/*"],
            }
        },
        "include": ["src/**/*"],
        "exclude": ["node_modules", "dist", "ios", "android"],
    }
    

    babel.config.js

    module.exports = {
      plugins: [
        [
          "babel-plugin-root-import",
          {
            "rootPathPrefix": "@",
            "rootPathSuffix": "src"
          }
        ]
      ]
    };
    

    相关文章

      网友评论

          本文标题:vscode 中 react native 别名 路径及代码提示

          本文链接:https://www.haomeiwen.com/subject/baieectx.html