ngx-quill-editor icon indicating copy to clipboard operation
ngx-quill-editor copied to clipboard

Module build failed: ....is missing from the TypeScript compilation

Open bonjourclaudio opened this issue 6 years ago • 14 comments

The missing file seems to be part of a third party library. TS files in published libraries are often a sign of a badly packaged library. Please open an issue in the library repository to alert its author and ask them to package the library using the Angular Package Format (https://goo.gl/jB3GVv)

bonjourclaudio avatar May 14 '18 09:05 bonjourclaudio

Same issue with angular-cli only

damsorian avatar May 23 '18 20:05 damsorian

I have the same issue in Angular 6.

armanfatahi avatar Jun 12 '18 12:06 armanfatahi

Bump.

jarodsmk avatar Jun 19 '18 06:06 jarodsmk

push

Ge2theZ avatar Jul 05 '18 21:07 Ge2theZ

up! (Angular 6 + Angular cli)

zerocewl avatar Jul 16 '18 09:07 zerocewl

same issue WRROR in ./node_modules/ngx-quill-editor/index.ts Module build failed: Error: /Users/jcpc91/Google_Drive/Proyectos/ConsultorioRenal/hospitalRenal/node_modules/ngx-quill-editor/index.ts is missing from the TypeScript compilation. Please make sure it is in your tsconfig via the 'files' or 'include' property. The missing file seems to be part of a third party library. TS files in published libraries are often a sign of a badly packaged library. Please open an issue in the library repository to alert its author and ask them to package the library using the Angular Package Format

jcpc91 avatar Jul 17 '18 04:07 jcpc91

Same Here

Akitha avatar Aug 29 '18 06:08 Akitha

uninstall then use other packages for a while. seems maintainer is quite busy

curious-monggo avatar Sep 05 '18 23:09 curious-monggo

any solution ?

orahul1 avatar Sep 20 '18 15:09 orahul1

Initially I installed version 1.6.0 for angular version 6 then I switched to 3.0.0 which fixed this issue. step1 uninstall npm uninstall ngx-quill --save step2 npm install [email protected]

orahul1 avatar Sep 21 '18 06:09 orahul1

Hi Still facing same issue . Anyone is resolved it please let me know . The problem with ngx-quill-editor when i upgrade Angular4 to Angular5

test0017 avatar Dec 11 '18 11:12 test0017

what kind of error you are getting?

orahul1 avatar Dec 11 '18 13:12 orahul1

The missing file seems to be part of a third party library. TS files in published libraries are often a sign of a badly packaged library. Please open an issue in the library repository to alert its author and ask them to package the library using the Angular Package Format (https://goo.gl/jB3GVv).

with latest and also this ngx-quill-editor/index.ts is missing from the TypeScript compilation. Please make sure it is in your tsconfig via the 'files' or 'include' property.

evanjmg avatar Jan 06 '19 14:01 evanjmg

I had this issue specifically when running tests
I resolved it by including all ngx-quill-editor typescript files in my src/tsconfig.spec.json

{
  "extends": "../tsconfig.json",
  "compilerOptions": {
    "outDir": "../out-tsc/spec",
    "types": [
      "jasmine",
      "node"
    ]
  },
  "files": [
    "test.ts",
    "polyfills.ts"
  ],
  "include": [
    "**/*.spec.ts",
    "**/*.d.ts",
    "**/*.mock.ts",
    "../node_modules/ngx-quill-editor/**.ts"
  ],
}

DanielSwiegersServian avatar Jan 21 '19 01:01 DanielSwiegersServian