Allen

Results 37 comments of Allen

See: https://github.com/TomFrost/Jexl/issues/81 From my understanding it does not.

I just ran into this issue for several hours. I had a node_modules directory in the directory I was running `ng new` from and didn't realize it. Would definitely be...

@zhakhalov This would work very well for my case. I am using style-loader to pull the generated css in outside of the component (so I can do hot reload) and...

I don't know about anyone else, but this sounds very useful to me.

@sverweij In most cases I could probably modify the rules with the path of some files to ignore it for. The issue is that with a code base of thousands...

@AlanOrtega91 No, I never found a workaround. I just limited the rules I used.

@fmasion What method did you end up using? I am running into the exact same type of restriction. For me it is our QA/QC infrastructure where we test out new...

Here is a method I am using for now that uses a custom type guard. ```typescript interface IFirebaseError extends Error { code: string; message: string; stack?: string; } /** Check...

I just found a nice little helper that wraps some of this here: https://github.com/dmitrii-t/cdk-util May be worth a look for people that want to do this type of thing. Definitely...

Unfortunately I have found that the code and helpers I can find online are all out of date with the latest version of the CDK. How are people using the...