zernie
zernie
@ledermann I do have a dev config, would you be open for a PR?
> @zernie I don't use Docker for development because the last time I tried it (a long time ago) there were lots of issues. If it's useful these days, I'd...
@ledermann docker compose wait also uses netcat:) but it is also much easier to extend for new services and provides some very useful config vars
Same. Any idea why this could be happening? Downgrading to `0.1.43` fixes the problem, but that's not optimal.
@Eyas 1) yea 1) yea It's as simple as ``` import { WithContext, Organization } from "schema-dts"; /* * @typedef {WithContext} Schema */ ```
@Eyas here's the `tsconfig` and a snippet from the webpack config, hope that helps ``` { "compilerOptions": { "allowJs": true, "allowSyntheticDefaultImports": true, "checkJs": false, "diagnostics": false, "downlevelIteration": true, "esModuleInterop": true,...
@Eyas btw, the resulting typings file for `schema-dts` is huge - ~10k LOC. I wonder if breaking it into a smaller not interconnected pieces can help.
@iflix-erwin what version of TS and node are you using? Have you tried upgrading?
> > @iflix-erwin what version of TS and node are you using? Have you tried upgrading? > > @zernie Node: 12.4.0, TS: 3.5.3 Well that's unfortunate. I think we gonna...
for those who want to use @nickluger snippet but are missing `replaceMultiple`, here it is: ``` function replaceMultiple(str: string, targets: string[], values: string[]): string { let result = str; //...