在Angular中,因?yàn)閷ebpack打包內(nèi)置了,所以設(shè)置webpack的alias需要按照如下方式
別名設(shè)置
// tsconfig.json文件中增加如下配置
"paths": {
"@shared": [ "app/shared" ],
"@shared/*": [ "app/shared/*" ],
"@app": [ "app" ],
"@app/*": [ "app/*" ]
}
別名使用
import test from '@app/test'