Younho Choo

Results 9 issues of Younho Choo

Environment - MacOS Monterey 12.1 - Node v16.13.2 - Alfred 4.6.2 When I type anything, an error occurs. ``` "items": [ { "title": "RequestError: read ECONNRESET", "subtitle": "Press ⌘L to...

enhancement
help wanted

Because typescript doesn't support strict version of Extract for union types. (https://github.com/microsoft/TypeScript/issues/31474) How about add constraints to type parameters of `Has`? current behavior ```ts assert(true); // true. assert(true); // also...

How about use home directory alias as wds? ex) `~/repositories` -> `/User/vivaxy/repositories`. If multiple computers use the same repository structure, wds can be shared and reused.

enhancement

```ts const delimiterFromScreamingSnake: DelimiterCase = 'foo#bar'; // => Type '"foo#bar"' is not assignable to type '"f#o#o##b#a#r"' expectType(delimiterFromScreamingSnake); ``` Could we improve it?

enhancement
help wanted

Because `opaque.d.ts` is not module file, unique symbol tag of the `Opaque` type is exposed Also, the typescript compiler does not regard following as an error. ```ts import {Opaque} from...

enhancement

I don't know if this could be added to [`is`](https://github.com/sindresorhus/is), but it could be useful to infer typescript tuple type value. ```ts declare const value: unknown; if(isTuple(value, [is.number, is.string])) {...

enhancement
help wanted

# πŸš€ Feature request > Please describe your request in one or two sentences. Despite Vue 3 now being the default version, there are still many users who have to...

framework support

μ•ˆλ…•ν•˜μ„Έμš”. κ°œμ •νŒ ebook으둜 잘 보고 μžˆμŠ΅λ‹ˆλ‹€. 5μž₯ ref: DOM에 이름 달기 - 5.1.1 예제 μ»΄ν¬λ„ŒνŠΈ μƒμ„±μ˜ ValidationSample.js μ½”λ“œμ—μ„œ ν™”μ‚΄ν‘œ ν•¨μˆ˜ μž‘μ„±μ— μ˜€νƒ€κ°€ μžˆμ–΄ μ œλ³΄ν•©λ‹ˆλ‹€. ```javascript handleButtonClick => () => {...

My XO Configuration. ```json "xo": { "prettier": true, "envs": [ "browser", "node" ], "extends": [ "@nuxtjs/eslint-config-typescript", "plugin:nuxt/recommended", "xo-vue" ], "extensions": [ ".js", ".ts", ".vue" ] }, ``` There is some...