Younho Choo
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...
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.
```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?
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...
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])) {...
# π 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...
μλ νμΈμ. κ°μ ν 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...