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

./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 别名 路径及代码提示)