Upon integrating @fireflysemantics/slice
into my Angular project, I encountered the following error:
ERROR in ./node_modules/@fireflysemantics/slice/index.ts
Module build failed (from ./node_modules/@ngtools/webpack/src/index.js):
Error: /home/ole/Temp/fstest/node_modules/@fireflysemantics/slice/index.ts is missing from the TypeScript compilation. Please make sure it is in your tsconfig via the 'files' or 'include' property.
In an attempt to resolve this issue, I included index.ts
within an include
block as follows:
"include": ["./node_modules/@fireflysemantics/slice/index.ts"],
Despite my efforts, the error persisted. I have detailed this problem in a reported bug on Angular's GitHub page.