Как устранить эту ошибку сборки в Angular 8 ASP.NET - PullRequest
0 голосов
/ 13 июня 2019

Я получаю эту ошибку Не могу найти модуль '@ angular / core'.и поищите в этом помощь, и есть вопросы, но мне ничего не помогает.

Имеет ли это отношение к неправильному импорту версий?В командных окнах я запускаю

L: \ NetProject \ BooksProject \ BooksProject \ ClientApp> ng build

и получаю ту же ошибку

BooksProject> 
BooksProject> fail: Microsoft.AspNetCore.SpaServices[0]
BooksProject>       ERROR in ../../../node_modules/@angular/cdk/bidi/typings/dir-document-token.d.ts(8,32): error TS2307: Cannot find module '@angular/core'.
BooksProject>       ../../../node_modules/@angular/cdk/bidi/typings/dir.d.ts(8,59): error TS2307: Cannot find module '@angular/core'.
BooksProject>       ../../../node_modules/@angular/cdk/bidi/typings/directionality.d.ts(8,41): error TS2307: Cannot find module '@angular/core'.
BooksProject>       ../../../node_modules/@angular/cdk/text-field/typings/autofill.d.ts(9,69): error TS2307: Cannot find module '@angular/core'.
BooksProject>       ../../../node_modules/@angular/cdk/text-field/typings/autofill.d.ts(10,28): error TS2307: Cannot find module 'rxjs'.
BooksProject>       ../../../node_modules/@angular/cdk/text-field/typings/autosize.d.ts(8,71): error TS2307: Cannot find module '@angular/core'.
BooksProject> 

Если я отлаживаю приложение в окне браузера get с только текстом «Cannot GET /»

Я удалил папку node_modules и не установил npm

Я запустил команду после предложения от @HariniPСпасибо!

npm i @ angular / core

И это вывод, мне нужно исправить все это ПРЕДУПРЕЖДЕНИЕ?

L:\NetProject\BooksProject\BooksProject\ClientApp>npm i @angular/core
npm WARN @angular/material@7.3.7 requires a peer of @angular/cdk@7.3.7 but none is installed. You must install peer dependencies yourself.
npm WARN @angular/platform-server@8.1.0-next.1 requires a peer of @angular/animations@8.1.0-next.1 but none is installed. You must install peer dependencies yourself.
npm WARN @angular/platform-server@8.1.0-next.1 requires a peer of @angular/common@8.1.0-next.1 but none is installed. You must install peer dependencies yourself.
npm WARN @angular/platform-server@8.1.0-next.1 requires a peer of @angular/compiler@8.1.0-next.1 but none is installed. You must install peer dependencies yourself.
npm WARN @angular/platform-server@8.1.0-next.1 requires a peer of @angular/core@8.1.0-next.1 but none is installed. You must install peer dependencies yourself.
npm WARN @angular/platform-server@8.1.0-next.1 requires a peer of @angular/platform-browser@8.1.0-next.1 but none is installed. You must install peer dependencies yourself.
npm WARN @angular/platform-server@8.1.0-next.1 requires a peer of @angular/platform-browser-dynamic@8.1.0-next.1 but none is installed. You must install peer dependencies yourself.
npm WARN The package protractor is included as both a dev and production dependency.
npm WARN The package ts-node is included as both a dev and production dependency.
npm WARN The package tslint is included as both a dev and production dependency.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.9 (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.9: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})

+ @angular/core@8.0.0
updated 1 package and audited 19503 packages in 33.58s
found 1 moderate severity vulnerability
  run `npm audit fix` to fix them, or `npm audit` for details

L:\NetProject\BooksProject\BooksProject\ClientApp>

Ответы [ 2 ]

1 голос
/ 21 июня 2019

я исправил свою проблему, добавив:

<TypeScriptExperimentalDecorators>True</TypeScriptExperimentalDecorators> <TypeScriptEmitDecoratorMetadata>True</TypeScriptEmitDecora

эта ссылка может помочь вам Ошибка ввода

0 голосов
/ 13 июня 2019

Установите angular с помощью команды npm i @angular/core в каталоге вашего проекта.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...