首先,我将使用路径命名角度项目中的三个关键文件:
ClientApp / app / app.module.ts
ClientApp /应用/ app.component.ts
ClientApp /店铺/ productList.component.ts
在我的app.module.ts文件中,两个import语句中的第二个失败:
import { AppComponent } from './app.component';
import { ProductList } from './shop/productList.component';
构建:找不到模块'./shop/productList.component'。
从我给出的路径列表中可以看出,实际上在Clientapp / shop / productList.component.ts中找到了一个导出类ProductList,那么为什么找不到该文件呢?
是否有任何设置文件限制搜索ts文件到特定文件夹?我确实有以下内容:
"include": [
"./ClientApp",
"./wwwroot/ts"
],
...在tsconfig.json中,如果这是相关的。有什么想法吗?