1.config/index.js
const path = require('path') // eslint-disable-line const config = { alias: { '@': path.resolve(__dirname, '..', 'src') }, }
2. tsconfig.json
{ "compilerOptions": { "baseUrl": "./src", "paths": { "@/*":["./*"] }, } }
标签:src,Taro,路径,别名,path,config,const From: https://www.cnblogs.com/charlie098765/p/17528334.html