Jodit, JSZip, and Other Non-Angularized Packages

My current application (Evidentia) makes use of Jodit for inline textarea editing. It also uses JSZip to shrink files exported from the application. The problem is these packages don’t always play nice with Angular. They don’t play well with Typescript in Angular. Jodit Jodit is an “excellent Open Source WYSIWYG editor written in pure TypeScript without using additional libraries“. […]
Modules, Modules, Component Not Found

Using Angular and Nrwl’s NX tool for mono repos, I frequently run into “component not found” or “component not exported” issues. The reason? Well, it has nothing to do with Angular OR Nrwl – it’s a Typescript thing. Typescript does not look in the NgModules to resolve type references. For that, you need type files […]
Angular, Nrwl, and Typescript

I have been playing around with mono-repo at work. We use lerna to manage the workspace (our project is not an Angular project). Playing with the mono repo at work helped me to better understand the workspace structure recommended with the Angular CLI when you want sharable libraries. https://angular.io/guide/creating-libraries In exploring mono-repos and Angular, the […]