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

./jsconfig.json

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

【vscode|vscode 中 react native 别名 路径及代码提示】babel.config.js
module.exports = { plugins: [ [ "babel-plugin-root-import", { "rootPathPrefix": "@", "rootPathSuffix": "src" } ] ] };

    推荐阅读