Jason Leibowitz
Jason Leibowitz
I'm also getting this issue with IntelliJ CE 2021.1.1 and EnvFile 3.2.1. When running Gradle build my env variables are picked up, but they're not with Gradle run 😕
@doublejosh I actually don't use this package anymore and as you can tell haven't really maintained this repo. How would you like to be made a maintainer to help take...
I ran into this issue as well. I think this issue arises when your dataset skips date ranges, or if the datetime is not in UTC. In my usage, I...
One temporary fix, that is not ideal, is to add the [noimplicitAny](https://www.typescriptlang.org/tsconfig#noImplicitAny) option to your tsconfig: ``` "compilerOptions": { "noImplicitAny": false, ... }, ``` To enforce _some_ of the rules...