Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2024-08-26 17:13:37 +00:00
parent fa428daf9c
commit b3bf514df4
216 changed files with 4342 additions and 1611 deletions

File diff suppressed because one or more lines are too long

View file

@ -137,6 +137,7 @@ declare namespace TsConfigJson {
| 'ESNext'
| 'Node16'
| 'NodeNext'
| 'Preserve'
| 'None'
// Lowercase alternatives
| 'commonjs'
@ -150,6 +151,7 @@ declare namespace TsConfigJson {
| 'esnext'
| 'node16'
| 'nodenext'
| 'preserve'
| 'none';
export type NewLine =
@ -186,6 +188,7 @@ declare namespace TsConfigJson {
| 'es2022'
| 'esnext';
// eslint-disable-next-line unicorn/prevent-abbreviations
export type Lib =
| 'ES5'
| 'ES6'
@ -230,6 +233,14 @@ declare namespace TsConfigJson {
| 'ES2021.Promise'
| 'ES2021.String'
| 'ES2021.WeakRef'
| 'ES2022'
| 'ES2022.Array'
| 'ES2022.Error'
| 'ES2022.Intl'
| 'ES2022.Object'
| 'ES2022.SharedMemory'
| 'ES2022.String'
| 'ES2022.RegExp'
| 'ESNext'
| 'ESNext.Array'
| 'ESNext.AsyncIterable'
@ -289,6 +300,14 @@ declare namespace TsConfigJson {
| 'es2021.promise'
| 'es2021.string'
| 'es2021.weakref'
| 'es2022'
| 'es2022.array'
| 'es2022.error'
| 'es2022.intl'
| 'es2022.object'
| 'es2022.sharedmemory'
| 'es2022.string'
| 'es2022.regexp'
| 'esnext'
| 'esnext.array'
| 'esnext.asynciterable'
@ -1307,10 +1326,11 @@ type TsConfigResult = {
*/
config: TsConfigJsonResolved;
};
type Cache<value = any> = Map<string, value>;
declare const getTsconfig: (searchPath?: string, configName?: string) => TsConfigResult | null;
declare const getTsconfig: (searchPath?: string, configName?: string, cache?: Cache) => TsConfigResult | null;
declare const parseTsconfig: (tsconfigPath: string) => TsConfigJsonResolved;
declare const parseTsconfig: (tsconfigPath: string, cache?: Cache<string>) => TsConfigJsonResolved;
/**
* Reference:
@ -1321,4 +1341,4 @@ declare const createPathsMatcher: (tsconfig: TsConfigResult) => ((specifier: str
type FileMatcher = (filePath: string) => (TsConfigJsonResolved | undefined);
declare const createFilesMatcher: ({ config, path: tsconfigPath, }: TsConfigResult, caseSensitivePaths?: boolean) => FileMatcher;
export { FileMatcher, TsConfigJson, TsConfigJsonResolved, TsConfigResult, createFilesMatcher, createPathsMatcher, getTsconfig, parseTsconfig };
export { type Cache, type FileMatcher, TsConfigJson, type TsConfigJsonResolved, type TsConfigResult, createFilesMatcher, createPathsMatcher, getTsconfig, parseTsconfig };

View file

@ -137,6 +137,7 @@ declare namespace TsConfigJson {
| 'ESNext'
| 'Node16'
| 'NodeNext'
| 'Preserve'
| 'None'
// Lowercase alternatives
| 'commonjs'
@ -150,6 +151,7 @@ declare namespace TsConfigJson {
| 'esnext'
| 'node16'
| 'nodenext'
| 'preserve'
| 'none';
export type NewLine =
@ -186,6 +188,7 @@ declare namespace TsConfigJson {
| 'es2022'
| 'esnext';
// eslint-disable-next-line unicorn/prevent-abbreviations
export type Lib =
| 'ES5'
| 'ES6'
@ -230,6 +233,14 @@ declare namespace TsConfigJson {
| 'ES2021.Promise'
| 'ES2021.String'
| 'ES2021.WeakRef'
| 'ES2022'
| 'ES2022.Array'
| 'ES2022.Error'
| 'ES2022.Intl'
| 'ES2022.Object'
| 'ES2022.SharedMemory'
| 'ES2022.String'
| 'ES2022.RegExp'
| 'ESNext'
| 'ESNext.Array'
| 'ESNext.AsyncIterable'
@ -289,6 +300,14 @@ declare namespace TsConfigJson {
| 'es2021.promise'
| 'es2021.string'
| 'es2021.weakref'
| 'es2022'
| 'es2022.array'
| 'es2022.error'
| 'es2022.intl'
| 'es2022.object'
| 'es2022.sharedmemory'
| 'es2022.string'
| 'es2022.regexp'
| 'esnext'
| 'esnext.array'
| 'esnext.asynciterable'
@ -1307,10 +1326,11 @@ type TsConfigResult = {
*/
config: TsConfigJsonResolved;
};
type Cache<value = any> = Map<string, value>;
declare const getTsconfig: (searchPath?: string, configName?: string) => TsConfigResult | null;
declare const getTsconfig: (searchPath?: string, configName?: string, cache?: Cache) => TsConfigResult | null;
declare const parseTsconfig: (tsconfigPath: string) => TsConfigJsonResolved;
declare const parseTsconfig: (tsconfigPath: string, cache?: Cache<string>) => TsConfigJsonResolved;
/**
* Reference:
@ -1321,4 +1341,4 @@ declare const createPathsMatcher: (tsconfig: TsConfigResult) => ((specifier: str
type FileMatcher = (filePath: string) => (TsConfigJsonResolved | undefined);
declare const createFilesMatcher: ({ config, path: tsconfigPath, }: TsConfigResult, caseSensitivePaths?: boolean) => FileMatcher;
export { FileMatcher, TsConfigJson, TsConfigJsonResolved, TsConfigResult, createFilesMatcher, createPathsMatcher, getTsconfig, parseTsconfig };
export { type Cache, type FileMatcher, TsConfigJson, type TsConfigJsonResolved, type TsConfigResult, createFilesMatcher, createPathsMatcher, getTsconfig, parseTsconfig };

File diff suppressed because one or more lines are too long