Angular设置路径别名

在Angular中,因为将webpack打包内置了,所以设置webpack的alias需要按照如下方式

别名设置

1
2
3
4
5
6
7
// tsconfig.json文件中增加如下配置
"paths": {
"@shared": [ "app/shared" ],
"@shared/*": [ "app/shared/*" ],
"@app": [ "app" ],
"@app/*": [ "app/*" ]
}

别名使用

1
import test from '@app/test'