./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"
}
]
]
};
网友评论