gpt4 book ai didi

angular - 如何在 angular-cli 中为长路径制作 “alias”?

转载 作者:太空狗 更新时间:2023-10-29 17:06:23 25 4
gpt4 key购买 nike

我正在使用 Angular CLI。如何从以下位置转换路径:

import {AppConfig, AppConfigInterface} from '../../../app.config';

类似于:

import {AppConfig, AppConfigInterface} from 'root/app.config';

最佳答案

在 tsconfig.json 中试试这个:

  {
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2017",
"dom"
],
"paths": {
"@services/*": ["app/services/*"] // here!
}
}
}

关于angular - 如何在 angular-cli 中为长路径制作 “alias”?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41506847/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com