Jayden Seric
Jayden Seric
I thought a fair bit about customising the language of the `Internal Server Error` message, but I'm not sure this is a reasonable requirement considering that this message purposefully matches...
I want to elaborate a bit on simplicity, at the risk of sounding argumentative. In every measurable way Apollo Server is not "simpler". - `graphql-api-koa` has a 127 kB install...
Thanks for the update; glad to see you've been finding it useful. Your feedback based on solid experience is appreciated :) > I've re-read carefully your proposed solutions today and...
I tried using your `master` branch in the project, and it had this error: As a side note, I recommend replacing `"moduleResolution": "node"` in your TypeScript config with `"module": "nodenext"`....
I use a `jsconfig.json` (which is like a `tsconfig.json` but it automatically enables `allowJs`): ```json { "compilerOptions": { "maxNodeModuleJsDepth": 10, "module": "nodenext", "noEmit": true, "strict": true }, "typeAcquisition": { "enable":...
Support for individual language syntax features should be separately tested and reported. For example, rest parameters have a Caniuse entry, yet are not checked by this plugin: https://caniuse.com/#feat=rest-parameters
@isaacs > This makes sense to me. `.github` is another good one. Just be aware that some people put images they reference in the readme within the `.github` directory. If...
At the very least, it would be nice somewhere within the npm CLI for `pack` and `publish` commands to emit a warning or throw an error if the package `exports`...
GitHub automatically closed this issue based on the unfortunate phrasing of the commit message.
You might be interested in the `deno info` CLI, that can report the dependency graph of a module file/URL: https://deno.land/manual/tools/dependency_inspector It has a `--json` option if you want to use...