bonjurmrfirst / ng4-files

20 stars 15 forks source link

Module build failed: Error: ..\node_modules\angular4-files-upload\src\index.ts is not part of the compilation output. Please check the other error messages for details. #12

Open andreikazmirovich opened 6 years ago

andreikazmirovich commented 6 years ago

Angular 5 CLI 1.5

On Angular 4 and CLI <1.5 that worked good, but not after update image

mjurczyk commented 6 years ago

Due to angular-cli issues, you must add the module manually to your tsconfig.json:

{
   /* ... config ... */
  "include": [
    /* ... project files paths ... */,
    "node_modules/angular4-files-upload/index.ts"
  ]
}