Jakub Mazanec

Results 12 issues of Jakub Mazanec

Would it be possible to ignore React components in the rule `where`? While I agree that function declaration is preferable when exporting a function (i.e. `export function somefn() { /*...

@beemo/driver-jest has peer dependency `"jest": "^26.0.0 || ^27.0.0"`. Is there any plan to update it to Jest 28?

When using Remix framework, rule `text-encoding-identifier-case` reports error: ```ts import type {MetaFunction} from '@remix-run/node'; /* ... */ export const meta: MetaFunction = () => ({ charset: 'utf-8', //

I encountered "Got unexpected undefined" error. I don't know what exactly causes it, but I created repo with minimal reproduction. ## 🎛 Configuration `package.json` ```JSON { "name": "parcel-bug", "main": "dist/index.js",...

:bug: Bug
TypeScript

## What are the steps to reproduce this issue? Use custom Axios instance in ESM-only package (i.e. that uses `type: "module"` in package.json and `"module": "node16", "moduleResolution": "node16"` in `tsconfig.json`)....

bug

It seems `import-types` preset adds "Types." prefix to all types, regardless if they actualy need to be imported. Codegen config: ```yaml generates: src/api/index.ts: schema: './node_modules/@foo/graphql-schema/schema.graphql' documents: './queries.graphql' preset: import-types presetConfig:...

help wanted

### Verify canary release - [X] I verified that the issue exists in the latest Turborepo canary release. ### Link to code that reproduces this issue https://github.com/jakubmazanec/apps/pull/21 ### What package...

kind: bug

### Describe the bug and the expected behavior When TypeScript compiler option `exactOptionalPropertyTypes` is set to `true`, you cannot pass `undefined` as a value to an object property that is...

### Describe the bug and the expected behavior When TypeScript compiler option `exactOptionalPropertyTypes` is set to `true`, you cannot pass `undefined` as a value to an object property that is...

React
TypeScript

I love that Parcel is fast, can generate also TypeScript definition files, and creates bundles even for Node.js libraries, but I cannot configure it in a way I would prefer....