Paul Sanchez

Results 29 comments of Paul Sanchez

@remy Looking through some of the other issues here, I saw your comment [here](https://github.com/remy/nodemon/issues/2117#issuecomment-1662876306). I just tested directly called nodemon instead of going through `npm run` or `npx`. It seems...

For what it's worth, I've done the following with `patch-package` to add a basic `exports` field to `@apollo/client`'s `package.json: ```diff "main": "./main.cjs", "module": "./index.js", "types": "./index.d.ts", + "exports": { +...

A workaround I found is to add an `overrides` config in the `package.json` when using a modern version of `npm`. ``` ... "overrides": { "mobx": "$mobx" }, ... ``` You...

My current workaround is just to do the following when importing: ```typescript import graphqlModules = require("graphql-modules"); const { gql, createModule } = graphqlModules; ```

Good news, I edited the `graphql-modules/package.json` file in my `node_modules` directly and got it working with the following: ```json { "main": "index.js", "module": "index.mjs", "typings": "index.d.ts", "typescript": { "definition": "index.d.ts"...

So I just revisted this again. Was going to do a PR to fix this, but I noticed that the `package.json` in the source includes the proper typings: https://github.com/Urigo/graphql-modules/blob/master/packages/graphql-modules/package.json#L21 However...

It's a very annoying workaround, but what I'm doing in a devcontainer is as follows: `rm -rf ~/.vscode-server/extensions/ms-python.vscode-pylance-2023.12.1/dist/bundled/stubs/django-stubs` Then reloading the window causes Pylance to find the real django-stubs that...

Just ran into this as well on extension version `v9.19.0`. Whether or not `prettier.prettierPath` is set in VSCode's `settings.json` didn't make a difference. Reverting to `v9.18.0` resolved it. For info:...

Note that if you have a `ts-node` config section in your `tsconfig` file, that it won't be ported into your `tsc --showConfig` output. You'll need to manually copy that over...