Lex

Results 18 comments of Lex

@joshwooding do you have any links to issues or docs regarding this issue? i was searching for known issues surrounding this matter while i was debugging, but couldn't find any.

doe anyone know if the `--from` option has been removed? i'm unable to use it: ```zsh Unknown Syntax Error: Unsupported option name ("--from"). $ yarn workspaces foreach [-R,--recursive] [-A,--all] [-v,--verbose]...

this would be a great addition to the documentation. since migrating to vitest, i've been using `import chai from 'chai'` rather than `import { chai } from 'vitest'` in my...

also, as far as examples go, would showing how to modify `chai.config` work? maybe something like this: ```ts import { chai } from 'vitest' chai.config.includeStack = true chai.config.truncateThreshold = 0...

@dsherret what option can i use to maintain the formatting below? ```ts /** * @file Type Definitions - Writable * @module tutils/types/Writable */ /** * Construct a type where all...

@RyanCavanaugh i'm experiencing a similar issue with `[email protected]`. it seems to be somewhat related to using `skipLibCheck` (i say somewhat because i'm using the option in another `tsconfig` file, but...

@tswistak to add options without using a decorator, try overriding the `setCommand` method: ```ts import { Command } from 'commander' @Command({ name: 'write' }) export class WriteCommand extends CommandRunner {...

@braaar i also found the [validating arrays][1] section to be misleading, but given the sections about validating [`Map`][2] and [`Set`][3], and the use cases mentioned above, could a possible solution...