0
financeiro@logicpulse.com created
When I open a new created project using abp suite and when I open Angular project using Visual Studio code it says: Cannot find module '@abp/ng.core' in line "import { CoreModule } from '@abp/ng.core';" in path "src\app\app.module.ts"
Cannot find module '@angular/core'
What's the problem?
Markdown supported.
Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
3 Answer(s)
-
0
yes I have run yarn. Still missing that folder node_modules/@abp.
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
Check your Node version with this command:
node --versionIt must be v10.x.x.If Node version is correct, you can remove
yarn.lock,package-lock.json,node_modulesand run thenpm install.If the problem is still not resolved please run the following command to install depended ABP packages manually:
npm install @abp/ng.core @abp/ng.theme.shared @abp/ng.feature-management @abp/ng.permission-management @abp/ng.setting-management @abp/ng.setting-management.configMarkdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)