Sunday, June 2, 2024
 Popular · Latest · Hot · Upcoming
21
rated 0 times [  24] [ 3]  / answers: 1 / hits: 6888  / 5 Years ago, sun, june 30, 2019, 12:00:00

After a migration from Angular 4.4 to Angular 8.0. I am having the following error:




ERROR in ./src/attributes/import/import.component.ts
Module not found: Error: Can't resolve 'dropzone' in 'C:....srcattributesimport'




I have already deleted my node_modules; cleaned the cache; re-installed all dependencies with yarn but I still stuck on it.



Here is how I am declaring in my .ts file.



import * as  Dropzone from 'dropzone';


I can see that the folder C: .. ..node_modules@typesdropzone exists.



My tsconfig.json file is inside the src folder:



{
compilerOptions: {
declaration: false,
emitDecoratorMetadata: true,
experimentalDecorators: true,
lib: [ es6, dom ],
mapRoot: ./,
module: es6,
moduleResolution: node,
outDir: ../dist/out-tsc,
sourceMap: true,
target: es5,
typeRoots: [
../node_modules/@types
],
baseUrl: .,
paths: {
@abp/*: [ ../node_modules/abp-ng2-module/dist/src/* ],
@app/*: [ ./app/* ],
@shared/*: [ ./shared/* ],
@node_modules/*: [ ../node_modules/* ],
rxjs: [../node_modules/rxjs/*]
}
},
exclude: [
node_modules
]


}



and this is my package.json



dependencies: {
@angular/animations: ^8.0.3,
@angular/common: ^8.0.3,
@angular/compiler: ^8.0.3,
@angular/core: ^8.0.3,
@angular/forms: ^8.0.3,
@angular/platform-browser: ^8.0.3,
@angular/platform-browser-dynamic: ^8.0.3,
@angular/router: ^8.0.3,
@angular/service-worker: ^8.0.3,
@fortawesome/fontawesome-free: ^5.1.0,
@types/bootstrap: ^3.3.36,
@types/dropzone: ^5.0.6,
@types/file-saver: 0.0.1,
@types/jquery: ^2.0.48,
@types/jquery.blockui: 0.0.27,
@types/lodash: ^4.14.82,
@types/moment: ^2.13.0,
@types/moment-timezone: ^0.2.35,
@types/signalr: ^2.2.35,
@types/toastr: ^2.1.35,
abp-ng2-module: ^4.0.0,
abp-web-resources: ^3.8.5,
ace-builds: ^1.4.5,
angular2-hotkeys: ^2.1.4,
angular2-query-builder: ^0.4.2,
block-ui: ^2.70.1,
bootstrap: ^3.3.7,
bootswatch: ^3.3.7,
chart.js: ^2.7.2,
core-js: ^2.5.1,
file-saver: ^1.3.3,
install: ^0.12.2,
jquery: ^3.4.1,
jquery-migrate: ^3.0.1,
js-cookie: ^2.1.4,
lodash: ^4.17.11,
moment: ^2.20.1,
moment-timezone: ^0.5.13,
ng2-ace-editor: ^0.3.9,
ngx-bootstrap: ^1.9.3,
ngx-clipboard: ^12.1.2,
ngx-device-detector: ^1.3.7,
ngx-vis: 0.1.0,
ngx-window-token: 0.0.4,
nswag: ^13.0.3,
primeng: ^4.3.0,
push.js: 0.0.12,
restore: ^0.3.0,
rxjs: ^6.5.2,
rxjs-compat: 6.5.2,
signalr: ^2.2.2,
simple-line-icons: ^2.4.1,
spin.js: ^2.3.2,
sweetalert: ^1.1.3,
toastr: ^2.1.4,
ts-helpers: ^1.1.2,
tslib: ^1.9.0,
tslint: ^5.18.0,
typescript: 3.4.5,
typescript-string-operations: ^1.2.4,
update: ^0.7.4,
xlsx: 0.10.8,
zone.js: ~0.9.1
},
devDependencies: {
@angular-devkit/build-angular: ~0.800.6,
@angular/cli: ~8.0.6,
@angular/compiler-cli: ~8.0.3,
@angularclass/hmr: ^1.2.2,
@angular/language-service: ~7.0.0,
angular2-dropzone-wrapper:^2.0.3,
@types/jasminewd2: ~2.0.3,
@types/node: ~8.9.4,
@types/jasmine: ^2.5.53,
codelyzer: ^5.0.1,
install-peers: ^1.0.3,
jasmine-core: ^2.7.0,
jasmine-spec-reporter: ^3.2.0,
karma: ^2.0.3,
karma-chrome-launcher: ^2.2.0,
karma-cli: ^1.0.1,
karma-coverage-istanbul-reporter: ^0.2.3,
karma-jasmine: ^1.1.0,
karma-jasmine-html-reporter: ^0.2.2,
protractor: ^5.3.2,
ts-node: ^7.0.0,
tslint: ^5.18.0,
typescript: 3.4.5
}


What I am missing?



Thanks in advance for the help.


More From » angular

 Answers
10

Installing dropzone package resolved the problem. Before I've had only installed:
@types/dropzone.



yarn add dropzone

[#7095] Thursday, June 27, 2019, 5 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
manuel

Total Points: 747
Total Questions: 96
Total Answers: 95

Location: Argentina
Member since Thu, Mar 18, 2021
3 Years ago
manuel questions
Sat, Mar 28, 20, 00:00, 4 Years ago
Fri, Jan 17, 20, 00:00, 4 Years ago
Sat, Jun 15, 19, 00:00, 5 Years ago
Sat, Feb 9, 19, 00:00, 5 Years ago
;