我无法导入在主项目中打包和引用的子模块之一中定义的组件。一切似乎都很好,但我仍然看到一个错误 -
./src/app/app.module.ts 中的错误找不到模块:错误:无法解析“C:\Users\anujin”中的“@first-project/second-project/app/regist ration/registration.component” \Documents\workspace-vs-code\ FirstProject\src\app' ./src/app/app-routing.module.ts 中的错误 找不到模块:错误:无法解析 '@first-project/second-project/ 'C:\Users\anujin\Documents\workspace-vs-code\ FirstProject\src\app' 中的 app/regist ration/registration.component'
我创建了两个项目 -
- 第一个项目
- 第二个项目
我创建了一个我需要RegistrationComponent
在其中使用的.SecondProject
FirstProject
第一个项目文件:
package.json
{
"name": "@first-project/second-project",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"packagr": "ng-packagr -p ng-package.json"
},
"private": true,
"dependencies": {
"@angular/animations": "~7.2.0",
"@angular/common": "~7.2.0",
"@angular/compiler": "~7.2.0",
"@angular/core": "~7.2.0",
"@angular/forms": "~7.2.0",
"@angular/platform-browser": "~7.2.0",
"@angular/platform-browser-dynamic": "~7.2.0",
"@angular/router": "~7.2.0",
"core-js": "^2.5.4",
"ng-packagr": "^4.7.0",
"rxjs": "~6.3.3",
"tsickle": "^0.34.3",
"tslib": "^1.9.0",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.0",
"@angular/cli": "~7.3.1",
"@angular/compiler-cli": "~7.2.0",
"@angular/language-service": "~7.2.0",
"@types/node": "~8.9.4",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"codelyzer": "~4.5.0",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~3.1.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "~3.2.2"
}
}
ng-package.json
-
{
"$schema": "./node_modules/ng-packagr/package.schema.json",
"lib": {
"entryFile": "./src/public_api.ts"
},
"whitelistedNonPeerDependencies": [
"@angular/animations",
"@angular/cdk",
"@angular/common",
"@angular/compiler",
"@angular/forms",
"@angular/core",
"@angular/http",
"@angular/material",
"@angular/platform-browser",
"@angular/platform-browser-dynamic",
"@angular/router",
"core-js",
"rxjs",
"tsickle",
"zone.js",
"ng-packagr"
]
}
public_api.ts
export * from './app/app.module';
export * from './app/registration/registration.component';
我在FirstProject
-
- npm 运行打包程序
- 光盘区
- npm 包
然后我提到了包装SecondProject
在FirstProject
.
FirstProject 文件 -
package.json
{
"name": "first-project",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "~7.2.0",
"@angular/cdk": "~7.3.1",
"@angular/common": "~7.2.0",
"@angular/compiler": "~7.2.0",
"@angular/core": "~7.2.0",
"@angular/forms": "~7.2.0",
"@angular/material": "^7.3.1",
"@angular/platform-browser": "~7.2.0",
"@angular/platform-browser-dynamic": "~7.2.0",
"@angular/router": "~7.2.0",
"core-js": "^2.5.4",
"hammerjs": "^2.0.8",
"rxjs": "~6.3.3",
"tslib": "^1.9.0",
"zone.js": "~0.8.26",
"@first-project/second-project": "<path>/SecondProject/dist/first-project-second-project-0.0.0.tgz"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.0",
"@angular/cli": "~7.3.1",
"@angular/compiler-cli": "~7.2.0",
"@angular/language-service": "~7.2.0",
"@types/node": "~8.9.4",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"codelyzer": "~4.5.0",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~3.1.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "~3.2.2"
}
}
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { RegistrationComponent } from '@first-project/second-project/app/registration/registration.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
@NgModule({
declarations: [
AppComponent,
RegistrationComponent
],
imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
app.routing.ts
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { RegistrationComponent } from '@first-project/second-project/app/registration/registration.component';
const routes: Routes = [
{path: 'registration', component: RegistrationComponent}
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }
我做npm install
了FirstProject
,我看到节点模块下的引用正确创建,但我在npm start
这里做了FirstProject
,它给出了以下错误 -
./src/app/app.module.ts 中的错误找不到模块:错误:无法解析“C:\Users\anujin”中的“@first-project/second-project/app/regist ration/registration.component” \Documents\workspace-vs-code\ FirstProject\src\app' ./src/app/app-routing.module.ts 中的错误 找不到模块:错误:无法解析 '@first-project/second-project/ 'C:\Users\anujin\Documents\workspace-vs-code\ FirstProject\src\app' 中的 app/regist ration/registration.component'
我无法理解我在这里缺少什么。