Skip to content
This repository has been archived by the owner on Mar 11, 2020. It is now read-only.

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

Open
bonjourclaudio opened this issue May 14, 2018 · 14 comments
Open

Comments

@bonjourclaudio
Copy link

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)

@damsorian
Copy link

Same issue with angular-cli only

@armanfatahi
Copy link

I have the same issue in Angular 6.

@jarodsmk
Copy link

Bump.

@Ge2theZ
Copy link

Ge2theZ commented Jul 5, 2018

push

@zerocewl
Copy link

up! (Angular 6 + Angular cli)

@jcpc91
Copy link

jcpc91 commented Jul 17, 2018

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

@Akitha
Copy link

Akitha commented Aug 29, 2018

Same Here

@curious-monggo
Copy link

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

@orahul1
Copy link

orahul1 commented Sep 20, 2018

any solution ?

@orahul1
Copy link

orahul1 commented Sep 21, 2018

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 ngx-quill@3.0.0

@test0017
Copy link

test0017 commented Dec 11, 2018

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

@orahul1
Copy link

orahul1 commented Dec 11, 2018

what kind of error you are getting?

@evanjmg
Copy link

evanjmg commented Jan 6, 2019

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.

@DanielSwiegersServian
Copy link

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"
  ],
}

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests