Kajetan Szymczak

Results 4 issues of Kajetan Szymczak

This solves #16 ```typescript type Union = "a" | "b" | "c"; const foo: Union = "a"; const fooUpperCased: Uppercase = foo.toUpperCase(); // should be 'A' | 'B' | 'C'...

Methods such as `toLowerCase` and `toUpperCase` do not properly infer union type that are invoked on. [Typescript Playground Link](https://www.typescriptlang.org/play?#code/C4TwDgpgBAqgdgSwPZygXigcgIaagHywCM9DMBjTAbgCgbyUBnYKAMySQC55lUMdqdBnGZsOMMJABOAYWyMIAE06xJEKeXkQAPDxQA+dGKQA6YEgnS5CgBQBKKlAD0TqIwAWSAK4AbRVCJoTABBUiwAITDMGUwaIA) There is solution for that, but due to those methods being...

### Link to the code that reproduces this issue https://github.com/KajSzy/vscode-turbopack-debug ### To Reproduce 1. Setup breakpoint in `source/page.tsx` 2. Launch debug option `Next.js: debug server-side with turbo` ### Current vs....

template: bug
area: Turbopack

**Describe the bug** I've dumped my production data to sql file for local development purpose. Trying to reset local supabase instance I get an error that column type is invalid....