如何在tsconfig.ts中正确设置路径?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在tsconfig.ts中正确设置路径?相关的知识,希望对你有一定的参考价值。

我正在一个项目上,我希望能够设置自定义路径以加快访问速度,但是我一直收到错误消息“找不到模块@ env / environment”。

这是我的路径:Path config

{ 
 "compileOnSave": false,
 "compilerOptions": {
 "baseUrl": "./",
 "paths": {
   "@env/*": ["./src/environments/*"],
   "@core/*": ["./src/app/@core/*"]
 },
 "outDir": "./dist/out-tsc",
 .
 .
 .

当我尝试将其导入组件时,找不到它。我做错什么了吗?

这是我当前的设置:

Angular CLI:8.3.26节点:12.16.1操作系统:darwin x64角度:8.2.14

Visual Studio代码:1.44.2

答案

也许尝试一下:

npm i --save module-alias

Taken from here

以上是关于如何在tsconfig.ts中正确设置路径?的主要内容,如果未能解决你的问题,请参考以下文章

typescript tsconfig.ts

Vue3+TS Day34 - tsconfig.ts 、defineComponent、父组件调用子组件方法(函数)

角度的 Tsconfig

如何在 PHP 中正确设置返回路径?

如何在 angular2 路由中正确设置应用程序上下文路径?

如何在 maven-war-plugin 中正确设置清单类路径