Scott Sadler

Results 3 issues of Scott Sadler

Please add `nodenext` and `node16` to the `TsConfigJson.Module` type definition as per https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#esm-nodejs ``` export type Module = ... | 'nodenext' | 'NodeNext' | 'node16' | 'Node16'; ```

Referring to the Node [subpath patterns](https://nodejs.org/api/packages.html#subpath-patterns) documentation, notice how a pattern can specify a file extension (in this example `.js`) on both sides of the pattern mapping: ``` { "exports":...

Lint the following with the [default](https://www.npmjs.com/package/eslint-plugin-sort-exports#usage) `sort-exports` ESLint configuration: ``` export interface Alpha { apple: number; } export namespace Delta { export type Beta = string; } ``` ESlint crashes...