From 2ee2b058483a4164dd3d6bde2e5dd5ea35185c3b Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Mon, 8 Jul 2024 09:59:09 -0700 Subject: [PATCH 1/5] Bump to 5.5 and update compiler options --- package.json | 2 +- .../en/project-config/Compiler Options.md | 88 ++-- .../copy/en/options/isolatedDeclarations.md | 6 + .../copy/en/options/noCheck.md | 6 + packages/tsconfig-reference/data/_types.ts | 2 + .../scripts/schema/generateJSON.ts | 4 +- .../scripts/schema/result/schema.json | 17 +- .../scripts/schema/vendor/base.json | 12 +- pnpm-lock.yaml | 452 +++++++++--------- 9 files changed, 325 insertions(+), 264 deletions(-) create mode 100644 packages/tsconfig-reference/copy/en/options/isolatedDeclarations.md create mode 100644 packages/tsconfig-reference/copy/en/options/noCheck.md diff --git a/package.json b/package.json index f75fd312ea66..86656715b62a 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "@types/eslint": "7.29.0", "assert": "2.0.0", "rollup-plugin-typescript2": "0.34.1", - "typescript": "5.4.5", + "typescript": "5.5.3", "tslib": "^2.6.2", "prettier": "^2.0.2", "sharp": "0.28.1" diff --git a/packages/documentation/copy/en/project-config/Compiler Options.md b/packages/documentation/copy/en/project-config/Compiler Options.md index 5513062d000c..673c26ed2c94 100644 --- a/packages/documentation/copy/en/project-config/Compiler Options.md +++ b/packages/documentation/copy/en/project-config/Compiler Options.md @@ -686,182 +686,204 @@ tsc app.ts util.ts --target esnext --outfile index.js

Include source code in the sourcemaps inside the emitted JavaScript.

- - --isolatedModules + + --isolatedDeclarations

boolean

false

+

Does something

+ + + + --isolatedModules +

boolean

+ +

false

+ + +

Ensure that each file can be safely transpiled without relying on other imports.

- + --jsx

preserve, react, react-native, react-jsx, or react-jsxdev

- +

Specify what JSX code is generated.

- + --jsxFactory

string

React.createElement

- +

Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'.

- + --jsxFragmentFactory

string

React.Fragment

- +

Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'.

- + --jsxImportSource

string

react

- +

Specify module specifier used to import the JSX factory functions when using jsx: react-jsx*.

- + --keyofStringsOnly

boolean

false

- +

Make keyof only return strings instead of string, numbers or symbols. Legacy option.

- + --lib

list

- +

Specify a set of bundled library declaration files that describe the target runtime environment.

- + --listEmittedFiles

boolean

false

- +

Print the names of emitted files after a compilation.

- + --listFiles

boolean

false

- +

Print all of the files read during the compilation.

- + --mapRoot

string

- +

Specify the location where debugger should locate map files instead of generated locations.

- + --maxNodeModuleJsDepth

number

0

- +

Specify the maximum folder depth used for checking JavaScript files from node_modules. Only applicable with allowJs.

- + --module

none, commonjs, amd, umd, system, es6/es2015, es2020, es2022, esnext, node16, nodenext, or preserve

CommonJS if target is ES3 or ES5; ES6/ES2015 otherwise.

- +

Specify what module code is generated.

- + --moduleDetection

legacy, auto, or force

"auto": Treat files with imports, exports, import.meta, jsx (with jsx: react-jsx), or esm format (with module: node16+) as modules.

- +

Specify what method is used to detect whether a file is a script or a module.

- + --moduleResolution

classic, node10/node, node16, nodenext, or bundler

Classic if module is AMD, UMD, System, or ES6/ES2015; Matches if module is node16 or nodenext; Node otherwise.

- +

Specify how TypeScript looks up a file from a given module specifier.

- + --moduleSuffixes

list

- +

List of file name suffixes to search when resolving a module.

- + --newLine

crlf or lf

lf

- +

Set the newline character for emitting files.

+ + --noCheck +

boolean

+ +

false

+ + + +

Does something

+ + --noEmit

boolean

@@ -1370,7 +1392,7 @@ tsc app.ts util.ts --target esnext --outfile index.js --target -

es3, es5, es6/es2015, es2016, es2017, es2018, es2019, es2020, es2021, es2022, or esnext

+

es3, es5, es6/es2015, es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, or esnext

ES3

diff --git a/packages/tsconfig-reference/copy/en/options/isolatedDeclarations.md b/packages/tsconfig-reference/copy/en/options/isolatedDeclarations.md new file mode 100644 index 000000000000..4d41a6204cd2 --- /dev/null +++ b/packages/tsconfig-reference/copy/en/options/isolatedDeclarations.md @@ -0,0 +1,6 @@ +--- +display: "isolatedDeclarations" +oneline: "Does something" +--- +Require sufficient annotation on exports so other tools can trivially generate declaration files. + diff --git a/packages/tsconfig-reference/copy/en/options/noCheck.md b/packages/tsconfig-reference/copy/en/options/noCheck.md new file mode 100644 index 000000000000..e3e622795d95 --- /dev/null +++ b/packages/tsconfig-reference/copy/en/options/noCheck.md @@ -0,0 +1,6 @@ +--- +display: "noCheck" +oneline: "Does something" +--- +Disable full type checking (only critical parse and emit errors will be reported). + diff --git a/packages/tsconfig-reference/data/_types.ts b/packages/tsconfig-reference/data/_types.ts index c0b1c7e063e8..77e2be80a43b 100644 --- a/packages/tsconfig-reference/data/_types.ts +++ b/packages/tsconfig-reference/data/_types.ts @@ -41,12 +41,14 @@ export type CompilerOptionName = | "composite" | "tsBuildInfoFile" | "removeComments" + | "noCheck" | "noEmit" | "importHelpers" | "importsNotUsedAsValues" | "downlevelIteration" | "isolatedModules" | "verbatimModuleSyntax" + | "isolatedDeclarations" | "strict" | "noImplicitAny" | "strictNullChecks" diff --git a/packages/tsconfig-reference/scripts/schema/generateJSON.ts b/packages/tsconfig-reference/scripts/schema/generateJSON.ts index 45a101b2e516..72319b637464 100644 --- a/packages/tsconfig-reference/scripts/schema/generateJSON.ts +++ b/packages/tsconfig-reference/scripts/schema/generateJSON.ts @@ -88,7 +88,7 @@ filteredOptions.forEach((option) => { You're also probably going to need to make the new Markdown file for the compiler flag, run: -\n echo '---\\ndisplay: "${option.name}"\\noneline: "Does something"\\n---\\n${option.description.message}\\n ' > ${sectionsPath}\n\nThen add some docs and run: \n> pnpm run --filter=tsconfig-reference build\n\n +\n echo '---\\ndisplay: "${option.name}"\\noneline: "Does something"\\n---\\n${option.description.message}\\n ' > ${fileURLToPath(sectionsPath)}\n\nThen add some docs and run: \n> pnpm run --filter=tsconfig-reference build\n\n `; throw new Error([title, headline, msg, ""].join("\n\n")); @@ -100,7 +100,7 @@ You're also probably going to need to make the new Markdown file for the compile } catch (error) { // prettier-ignore throw new Error( - `\n echo '---\\ndisplay: "${option.name}"\\noneline: "Does something" \\n---\\n${option.description.message.replace(/'/g, "`")}\\n ' > ${sectionsPath}\n\nThen add some docs and run: \n> pnpm run --filter=tsconfig-reference build\n\n` + `\n echo '---\\ndisplay: "${option.name}"\\noneline: "Does something" \\n---\\n${option.description.message.replace(/'/g, "`")}\\n ' > ${fileURLToPath(sectionsPath)}\n\nThen add some docs and run: \n> pnpm run --filter=tsconfig-reference build\n\n` ); } diff --git a/packages/tsconfig-reference/scripts/schema/result/schema.json b/packages/tsconfig-reference/scripts/schema/result/schema.json index 03814a2bbdda..fe16e583a28a 100644 --- a/packages/tsconfig-reference/scripts/schema/result/schema.json +++ b/packages/tsconfig-reference/scripts/schema/result/schema.json @@ -273,6 +273,12 @@ "default": false, "markdownDescription": "Include source code in the sourcemaps inside the emitted JavaScript.\n\nSee more: https://www.typescriptlang.org/tsconfig#inlineSources" }, + "noCheck": { + "description": "Does something", + "type": "boolean", + "default": false, + "markdownDescription": "Does something\n\nSee more: https://www.typescriptlang.org/tsconfig#noCheck" + }, "jsx": { "description": "Specify what JSX code is generated.", "enum": [ @@ -566,6 +572,7 @@ "ES2020", "ES2021", "es2022", + "es2023", "ESNext" ] }, @@ -813,6 +820,7 @@ "es2022.regexp", "es2023.array", "es2023.collection", + "es2023.intl", "ESNext.Array", "esnext.collection", "ESNext.Symbol", @@ -825,12 +833,13 @@ "ESNext.WeakRef", "esnext.decorators", "esnext.object", + "esnext.regexp", "decorators", "decorators.legacy" ] }, { - "pattern": "^(?:[Ee][Ss]5|[Ee][Ss]6|[Ee][Ss]2015|[Ee][Ss]7|[Ee][Ss]2016|[Ee][Ss]2017|[Ee][Ss]2018|[Ee][Ss]2019|[Ee][Ss]2020|[Ee][Ss]2021|[Ee][Ss]2022|[Ee][Ss]2023|[Ee][Ss][Nn][Ee][Xx][Tt]|[Dd][Oo][Mm]|[Dd][Oo][Mm]\\.[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Dd][Oo][Mm]\\.[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr]|[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr]\\.[Ii][Mm][Pp][Oo][Rr][Tt][Ss][Cc][Rr][Ii][Pp][Tt][Ss]|[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr]\\.[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr]\\.[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ss][Cc][Rr][Ii][Pp][Tt][Hh][Oo][Ss][Tt]|[Ee][Ss]2015\\.[Cc][Oo][Rr][Ee]|[Ee][Ss]2015\\.[Cc][Oo][Ll][Ll][Ee][Cc][Tt][Ii][Oo][Nn]|[Ee][Ss]2015\\.[Gg][Ee][Nn][Ee][Rr][Aa][Tt][Oo][Rr]|[Ee][Ss]2015\\.[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ee][Ss]2015\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss]2015\\.[Pp][Rr][Oo][Xx][Yy]|[Ee][Ss]2015\\.[Rr][Ee][Ff][Ll][Ee][Cc][Tt]|[Ee][Ss]2015\\.[Ss][Yy][Mm][Bb][Oo][Ll]|[Ee][Ss]2015\\.[Ss][Yy][Mm][Bb][Oo][Ll]\\.[Ww][Ee][Ll][Ll][Kk][Nn][Oo][Ww][Nn]|[Ee][Ss]2016\\.[Aa][Rr][Rr][Aa][Yy]\\.[Ii][Nn][Cc][Ll][Uu][Dd][Ee]|[Ee][Ss]2016\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2017\\.[Dd][Aa][Tt][Ee]|[Ee][Ss]2017\\.[Oo][Bb][Jj][Ee][Cc][Tt]|[Ee][Ss]2017\\.[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Ee][Ss]2017\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2017\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2017\\.[Tt][Yy][Pp][Ee][Dd][Aa][Rr][Rr][Aa][Yy][Ss]|[Ee][Ss]2018\\.[Aa][Ss][Yy][Nn][Cc][Gg][Ee][Nn][Ee][Rr][Aa][Tt][Oo][Rr]|[Ee][Ss]2018\\.[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ee][Ss]2018\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2018\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss]2018\\.[Rr][Ee][Gg][Ee][Xx][Pp]|[Ee][Ss]2019\\.[Aa][Rr][Rr][Aa][Yy]|[Ee][Ss]2019\\.[Oo][Bb][Jj][Ee][Cc][Tt]|[Ee][Ss]2019\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2019\\.[Ss][Yy][Mm][Bb][Oo][Ll]|[Ee][Ss]2019\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2020\\.[Bb][Ii][Gg][Ii][Nn][Tt]|[Ee][Ss]2020\\.[Dd][Aa][Tt][Ee]|[Ee][Ss]2020\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss]2020\\.[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Ee][Ss]2020\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2020\\.[Ss][Yy][Mm][Bb][Oo][Ll]\\.[Ww][Ee][Ll][Ll][Kk][Nn][Oo][Ww][Nn]|[Ee][Ss]2020\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2020\\.[Nn][Uu][Mm][Bb][Ee][Rr]|[Ee][Ss]2021\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss]2021\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2021\\.[Ww][Ee][Aa][Kk][Rr][Ee][Ff]|[Ee][Ss]2021\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2022\\.[Aa][Rr][Rr][Aa][Yy]|[Ee][Ss]2022\\.[Ee][Rr][Rr][Oo][Rr]|[Ee][Ss]2022\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2022\\.[Oo][Bb][Jj][Ee][Cc][Tt]|[Ee][Ss]2022\\.[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Ee][Ss]2022\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2022\\.[Rr][Ee][Gg][Ee][Xx][Pp]|[Ee][Ss]2023\\.[Aa][Rr][Rr][Aa][Yy]|[Ee][Ss]2023\\.[Cc][Oo][Ll][Ll][Ee][Cc][Tt][Ii][Oo][Nn]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Aa][Rr][Rr][Aa][Yy]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Cc][Oo][Ll][Ll][Ee][Cc][Tt][Ii][Oo][Nn]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ss][Yy][Mm][Bb][Oo][Ll]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ii][Nn][Tt][Ll]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Dd][Ii][Ss][Pp][Oo][Ss][Aa][Bb][Ll][Ee]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Bb][Ii][Gg][Ii][Nn][Tt]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ww][Ee][Aa][Kk][Rr][Ee][Ff]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Dd][Ee][Cc][Oo][Rr][Aa][Tt][Oo][Rr][Ss]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Oo][Bb][Jj][Ee][Cc][Tt]|[Dd][Ee][Cc][Oo][Rr][Aa][Tt][Oo][Rr][Ss]|[Dd][Ee][Cc][Oo][Rr][Aa][Tt][Oo][Rr][Ss]\\.[Ll][Ee][Gg][Aa][Cc][Yy])$" + "pattern": "^(?:[Ee][Ss]5|[Ee][Ss]6|[Ee][Ss]2015|[Ee][Ss]7|[Ee][Ss]2016|[Ee][Ss]2017|[Ee][Ss]2018|[Ee][Ss]2019|[Ee][Ss]2020|[Ee][Ss]2021|[Ee][Ss]2022|[Ee][Ss]2023|[Ee][Ss][Nn][Ee][Xx][Tt]|[Dd][Oo][Mm]|[Dd][Oo][Mm]\\.[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Dd][Oo][Mm]\\.[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr]|[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr]\\.[Ii][Mm][Pp][Oo][Rr][Tt][Ss][Cc][Rr][Ii][Pp][Tt][Ss]|[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr]\\.[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ww][Ee][Bb][Ww][Oo][Rr][Kk][Ee][Rr]\\.[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ss][Cc][Rr][Ii][Pp][Tt][Hh][Oo][Ss][Tt]|[Ee][Ss]2015\\.[Cc][Oo][Rr][Ee]|[Ee][Ss]2015\\.[Cc][Oo][Ll][Ll][Ee][Cc][Tt][Ii][Oo][Nn]|[Ee][Ss]2015\\.[Gg][Ee][Nn][Ee][Rr][Aa][Tt][Oo][Rr]|[Ee][Ss]2015\\.[Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ee][Ss]2015\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss]2015\\.[Pp][Rr][Oo][Xx][Yy]|[Ee][Ss]2015\\.[Rr][Ee][Ff][Ll][Ee][Cc][Tt]|[Ee][Ss]2015\\.[Ss][Yy][Mm][Bb][Oo][Ll]|[Ee][Ss]2015\\.[Ss][Yy][Mm][Bb][Oo][Ll]\\.[Ww][Ee][Ll][Ll][Kk][Nn][Oo][Ww][Nn]|[Ee][Ss]2016\\.[Aa][Rr][Rr][Aa][Yy]\\.[Ii][Nn][Cc][Ll][Uu][Dd][Ee]|[Ee][Ss]2016\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2017\\.[Dd][Aa][Tt][Ee]|[Ee][Ss]2017\\.[Oo][Bb][Jj][Ee][Cc][Tt]|[Ee][Ss]2017\\.[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Ee][Ss]2017\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2017\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2017\\.[Tt][Yy][Pp][Ee][Dd][Aa][Rr][Rr][Aa][Yy][Ss]|[Ee][Ss]2018\\.[Aa][Ss][Yy][Nn][Cc][Gg][Ee][Nn][Ee][Rr][Aa][Tt][Oo][Rr]|[Ee][Ss]2018\\.[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ee][Ss]2018\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2018\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss]2018\\.[Rr][Ee][Gg][Ee][Xx][Pp]|[Ee][Ss]2019\\.[Aa][Rr][Rr][Aa][Yy]|[Ee][Ss]2019\\.[Oo][Bb][Jj][Ee][Cc][Tt]|[Ee][Ss]2019\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2019\\.[Ss][Yy][Mm][Bb][Oo][Ll]|[Ee][Ss]2019\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2020\\.[Bb][Ii][Gg][Ii][Nn][Tt]|[Ee][Ss]2020\\.[Dd][Aa][Tt][Ee]|[Ee][Ss]2020\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss]2020\\.[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Ee][Ss]2020\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2020\\.[Ss][Yy][Mm][Bb][Oo][Ll]\\.[Ww][Ee][Ll][Ll][Kk][Nn][Oo][Ww][Nn]|[Ee][Ss]2020\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2020\\.[Nn][Uu][Mm][Bb][Ee][Rr]|[Ee][Ss]2021\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss]2021\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2021\\.[Ww][Ee][Aa][Kk][Rr][Ee][Ff]|[Ee][Ss]2021\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2022\\.[Aa][Rr][Rr][Aa][Yy]|[Ee][Ss]2022\\.[Ee][Rr][Rr][Oo][Rr]|[Ee][Ss]2022\\.[Ii][Nn][Tt][Ll]|[Ee][Ss]2022\\.[Oo][Bb][Jj][Ee][Cc][Tt]|[Ee][Ss]2022\\.[Ss][Hh][Aa][Rr][Ee][Dd][Mm][Ee][Mm][Oo][Rr][Yy]|[Ee][Ss]2022\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss]2022\\.[Rr][Ee][Gg][Ee][Xx][Pp]|[Ee][Ss]2023\\.[Aa][Rr][Rr][Aa][Yy]|[Ee][Ss]2023\\.[Cc][Oo][Ll][Ll][Ee][Cc][Tt][Ii][Oo][Nn]|[Ee][Ss]2023\\.[Ii][Nn][Tt][Ll]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Aa][Rr][Rr][Aa][Yy]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Cc][Oo][Ll][Ll][Ee][Cc][Tt][Ii][Oo][Nn]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ss][Yy][Mm][Bb][Oo][Ll]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Aa][Ss][Yy][Nn][Cc][Ii][Tt][Ee][Rr][Aa][Bb][Ll][Ee]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ii][Nn][Tt][Ll]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Dd][Ii][Ss][Pp][Oo][Ss][Aa][Bb][Ll][Ee]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Bb][Ii][Gg][Ii][Nn][Tt]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ss][Tt][Rr][Ii][Nn][Gg]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Pp][Rr][Oo][Mm][Ii][Ss][Ee]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Ww][Ee][Aa][Kk][Rr][Ee][Ff]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Dd][Ee][Cc][Oo][Rr][Aa][Tt][Oo][Rr][Ss]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Oo][Bb][Jj][Ee][Cc][Tt]|[Ee][Ss][Nn][Ee][Xx][Tt]\\.[Rr][Ee][Gg][Ee][Xx][Pp]|[Dd][Ee][Cc][Oo][Rr][Aa][Tt][Oo][Rr][Ss]|[Dd][Ee][Cc][Oo][Rr][Aa][Tt][Oo][Rr][Ss]\\.[Ll][Ee][Gg][Aa][Cc][Yy])$" } ] }, @@ -882,6 +891,12 @@ "default": false, "markdownDescription": "Emit more compliant, but verbose and less performant JavaScript for iteration.\n\nSee more: https://www.typescriptlang.org/tsconfig#downlevelIteration" }, + "isolatedDeclarations": { + "description": "Does something", + "type": "boolean", + "default": false, + "markdownDescription": "Does something\n\nSee more: https://www.typescriptlang.org/tsconfig#isolatedDeclarations" + }, "checkJs": { "description": "Enable error reporting in type-checked JavaScript files.", "type": "boolean", diff --git a/packages/tsconfig-reference/scripts/schema/vendor/base.json b/packages/tsconfig-reference/scripts/schema/vendor/base.json index 166da63f1c9d..4b922e0032b5 100644 --- a/packages/tsconfig-reference/scripts/schema/vendor/base.json +++ b/packages/tsconfig-reference/scripts/schema/vendor/base.json @@ -260,6 +260,11 @@ "default": false, "markdownDescription": "Include source code in the sourcemaps inside the emitted JavaScript.\n\nSee more: https://www.typescriptlang.org/tsconfig#inlineSources" }, + "noCheck": { + "description": "Disable full type checking (only critical parse and emit errors will be reported).", + "type": "boolean", + "default": false + }, "jsx": { "description": "Specify what JSX code is generated.", "enum": [ @@ -915,6 +920,11 @@ "default": false, "markdownDescription": "Emit more compliant, but verbose and less performant JavaScript for iteration.\n\nSee more: https://www.typescriptlang.org/tsconfig#downlevelIteration" }, + "isolatedDeclarations": { + "description": "Require sufficient annotation on exports so other tools can trivially generate declaration files.", + "type": "boolean", + "default": false + }, "checkJs": { "description": "Enable error reporting in type-checked JavaScript files.", "type": "boolean", @@ -1255,4 +1265,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d1741d0a94b1..968557ab97d0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -14,7 +14,7 @@ overrides: '@types/eslint': 7.29.0 assert: 2.0.0 rollup-plugin-typescript2: 0.34.1 - typescript: 5.4.5 + typescript: 5.5.3 tslib: ^2.6.2 prettier: ^2.0.2 sharp: 0.28.1 @@ -87,7 +87,7 @@ importers: version: 10.0.0 remark-shiki-twoslash: specifier: ^3.1.3 - version: 3.1.3(typescript@5.4.5) + version: 3.1.3(typescript@5.5.3) serve-handler: specifier: ^6.1.2 version: 6.1.5 @@ -95,8 +95,8 @@ importers: packages/ata: dependencies: typescript: - specifier: 5.4.5 - version: 5.4.5 + specifier: 5.5.3 + version: 5.5.3 devDependencies: '@types/jest': specifier: ^29.5.12 @@ -112,7 +112,7 @@ importers: version: 0.5.0(esbuild@0.17.19) jest: specifier: ^29.5.0 - version: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + version: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) packages/community-meta: dependencies: @@ -141,7 +141,7 @@ importers: devDependencies: ts-node: specifier: '*' - version: 10.9.2(@types/node@18.19.33)(typescript@5.4.5) + version: 10.9.2(@types/node@18.19.33)(typescript@5.5.3) packages/playground: dependencies: @@ -163,7 +163,7 @@ importers: version: 18.3.3 jest: specifier: ^29.5.0 - version: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + version: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) monaco-editor: specifier: ^0.32.1 version: 0.32.1 @@ -171,8 +171,8 @@ importers: specifier: ^3.7.0 version: 3.7.0 typescript: - specifier: 5.4.5 - version: 5.4.5 + specifier: 5.5.3 + version: 5.5.3 packages/playground-examples: devDependencies: @@ -189,8 +189,8 @@ importers: packages/playground-handbook: devDependencies: typescript: - specifier: 5.4.5 - version: 5.4.5 + specifier: 5.5.3 + version: 5.5.3 packages/playground-worker: dependencies: @@ -199,8 +199,8 @@ importers: version: 0.17.19 devDependencies: typescript: - specifier: 5.4.5 - version: 5.4.5 + specifier: 5.5.3 + version: 5.5.3 packages/sandbox: dependencies: @@ -225,7 +225,7 @@ importers: version: 2.0.5(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/babel__core@7.20.5)(@types/node@18.19.33) jest: specifier: ^29.5.0 - version: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + version: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) monaco-editor: specifier: ^0.32.1 version: 0.32.1 @@ -234,10 +234,10 @@ importers: version: 3.7.0 ts-jest: specifier: ^29.0.5 - version: 29.1.3(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)))(typescript@5.4.5) + version: 29.1.3(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)))(typescript@5.5.3) typescript: - specifier: 5.4.5 - version: 5.4.5 + specifier: 5.5.3 + version: 5.5.3 packages/ts-twoslasher: dependencies: @@ -262,7 +262,7 @@ importers: version: 2.0.5(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/babel__core@7.20.5)(@types/node@18.19.33) jest: specifier: ^29.5.0 - version: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + version: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) jest-file-snapshot: specifier: ^0.3.8 version: 0.3.8 @@ -277,13 +277,13 @@ importers: version: 2.8.8 ts-jest: specifier: ^29.0.5 - version: 29.1.3(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)))(typescript@5.4.5) + version: 29.1.3(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)))(typescript@5.5.3) tslib: specifier: ^2.6.2 version: 2.6.2 typescript: - specifier: 5.4.5 - version: 5.4.5 + specifier: 5.5.3 + version: 5.5.3 packages/tsconfig-reference: devDependencies: @@ -292,10 +292,10 @@ importers: version: 7.0.15 ts-node: specifier: '*' - version: 10.9.2(@types/node@18.19.33)(typescript@5.4.5) + version: 10.9.2(@types/node@18.19.33)(typescript@5.5.3) typescript: - specifier: 5.4.5 - version: 5.4.5 + specifier: 5.5.3 + version: 5.5.3 xml-js: specifier: ^1.6.11 version: 1.6.11 @@ -320,22 +320,22 @@ importers: version: 2.0.5(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/babel__core@7.20.5)(@types/node@18.19.33) jest: specifier: ^29.5.0 - version: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + version: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) jest-environment-jsdom: specifier: ^29.5.0 version: 29.7.0 jest-watch-typeahead: specifier: ^2.2.2 - version: 2.2.2(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5))) + version: 2.2.2(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3))) ts-jest: specifier: ^29.0.5 - version: 29.1.3(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)))(typescript@5.4.5) + version: 29.1.3(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)))(typescript@5.5.3) tslib: specifier: ^2.6.2 version: 2.6.2 typescript: - specifier: 5.4.5 - version: 5.4.5 + specifier: 5.5.3 + version: 5.5.3 packages/typescriptlang-org: dependencies: @@ -362,13 +362,13 @@ importers: version: link:../typescript-vfs gatsby: specifier: ^5.13.5 - version: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + version: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) gatsby-link: specifier: 5.6.0 version: 5.6.0(@gatsbyjs/reach-router@2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) gatsby-plugin-catch-links: specifier: ^5.6.0 - version: 5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)) + version: 5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)) gatsby-plugin-client-side-redirect: specifier: ^1.1.0 version: 1.1.0 @@ -377,52 +377,52 @@ importers: version: 1.0.1 gatsby-plugin-manifest: specifier: ^5.6.0 - version: 5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(graphql@16.8.1) + version: 5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(graphql@16.8.1) gatsby-plugin-offline: specifier: ^6.6.0 - version: 6.13.2(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.13.2(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) gatsby-plugin-react-helmet: specifier: ^6.6.0 - version: 6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(react-helmet@6.1.0(react@18.3.1)) + version: 6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(react-helmet@6.1.0(react@18.3.1)) gatsby-plugin-sass: specifier: ^6.6.0 - version: 6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(sass@1.77.2)(webpack@5.91.0) + version: 6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(sass@1.77.2)(webpack@5.91.0) gatsby-plugin-sharp: specifier: ^5.6.0 - version: 5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(graphql@16.8.1) + version: 5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(graphql@16.8.1) gatsby-plugin-sitemap: specifier: ^6.6.0 - version: 6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) gatsby-react-router-scroll: specifier: 6.6.0 version: 6.6.0(@gatsbyjs/reach-router@2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) gatsby-remark-autolink-headers: specifier: ^6.6.0 - version: 6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) gatsby-remark-copy-linked-files: specifier: ^6.6.0 - version: 6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)) + version: 6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)) gatsby-remark-emojis: specifier: ^0.4.3 version: 0.4.3 gatsby-remark-images: specifier: ^7.6.0 - version: 7.13.1(gatsby-plugin-sharp@5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(graphql@16.8.1))(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)) + version: 7.13.1(gatsby-plugin-sharp@5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(graphql@16.8.1))(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)) gatsby-remark-responsive-iframe: specifier: ^6.6.0 - version: 6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)) + version: 6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)) gatsby-remark-shiki-twoslash: specifier: ^3.0.36 version: 3.0.38 gatsby-remark-smartypants: specifier: ^6.6.0 - version: 6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)) + version: 6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)) gatsby-source-filesystem: specifier: ^5.6.0 - version: 5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)) + version: 5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)) gatsby-transformer-remark: specifier: ^6.6.0 - version: 6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)) + version: 6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)) github-slugger: specifier: ^1.5.0 version: 1.5.0 @@ -446,19 +446,19 @@ importers: version: 1.77.2 shiki-twoslash: specifier: ^3.1.2 - version: 3.1.2(typescript@5.4.5) + version: 3.1.2(typescript@5.5.3) ts-debounce: specifier: ^2.2.0 version: 2.3.0 ts-node: specifier: ^10.9.1 - version: 10.9.2(@types/node@18.19.33)(typescript@5.4.5) + version: 10.9.2(@types/node@18.19.33)(typescript@5.5.3) twoslash-cli: specifier: ^1.3.22 - version: 1.3.24(typescript@5.4.5) + version: 1.3.24(typescript@5.5.3) typescript: - specifier: 5.4.5 - version: 5.4.5 + specifier: 5.5.3 + version: 5.5.3 xml-js: specifier: ^1.6.11 version: 1.6.11 @@ -477,13 +477,13 @@ importers: version: 18.3.0 gatsby-plugin-typegen: specifier: ^3.1.0 - version: 3.1.0(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(graphql@16.8.1) + version: 3.1.0(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(graphql@16.8.1) gatsby-plugin-typescript: specifier: ^5.6.0 - version: 5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)) + version: 5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)) jest: specifier: ^29.5.0 - version: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + version: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) monaco-editor: specifier: ^0.32.1 version: 0.32.1 @@ -495,7 +495,7 @@ importers: version: 7.6.2 ts-jest: specifier: ^29.0.5 - version: 29.1.3(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)))(typescript@5.4.5) + version: 29.1.3(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)))(typescript@5.5.3) xmldom: specifier: ^0.5.0 version: 0.5.0 @@ -5163,7 +5163,7 @@ packages: engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: eslint: '>= 6' - typescript: 5.4.5 + typescript: 5.5.3 vue-template-compiler: '*' webpack: '>= 4' peerDependenciesMeta: @@ -8514,7 +8514,7 @@ packages: resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} engines: {node: '>=14'} peerDependencies: - typescript: 5.4.5 + typescript: 5.5.3 webpack: '>=4' peerDependenciesMeta: typescript: @@ -8710,7 +8710,7 @@ packages: remark-shiki-twoslash@3.1.3: resolution: {integrity: sha512-4e8OH3ySOCw5wUbDcPszokOKjKuebOqlP2WlySvC7ITBOq27BiGsFlq+FNWhxppZ+JzhTWah4gQrnMjX3KDbAQ==} peerDependencies: - typescript: 5.4.5 + typescript: 5.5.3 remark-stringify@7.0.4: resolution: {integrity: sha512-qck+8NeA1D0utk1ttKcWAoHRrJxERYQzkHDyn+pF5Z4whX1ug98uCNPPSeFgLSaNERRxnD6oxIug6DzZQth6Pg==} @@ -8883,13 +8883,13 @@ packages: engines: {node: '>=v14.21.3'} peerDependencies: rollup: ^3.0 - typescript: 5.4.5 + typescript: 5.5.3 rollup-plugin-typescript2@0.34.1: resolution: {integrity: sha512-P4cHLtGikESmqi1CA+tdMDUv8WbQV48mzPYt77TSTOPJpERyZ9TXdDgjSDix8Fkqce6soYz3+fa4lrC93IEkcw==} peerDependencies: rollup: '>=1.26.3' - typescript: 5.4.5 + typescript: 5.5.3 rollup@3.29.4: resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==} @@ -9108,7 +9108,7 @@ packages: shiki-twoslash@3.1.2: resolution: {integrity: sha512-JBcRIIizi+exIA/OUhYkV6jtyeZco0ykCkIRd5sgwIt1Pm4pz+maoaRZpm6SkhPwvif4fCA7xOtJOykhpIV64Q==} peerDependencies: - typescript: 5.4.5 + typescript: 5.5.3 shiki@0.10.1: resolution: {integrity: sha512-VsY7QJVzU51j5o1+DguUd+6vmCmZ5v/6gYu4vyYAhzjuNQU6P/vmSy4uQaOhvje031qQMiW0d2BwgMH52vqMng==} @@ -9740,7 +9740,7 @@ packages: babel-jest: ^29.0.0 esbuild: '*' jest: ^29.0.0 - typescript: 5.4.5 + typescript: 5.5.3 peerDependenciesMeta: '@babel/core': optional: true @@ -9760,7 +9760,7 @@ packages: '@swc/core': '>=1.2.50' '@swc/wasm': '>=1.2.50' '@types/node': '*' - typescript: 5.4.5 + typescript: 5.5.3 peerDependenciesMeta: '@swc/core': optional: true @@ -9777,7 +9777,7 @@ packages: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: - typescript: 5.4.5 + typescript: 5.5.3 tty-browserify@0.0.1: resolution: {integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==} @@ -9869,8 +9869,8 @@ packages: typedarray@0.0.6: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - typescript@5.4.5: - resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} + typescript@5.5.3: + resolution: {integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==} engines: {node: '>=14.17'} hasBin: true @@ -12084,7 +12084,7 @@ snapshots: jest-util: 29.7.0 slash: 3.0.0 - '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5))': + '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 @@ -12098,7 +12098,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + jest-config: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -13274,65 +13274,65 @@ snapshots: '@types/yoga-layout@1.9.2': {} - '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.5))(eslint@7.32.0)(typescript@5.4.5)': + '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.5.3))(eslint@7.32.0)(typescript@5.5.3)': dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.4.5) + '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.5.3) '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/type-utils': 5.62.0(eslint@7.32.0)(typescript@5.4.5) - '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@5.4.5) + '@typescript-eslint/type-utils': 5.62.0(eslint@7.32.0)(typescript@5.5.3) + '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@5.5.3) debug: 4.3.4 eslint: 7.32.0 graphemer: 1.4.0 ignore: 5.3.1 natural-compare-lite: 1.4.0 semver: 7.6.2 - tsutils: 3.21.0(typescript@5.4.5) + tsutils: 3.21.0(typescript@5.5.3) optionalDependencies: - typescript: 5.4.5 + typescript: 5.5.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)': + '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3)': dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.3) '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@5.5.3) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.3) debug: 4.3.4 eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 natural-compare-lite: 1.4.0 semver: 7.6.2 - tsutils: 3.21.0(typescript@5.4.5) + tsutils: 3.21.0(typescript@5.5.3) optionalDependencies: - typescript: 5.4.5 + typescript: 5.5.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.5)': + '@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.5.3)': dependencies: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.3) debug: 4.3.4 eslint: 7.32.0 optionalDependencies: - typescript: 5.4.5 + typescript: 5.5.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5)': + '@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3)': dependencies: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.3) debug: 4.3.4 eslint: 8.57.0 optionalDependencies: - typescript: 5.4.5 + typescript: 5.5.3 transitivePeerDependencies: - supports-color @@ -13341,33 +13341,33 @@ snapshots: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - '@typescript-eslint/type-utils@5.62.0(eslint@7.32.0)(typescript@5.4.5)': + '@typescript-eslint/type-utils@5.62.0(eslint@7.32.0)(typescript@5.5.3)': dependencies: - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) - '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.3) + '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@5.5.3) debug: 4.3.4 eslint: 7.32.0 - tsutils: 3.21.0(typescript@5.4.5) + tsutils: 3.21.0(typescript@5.5.3) optionalDependencies: - typescript: 5.4.5 + typescript: 5.5.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.4.5)': + '@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.5.3)': dependencies: - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.3) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.3) debug: 4.3.4 eslint: 8.57.0 - tsutils: 3.21.0(typescript@5.4.5) + tsutils: 3.21.0(typescript@5.5.3) optionalDependencies: - typescript: 5.4.5 + typescript: 5.5.3 transitivePeerDependencies: - supports-color '@typescript-eslint/types@5.62.0': {} - '@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.5)': + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.3)': dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 @@ -13375,20 +13375,20 @@ snapshots: globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 - tsutils: 3.21.0(typescript@5.4.5) + tsutils: 3.21.0(typescript@5.5.3) optionalDependencies: - typescript: 5.4.5 + typescript: 5.5.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@5.62.0(eslint@7.32.0)(typescript@5.4.5)': + '@typescript-eslint/utils@5.62.0(eslint@7.32.0)(typescript@5.5.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.3) eslint: 7.32.0 eslint-scope: 5.1.1 semver: 7.6.2 @@ -13396,14 +13396,14 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.5)': + '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.5.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.3) eslint: 8.57.0 eslint-scope: 5.1.1 semver: 7.6.2 @@ -14022,12 +14022,12 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-remove-graphql-queries@5.13.1(@babel/core@7.24.5)(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)): + babel-plugin-remove-graphql-queries@5.13.1(@babel/core@7.24.5)(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)): dependencies: '@babel/core': 7.24.5 '@babel/runtime': 7.24.5 '@babel/types': 7.24.5 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) gatsby-core-utils: 4.13.1 babel-plugin-syntax-object-rest-spread@6.13.0: {} @@ -14966,13 +14966,13 @@ snapshots: safe-buffer: 5.2.1 sha.js: 2.4.11 - create-jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)): + create-jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + jest-config: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -15673,8 +15673,8 @@ snapshots: '@rollup/plugin-replace': 5.0.5(rollup@3.29.4) '@rollup/plugin-terser': 0.4.4(rollup@3.29.4) '@types/jest': 29.5.12 - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.3) ansi-escapes: 4.3.2 asyncro: 3.0.0 babel-jest: 29.7.0(@babel/core@7.24.5) @@ -15690,19 +15690,19 @@ snapshots: eslint: 8.57.0 eslint-config-prettier: 8.10.0(eslint@8.57.0) eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.5))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5))(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0) - eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)))(typescript@5.4.5) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0) + eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)))(typescript@5.5.3) eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) eslint-plugin-prettier: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.0))(eslint@8.57.0)(prettier@2.8.8) eslint-plugin-react: 7.34.1(eslint@8.57.0) eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0) - eslint-plugin-testing-library: 5.11.1(eslint@8.57.0)(typescript@5.4.5) + eslint-plugin-testing-library: 5.11.1(eslint@8.57.0)(typescript@5.5.3) execa: 4.1.0 figlet: 1.7.0 fs-extra: 10.1.0 - jest: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + jest: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) jest-environment-jsdom: 29.7.0 - jest-watch-typeahead: 2.2.2(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5))) + jest-watch-typeahead: 2.2.2(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3))) jpjs: 1.2.1 lodash.merge: 4.6.2 ora: 5.4.1 @@ -15713,18 +15713,18 @@ snapshots: regenerator-runtime: 0.14.1 rollup: 3.29.4 rollup-plugin-delete: 2.0.0 - rollup-plugin-dts: 5.3.1(rollup@3.29.4)(typescript@5.4.5) - rollup-plugin-typescript2: 0.34.1(rollup@3.29.4)(typescript@5.4.5) + rollup-plugin-dts: 5.3.1(rollup@3.29.4)(typescript@5.5.3) + rollup-plugin-typescript2: 0.34.1(rollup@3.29.4)(typescript@5.5.3) sade: 1.8.1 semver: 7.6.2 shelljs: 0.8.5 sort-package-json: 1.57.0 tiny-glob: 0.2.9 - ts-jest: 29.1.3(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)))(typescript@5.4.5) - ts-node: 10.9.2(@types/node@18.19.33)(typescript@5.4.5) + ts-jest: 29.1.3(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)))(typescript@5.5.3) + ts-node: 10.9.2(@types/node@18.19.33)(typescript@5.5.3) tslib: 2.6.2 type-fest: 2.19.0 - typescript: 5.4.5 + typescript: 5.5.3 transitivePeerDependencies: - '@babel/plugin-syntax-flow' - '@babel/plugin-transform-react-jsx' @@ -16063,20 +16063,20 @@ snapshots: dependencies: eslint: 8.57.0 - eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.5))(eslint@7.32.0)(typescript@5.4.5))(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.5))(babel-eslint@10.1.0(eslint@7.32.0))(eslint-plugin-flowtype@5.10.0(eslint@7.32.0))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.5))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.2(eslint@7.32.0))(eslint-plugin-react@7.34.1(eslint@7.32.0))(eslint@7.32.0)(typescript@5.4.5): + eslint-config-react-app@6.0.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.5.3))(eslint@7.32.0)(typescript@5.5.3))(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.5.3))(babel-eslint@10.1.0(eslint@7.32.0))(eslint-plugin-flowtype@5.10.0(eslint@7.32.0))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.5.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.2(eslint@7.32.0))(eslint-plugin-react@7.34.1(eslint@7.32.0))(eslint@7.32.0)(typescript@5.5.3): dependencies: - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.5))(eslint@7.32.0)(typescript@5.4.5) - '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.4.5) + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.5.3))(eslint@7.32.0)(typescript@5.5.3) + '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.5.3) babel-eslint: 10.1.0(eslint@7.32.0) confusing-browser-globals: 1.0.11 eslint: 7.32.0 eslint-plugin-flowtype: 5.10.0(eslint@7.32.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.5))(eslint@7.32.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.5.3))(eslint@7.32.0) eslint-plugin-jsx-a11y: 6.8.0(eslint@7.32.0) eslint-plugin-react: 7.34.1(eslint@7.32.0) eslint-plugin-react-hooks: 4.6.2(eslint@7.32.0) optionalDependencies: - typescript: 5.4.5 + typescript: 5.5.3 eslint-import-resolver-node@0.3.9: dependencies: @@ -16086,21 +16086,21 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0): + eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.4.5) + '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.5.3) eslint: 7.32.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): + eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: @@ -16120,7 +16120,7 @@ snapshots: lodash: 4.17.21 string-natural-compare: 3.0.1 - eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.5))(eslint@7.32.0): + eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.5.3))(eslint@7.32.0): dependencies: array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 @@ -16130,7 +16130,7 @@ snapshots: doctrine: 2.1.0 eslint: 7.32.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0) hasown: 2.0.2 is-core-module: 2.13.1 is-glob: 4.0.3 @@ -16141,13 +16141,13 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.4.5) + '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.5.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0): + eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0): dependencies: array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 @@ -16157,7 +16157,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) hasown: 2.0.2 is-core-module: 2.13.1 is-glob: 4.0.3 @@ -16168,19 +16168,19 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)))(typescript@5.4.5): + eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)))(typescript@5.5.3): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.3) eslint: 8.57.0 optionalDependencies: - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5) - jest: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3) + jest: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) transitivePeerDependencies: - supports-color - typescript @@ -16285,9 +16285,9 @@ snapshots: semver: 6.3.1 string.prototype.matchall: 4.0.11 - eslint-plugin-testing-library@5.11.1(eslint@8.57.0)(typescript@5.4.5): + eslint-plugin-testing-library@5.11.1(eslint@8.57.0)(typescript@5.5.3): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.3) eslint: 8.57.0 transitivePeerDependencies: - supports-color @@ -16823,7 +16823,7 @@ snapshots: forever-agent@0.6.1: optional: true - fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@5.4.5)(webpack@5.91.0): + fork-ts-checker-webpack-plugin@6.5.3(eslint@7.32.0)(typescript@5.5.3)(webpack@5.91.0): dependencies: '@babel/code-frame': 7.24.2 '@types/json-schema': 7.0.15 @@ -16838,7 +16838,7 @@ snapshots: schema-utils: 2.7.0 semver: 7.6.2 tapable: 1.1.3 - typescript: 5.4.5 + typescript: 5.5.3 webpack: 5.91.0 optionalDependencies: eslint: 7.32.0 @@ -17078,11 +17078,11 @@ snapshots: '@parcel/transformer-js': 2.8.3(@parcel/core@2.8.3) '@parcel/transformer-json': 2.8.3(@parcel/core@2.8.3) - gatsby-plugin-catch-links@5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)): + gatsby-plugin-catch-links@5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)): dependencies: '@babel/runtime': 7.24.5 escape-string-regexp: 1.0.5 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) gatsby-plugin-client-side-redirect@1.1.0: dependencies: @@ -17095,22 +17095,22 @@ snapshots: ptz-i18n: 1.0.0 ramda: 0.24.1 - gatsby-plugin-manifest@5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(graphql@16.8.1): + gatsby-plugin-manifest@5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(graphql@16.8.1): dependencies: '@babel/runtime': 7.24.5 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) gatsby-core-utils: 4.13.1 - gatsby-plugin-utils: 4.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(graphql@16.8.1) + gatsby-plugin-utils: 4.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(graphql@16.8.1) semver: 7.6.2 sharp: 0.28.1 transitivePeerDependencies: - graphql - gatsby-plugin-offline@6.13.2(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + gatsby-plugin-offline@6.13.2(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.5 cheerio: 1.0.0-rc.12 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) gatsby-core-utils: 4.13.1 glob: 7.2.3 idb-keyval: 3.2.0 @@ -17119,7 +17119,7 @@ snapshots: react-dom: 18.3.1(react@18.3.1) workbox-build: 4.3.1 - gatsby-plugin-page-creator@5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(graphql@16.8.1): + gatsby-plugin-page-creator@5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(graphql@16.8.1): dependencies: '@babel/runtime': 7.24.5 '@babel/traverse': 7.24.5 @@ -17127,10 +17127,10 @@ snapshots: chokidar: 3.6.0 fs-exists-cached: 1.0.0 fs-extra: 11.2.0 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) gatsby-core-utils: 4.13.1 gatsby-page-utils: 3.13.1 - gatsby-plugin-utils: 4.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(graphql@16.8.1) + gatsby-plugin-utils: 4.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(graphql@16.8.1) gatsby-telemetry: 4.13.1 globby: 11.1.0 lodash: 4.17.21 @@ -17139,16 +17139,16 @@ snapshots: - graphql - supports-color - gatsby-plugin-react-helmet@6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(react-helmet@6.1.0(react@18.3.1)): + gatsby-plugin-react-helmet@6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(react-helmet@6.1.0(react@18.3.1)): dependencies: '@babel/runtime': 7.24.5 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) react-helmet: 6.1.0(react@18.3.1) - gatsby-plugin-sass@6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(sass@1.77.2)(webpack@5.91.0): + gatsby-plugin-sass@6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(sass@1.77.2)(webpack@5.91.0): dependencies: '@babel/runtime': 7.24.5 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) resolve-url-loader: 3.1.5 sass: 1.77.2 sass-loader: 10.5.2(sass@1.77.2)(webpack@5.91.0) @@ -17157,7 +17157,7 @@ snapshots: - node-sass - webpack - gatsby-plugin-sharp@5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(graphql@16.8.1): + gatsby-plugin-sharp@5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(graphql@16.8.1): dependencies: '@babel/runtime': 7.24.5 async: 3.2.5 @@ -17165,9 +17165,9 @@ snapshots: debug: 4.3.4 filenamify: 4.3.0 fs-extra: 11.2.0 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) gatsby-core-utils: 4.13.1 - gatsby-plugin-utils: 4.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(graphql@16.8.1) + gatsby-plugin-utils: 4.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(graphql@16.8.1) lodash: 4.17.21 probe-image-size: 7.2.3 semver: 7.6.2 @@ -17176,17 +17176,17 @@ snapshots: - graphql - supports-color - gatsby-plugin-sitemap@6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + gatsby-plugin-sitemap@6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.5 common-tags: 1.8.2 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) minimatch: 3.1.2 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) sitemap: 7.1.2 - gatsby-plugin-typegen@3.1.0(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(graphql@16.8.1): + gatsby-plugin-typegen@3.1.0(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(graphql@16.8.1): dependencies: '@graphql-codegen/add': 3.2.3(graphql@16.8.1) '@graphql-codegen/core': 2.6.8(graphql@16.8.1) @@ -17199,7 +17199,7 @@ snapshots: '@graphql-codegen/typescript-resolvers': 2.7.13(graphql@16.8.1) '@graphql-codegen/visitor-plugin-common': 2.13.8(graphql@16.8.1) '@graphql-tools/utils': 8.13.1(graphql@16.8.1) - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) graphql: 16.8.1 lodash: 4.17.21 slugify: 1.6.6 @@ -17208,7 +17208,7 @@ snapshots: - encoding - supports-color - gatsby-plugin-typescript@5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)): + gatsby-plugin-typescript@5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)): dependencies: '@babel/core': 7.24.5 '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.5) @@ -17216,17 +17216,17 @@ snapshots: '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.5) '@babel/preset-typescript': 7.24.1(@babel/core@7.24.5) '@babel/runtime': 7.24.5 - babel-plugin-remove-graphql-queries: 5.13.1(@babel/core@7.24.5)(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)) - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + babel-plugin-remove-graphql-queries: 5.13.1(@babel/core@7.24.5)(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) transitivePeerDependencies: - supports-color - gatsby-plugin-utils@4.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(graphql@16.8.1): + gatsby-plugin-utils@4.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(graphql@16.8.1): dependencies: '@babel/runtime': 7.24.5 fastq: 1.17.1 fs-extra: 11.2.0 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) gatsby-core-utils: 4.13.1 gatsby-sharp: 1.13.0 graphql: 16.8.1 @@ -17251,10 +17251,10 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - gatsby-remark-autolink-headers@6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + gatsby-remark-autolink-headers@6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.24.5 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) github-slugger: 1.5.0 lodash: 4.17.21 mdast-util-to-string: 2.0.0 @@ -17262,12 +17262,12 @@ snapshots: react-dom: 18.3.1(react@18.3.1) unist-util-visit: 2.0.3 - gatsby-remark-copy-linked-files@6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)): + gatsby-remark-copy-linked-files@6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)): dependencies: '@babel/runtime': 7.24.5 cheerio: 1.0.0-rc.12 fs-extra: 11.2.0 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) is-relative-url: 3.0.0 lodash: 4.17.21 path-is-inside: 1.0.2 @@ -17278,14 +17278,14 @@ snapshots: gatsby-remark-emojis@0.4.3: {} - gatsby-remark-images@7.13.1(gatsby-plugin-sharp@5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(graphql@16.8.1))(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)): + gatsby-remark-images@7.13.1(gatsby-plugin-sharp@5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(graphql@16.8.1))(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)): dependencies: '@babel/runtime': 7.24.5 chalk: 4.1.2 cheerio: 1.0.0-rc.12 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) gatsby-core-utils: 4.13.1 - gatsby-plugin-sharp: 5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(graphql@16.8.1) + gatsby-plugin-sharp: 5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(graphql@16.8.1) is-relative-url: 3.0.0 lodash: 4.17.21 mdast-util-definitions: 4.0.0 @@ -17293,25 +17293,25 @@ snapshots: unist-util-select: 3.0.4 unist-util-visit-parents: 3.1.1 - gatsby-remark-responsive-iframe@6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)): + gatsby-remark-responsive-iframe@6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)): dependencies: '@babel/runtime': 7.24.5 cheerio: 1.0.0-rc.12 common-tags: 1.8.2 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) lodash: 4.17.21 unist-util-visit: 2.0.3 gatsby-remark-shiki-twoslash@3.0.38: dependencies: - remark-shiki-twoslash: 3.1.3(typescript@5.4.5) - typescript: 5.4.5 + remark-shiki-twoslash: 3.1.3(typescript@5.5.3) + typescript: 5.5.3 unist-util-visit: 2.0.3 - gatsby-remark-smartypants@6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)): + gatsby-remark-smartypants@6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)): dependencies: '@babel/runtime': 7.24.5 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) retext: 7.0.1 retext-smartypants: 4.0.0 unist-util-visit: 2.0.3 @@ -17326,13 +17326,13 @@ snapshots: dependencies: sharp: 0.28.1 - gatsby-source-filesystem@5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)): + gatsby-source-filesystem@5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)): dependencies: '@babel/runtime': 7.24.5 chokidar: 3.6.0 file-type: 16.5.4 fs-extra: 11.2.0 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) gatsby-core-utils: 4.13.1 mime: 3.0.0 pretty-bytes: 5.6.0 @@ -17356,10 +17356,10 @@ snapshots: transitivePeerDependencies: - encoding - gatsby-transformer-remark@6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)): + gatsby-transformer-remark@6.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)): dependencies: '@babel/runtime': 7.24.5 - gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5) + gatsby: 5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3) gatsby-core-utils: 4.13.1 gray-matter: 4.0.3 hast-util-raw: 6.1.0 @@ -17393,7 +17393,7 @@ snapshots: transitivePeerDependencies: - supports-color - gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5): + gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3): dependencies: '@babel/code-frame': 7.24.2 '@babel/core': 7.24.5 @@ -17420,8 +17420,8 @@ snapshots: '@pmmmwh/react-refresh-webpack-plugin': 0.5.13(react-refresh@0.14.2)(type-fest@4.18.2)(webpack@5.91.0) '@sigmacomputing/babel-plugin-lodash': 3.3.5 '@types/http-proxy': 1.17.14 - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.5))(eslint@7.32.0)(typescript@5.4.5) - '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.4.5) + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.5.3))(eslint@7.32.0)(typescript@5.5.3) + '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.5.3) '@vercel/webpack-asset-relocator-loader': 1.7.3 acorn-loose: 8.4.0 acorn-walk: 8.3.2 @@ -17433,7 +17433,7 @@ snapshots: babel-loader: 8.3.0(@babel/core@7.24.5)(webpack@5.91.0) babel-plugin-add-module-exports: 1.0.4 babel-plugin-dynamic-import-node: 2.3.3 - babel-plugin-remove-graphql-queries: 5.13.1(@babel/core@7.24.5)(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)) + babel-plugin-remove-graphql-queries: 5.13.1(@babel/core@7.24.5)(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)) babel-preset-gatsby: 3.13.2(@babel/core@7.24.5)(core-js@3.37.1) better-opn: 2.1.1 bluebird: 3.7.2 @@ -17459,9 +17459,9 @@ snapshots: enhanced-resolve: 5.16.1 error-stack-parser: 2.1.4 eslint: 7.32.0 - eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.5))(eslint@7.32.0)(typescript@5.4.5))(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.5))(babel-eslint@10.1.0(eslint@7.32.0))(eslint-plugin-flowtype@5.10.0(eslint@7.32.0))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.5))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.2(eslint@7.32.0))(eslint-plugin-react@7.34.1(eslint@7.32.0))(eslint@7.32.0)(typescript@5.4.5) + eslint-config-react-app: 6.0.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.5.3))(eslint@7.32.0)(typescript@5.5.3))(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.5.3))(babel-eslint@10.1.0(eslint@7.32.0))(eslint-plugin-flowtype@5.10.0(eslint@7.32.0))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.5.3))(eslint@7.32.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0))(eslint-plugin-react-hooks@4.6.2(eslint@7.32.0))(eslint-plugin-react@7.34.1(eslint@7.32.0))(eslint@7.32.0)(typescript@5.5.3) eslint-plugin-flowtype: 5.10.0(eslint@7.32.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.4.5))(eslint@7.32.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@5.5.3))(eslint@7.32.0) eslint-plugin-jsx-a11y: 6.8.0(eslint@7.32.0) eslint-plugin-react: 7.34.1(eslint@7.32.0) eslint-plugin-react-hooks: 4.6.2(eslint@7.32.0) @@ -17483,9 +17483,9 @@ snapshots: gatsby-link: 5.13.1(@gatsbyjs/reach-router@2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) gatsby-page-utils: 3.13.1 gatsby-parcel-config: 1.13.1(@parcel/core@2.8.3) - gatsby-plugin-page-creator: 5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(graphql@16.8.1) - gatsby-plugin-typescript: 5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5)) - gatsby-plugin-utils: 4.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.4.5))(graphql@16.8.1) + gatsby-plugin-page-creator: 5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(graphql@16.8.1) + gatsby-plugin-typescript: 5.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3)) + gatsby-plugin-utils: 4.13.1(gatsby@5.13.5(babel-eslint@10.1.0(eslint@7.32.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@4.18.2)(typescript@5.5.3))(graphql@16.8.1) gatsby-react-router-scroll: 6.13.1(@gatsbyjs/reach-router@2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) gatsby-script: 2.13.0(@gatsbyjs/reach-router@2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) gatsby-telemetry: 4.13.1 @@ -17533,7 +17533,7 @@ snapshots: query-string: 6.14.1 raw-loader: 4.0.2(webpack@5.91.0) react: 18.3.1 - react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@5.4.5)(webpack@5.91.0) + react-dev-utils: 12.0.1(eslint@7.32.0)(typescript@5.5.3)(webpack@5.91.0) react-dom: 18.3.1(react@18.3.1) react-refresh: 0.14.2 react-server-dom-webpack: 0.0.0-experimental-c8b778b7f-20220825(patch_hash=mr727qw45duqihwv4trgafh5ci)(react@18.3.1)(webpack@5.91.0) @@ -18771,16 +18771,16 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)): + jest-cli@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + create-jest: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + jest-config: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -18790,7 +18790,7 @@ snapshots: - supports-color - ts-node - jest-config@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)): + jest-config@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)): dependencies: '@babel/core': 7.24.5 '@jest/test-sequencer': 29.7.0 @@ -18816,7 +18816,7 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 18.19.33 - ts-node: 10.9.2(@types/node@18.19.33)(typescript@5.4.5) + ts-node: 10.9.2(@types/node@18.19.33)(typescript@5.5.3) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -19085,11 +19085,11 @@ snapshots: leven: 3.1.0 pretty-format: 29.7.0 - jest-watch-typeahead@2.2.2(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5))): + jest-watch-typeahead@2.2.2(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3))): dependencies: ansi-escapes: 6.2.1 chalk: 5.3.0 - jest: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + jest: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) jest-regex-util: 29.6.3 jest-watcher: 29.7.0 slash: 5.1.0 @@ -19126,12 +19126,12 @@ snapshots: merge-stream: 2.0.0 supports-color: 8.1.1 - jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)): + jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)): dependencies: - '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + jest-cli: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -21152,7 +21152,7 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 - react-dev-utils@12.0.1(eslint@7.32.0)(typescript@5.4.5)(webpack@5.91.0): + react-dev-utils@12.0.1(eslint@7.32.0)(typescript@5.5.3)(webpack@5.91.0): dependencies: '@babel/code-frame': 7.24.2 address: 1.2.2 @@ -21163,7 +21163,7 @@ snapshots: escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@5.4.5)(webpack@5.91.0) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@7.32.0)(typescript@5.5.3)(webpack@5.91.0) global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -21180,7 +21180,7 @@ snapshots: text-table: 0.2.0 webpack: 5.91.0 optionalDependencies: - typescript: 5.4.5 + typescript: 5.5.3 transitivePeerDependencies: - eslint - supports-color @@ -21451,7 +21451,7 @@ snapshots: dependencies: mdast-util-to-nlcst: 4.0.1 - remark-shiki-twoslash@3.1.3(typescript@5.4.5): + remark-shiki-twoslash@3.1.3(typescript@5.5.3): dependencies: '@types/unist': 2.0.10 '@typescript/twoslash': link:packages/ts-twoslasher @@ -21459,9 +21459,9 @@ snapshots: fenceparser: 1.1.1 regenerator-runtime: 0.13.11 shiki: 0.10.1 - shiki-twoslash: 3.1.2(typescript@5.4.5) + shiki-twoslash: 3.1.2(typescript@5.5.3) tslib: 2.6.2 - typescript: 5.4.5 + typescript: 5.5.3 unist-util-visit: 2.0.3 remark-stringify@7.0.4: @@ -21680,15 +21680,15 @@ snapshots: dependencies: del: 5.1.0 - rollup-plugin-dts@5.3.1(rollup@3.29.4)(typescript@5.4.5): + rollup-plugin-dts@5.3.1(rollup@3.29.4)(typescript@5.5.3): dependencies: magic-string: 0.30.10 rollup: 3.29.4 - typescript: 5.4.5 + typescript: 5.5.3 optionalDependencies: '@babel/code-frame': 7.24.2 - rollup-plugin-typescript2@0.34.1(rollup@3.29.4)(typescript@5.4.5): + rollup-plugin-typescript2@0.34.1(rollup@3.29.4)(typescript@5.5.3): dependencies: '@rollup/pluginutils': 4.2.1 find-cache-dir: 3.3.2 @@ -21696,7 +21696,7 @@ snapshots: rollup: 3.29.4 semver: 7.6.2 tslib: 2.6.2 - typescript: 5.4.5 + typescript: 5.5.3 rollup@3.29.4: optionalDependencies: @@ -21961,13 +21961,13 @@ snapshots: interpret: 1.4.0 rechoir: 0.6.2 - shiki-twoslash@3.1.2(typescript@5.4.5): + shiki-twoslash@3.1.2(typescript@5.5.3): dependencies: '@typescript/twoslash': link:packages/ts-twoslasher '@typescript/vfs': link:packages/typescript-vfs fenceparser: 1.1.1 shiki: 0.10.1 - typescript: 5.4.5 + typescript: 5.5.3 shiki@0.10.1: dependencies: @@ -22674,17 +22674,17 @@ snapshots: ts-debounce@2.3.0: {} - ts-jest@29.1.3(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)))(typescript@5.4.5): + ts-jest@29.1.3(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)))(typescript@5.5.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5)) + jest: 29.7.0(@types/node@18.19.33)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.6.2 - typescript: 5.4.5 + typescript: 5.5.3 yargs-parser: 21.1.1 optionalDependencies: '@babel/core': 7.24.5 @@ -22692,7 +22692,7 @@ snapshots: '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.5) - ts-node@10.9.2(@types/node@18.19.33)(typescript@5.4.5): + ts-node@10.9.2(@types/node@18.19.33)(typescript@5.5.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 @@ -22706,7 +22706,7 @@ snapshots: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.4.5 + typescript: 5.5.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 @@ -22719,10 +22719,10 @@ snapshots: tslib@2.6.2: {} - tsutils@3.21.0(typescript@5.4.5): + tsutils@3.21.0(typescript@5.5.3): dependencies: tslib: 2.6.2 - typescript: 5.4.5 + typescript: 5.5.3 tty-browserify@0.0.1: {} @@ -22743,14 +22743,14 @@ snapshots: tweetnacl@0.14.5: optional: true - twoslash-cli@1.3.24(typescript@5.4.5): + twoslash-cli@1.3.24(typescript@5.5.3): dependencies: chokidar: 3.6.0 commander: 7.2.0 hast-util-to-html: 7.1.3 mdast-util-to-hast: 10.2.0 remark: 13.0.0 - remark-shiki-twoslash: 3.1.3(typescript@5.4.5) + remark-shiki-twoslash: 3.1.3(typescript@5.5.3) unist-util-visit: 3.1.0 transitivePeerDependencies: - supports-color @@ -22828,7 +22828,7 @@ snapshots: typedarray@0.0.6: {} - typescript@5.4.5: {} + typescript@5.5.3: {} ua-parser-js@1.0.37: {} From ce571af59ade2be5bb4ea07f54b3c44e5174b9d1 Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Mon, 8 Jul 2024 10:16:11 -0700 Subject: [PATCH 2/5] Fix compile --- .changeset/proud-pants-glow.md | 2 ++ packages/sandbox/src/compilerOptions.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .changeset/proud-pants-glow.md diff --git a/.changeset/proud-pants-glow.md b/.changeset/proud-pants-glow.md new file mode 100644 index 000000000000..a845151cc840 --- /dev/null +++ b/.changeset/proud-pants-glow.md @@ -0,0 +1,2 @@ +--- +--- diff --git a/packages/sandbox/src/compilerOptions.ts b/packages/sandbox/src/compilerOptions.ts index d50d8ffa4cd4..7d319c0009d1 100644 --- a/packages/sandbox/src/compilerOptions.ts +++ b/packages/sandbox/src/compilerOptions.ts @@ -85,7 +85,7 @@ export const getCompilerOptionsFromParams = ( let toSet = undefined if (val === "true" && playgroundDefaults[key] !== true) { toSet = true - } else if (val === "false" && playgroundDefaults[key] !== false) { + } else if (val === "false" && (playgroundDefaults[key] as any) !== false) { // TODO(jakebailey): remove as any, check undefined above toSet = false } else if (!isNaN(parseInt(val, 10)) && playgroundDefaults[key] !== parseInt(val, 10)) { toSet = parseInt(val, 10) From 5b2cacee2810eb5c17342859a1a6524085fe7e02 Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Mon, 8 Jul 2024 10:25:11 -0700 Subject: [PATCH 3/5] docs --- .../tsconfig-reference/copy/en/options/isolatedDeclarations.md | 3 ++- packages/tsconfig-reference/copy/en/options/noCheck.md | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/tsconfig-reference/copy/en/options/isolatedDeclarations.md b/packages/tsconfig-reference/copy/en/options/isolatedDeclarations.md index 4d41a6204cd2..bef4c44a36b7 100644 --- a/packages/tsconfig-reference/copy/en/options/isolatedDeclarations.md +++ b/packages/tsconfig-reference/copy/en/options/isolatedDeclarations.md @@ -1,6 +1,7 @@ --- display: "isolatedDeclarations" -oneline: "Does something" +oneline: "Require sufficient annotation on exports so other tools can trivially generate declaration files." --- Require sufficient annotation on exports so other tools can trivially generate declaration files. +For more information, see the [5.5 release notes](/docs/handbook/release-notes/typescript-5-5.html#isolated-declarations) diff --git a/packages/tsconfig-reference/copy/en/options/noCheck.md b/packages/tsconfig-reference/copy/en/options/noCheck.md index e3e622795d95..334991db3edf 100644 --- a/packages/tsconfig-reference/copy/en/options/noCheck.md +++ b/packages/tsconfig-reference/copy/en/options/noCheck.md @@ -1,6 +1,6 @@ --- display: "noCheck" -oneline: "Does something" +oneline: "Disable full type checking (only critical parse and emit errors will be reported)." --- Disable full type checking (only critical parse and emit errors will be reported). From 45821f17ee2c51ec066c128df75f5c4018ec34ec Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Mon, 8 Jul 2024 10:38:54 -0700 Subject: [PATCH 4/5] Update twoslasher tests --- .../results/cuts_out_unnecessary_code.json | 18 +++++++++--------- .../test/results/errorsWithGenerics.json | 4 ++-- .../test/results/tests/cut_file_errors.json | 6 +++--- .../test/results/tests/large-cut.json | 6 +++--- .../test/results/unknown_compiler_value.json | 2 +- 5 files changed, 18 insertions(+), 18 deletions(-) diff --git a/packages/ts-twoslasher/test/results/cuts_out_unnecessary_code.json b/packages/ts-twoslasher/test/results/cuts_out_unnecessary_code.json index 6270f6a82db3..838b49333417 100644 --- a/packages/ts-twoslasher/test/results/cuts_out_unnecessary_code.json +++ b/packages/ts-twoslasher/test/results/cuts_out_unnecessary_code.json @@ -33,7 +33,7 @@ ], "staticQuickInfos": [ { - "text": "function createLabel(idOrName: T): NameOrId", + "text": "function createLabel(idOrName: T): NameOrId", "docs": "", "start": 9, "length": 11, @@ -42,7 +42,7 @@ "targetString": "createLabel" }, { - "text": "(type parameter) T in createLabel(idOrName: T): NameOrId", + "text": "(type parameter) T in createLabel(idOrName: T): NameOrId", "docs": "", "start": 21, "length": 1, @@ -51,7 +51,7 @@ "targetString": "T" }, { - "text": "(parameter) idOrName: T extends string | number", + "text": "(parameter) idOrName: T extends number | string", "docs": "", "start": 48, "length": 8, @@ -60,7 +60,7 @@ "targetString": "idOrName" }, { - "text": "(type parameter) T in createLabel(idOrName: T): NameOrId", + "text": "(type parameter) T in createLabel(idOrName: T): NameOrId", "docs": "", "start": 58, "length": 1, @@ -69,7 +69,7 @@ "targetString": "T" }, { - "text": "type NameOrId = T extends number ? IdLabel : NameLabel", + "text": "type NameOrId = T extends number ? IdLabel : NameLabel", "docs": "", "start": 62, "length": 8, @@ -78,7 +78,7 @@ "targetString": "NameOrId" }, { - "text": "(type parameter) T in createLabel(idOrName: T): NameOrId", + "text": "(type parameter) T in createLabel(idOrName: T): NameOrId", "docs": "", "start": 71, "length": 1, @@ -96,7 +96,7 @@ "targetString": "a" }, { - "text": "function createLabel<\"typescript\">(idOrName: \"typescript\"): NameLabel", + "text": "function createLabel<\"typescript\">(idOrName: \"typescript\"): NameOrId<\"typescript\">", "docs": "", "start": 113, "length": 11, @@ -114,7 +114,7 @@ "targetString": "b" }, { - "text": "function createLabel<2.8>(idOrName: 2.8): IdLabel", + "text": "function createLabel<2.8>(idOrName: 2.8): NameOrId<2.8>", "docs": "", "start": 149, "length": 11, @@ -132,7 +132,7 @@ "targetString": "c" }, { - "text": "function createLabel<\"hello\" | 42>(idOrName: \"hello\" | 42): IdLabel | NameLabel", + "text": "function createLabel<\"hello\" | 42>(idOrName: \"hello\" | 42): NameOrId<\"hello\" | 42>", "docs": "", "start": 176, "length": 11, diff --git a/packages/ts-twoslasher/test/results/errorsWithGenerics.json b/packages/ts-twoslasher/test/results/errorsWithGenerics.json index 8124d59abfac..c265185aa551 100644 --- a/packages/ts-twoslasher/test/results/errorsWithGenerics.json +++ b/packages/ts-twoslasher/test/results/errorsWithGenerics.json @@ -14,7 +14,7 @@ "targetString": "a" }, { - "text": "type Record = { [P in K]: T; }", + "text": "type Record = { [P in K]: T; }", "docs": "Construct a type with a set of properties K of type T", "start": 9, "length": 6, @@ -32,7 +32,7 @@ "targetString": "b" }, { - "text": "type Record = { [P in K]: T; }", + "text": "type Record = { [P in K]: T; }", "docs": "Construct a type with a set of properties K of type T", "start": 44, "length": 6, diff --git a/packages/ts-twoslasher/test/results/tests/cut_file_errors.json b/packages/ts-twoslasher/test/results/tests/cut_file_errors.json index 698b14885cee..ddb72a72d55b 100644 --- a/packages/ts-twoslasher/test/results/tests/cut_file_errors.json +++ b/packages/ts-twoslasher/test/results/tests/cut_file_errors.json @@ -14,7 +14,7 @@ "targetString": "NetworkState" }, { - "text": "type NetworkLoadingState = {\n state: 'loading';\n}", + "text": "type NetworkLoadingState = {\n state: \"loading\";\n}", "docs": "", "start": 20, "length": 19, @@ -23,7 +23,7 @@ "targetString": "NetworkLoadingState" }, { - "text": "type NetworkFailedState = {\n state: 'failed';\n code: number;\n}", + "text": "type NetworkFailedState = {\n state: \"failed\";\n code: number;\n}", "docs": "", "start": 42, "length": 18, @@ -32,7 +32,7 @@ "targetString": "NetworkFailedState" }, { - "text": "type NetworkSuccessState = {\n state: 'success';\n response: {\n title: string;\n duration: number;\n summary: string;\n };\n}", + "text": "type NetworkSuccessState = {\n state: \"success\";\n response: {\n title: string;\n duration: number;\n summary: string;\n };\n}", "docs": "", "start": 63, "length": 19, diff --git a/packages/ts-twoslasher/test/results/tests/large-cut.json b/packages/ts-twoslasher/test/results/tests/large-cut.json index 3f29694e2a85..37a55267678b 100644 --- a/packages/ts-twoslasher/test/results/tests/large-cut.json +++ b/packages/ts-twoslasher/test/results/tests/large-cut.json @@ -14,7 +14,7 @@ "targetString": "NetworkState" }, { - "text": "type NetworkLoadingState = {\n state: 'loading';\n}", + "text": "type NetworkLoadingState = {\n state: \"loading\";\n}", "docs": "", "start": 20, "length": 19, @@ -23,7 +23,7 @@ "targetString": "NetworkLoadingState" }, { - "text": "type NetworkFailedState = {\n state: 'failed';\n code: number;\n}", + "text": "type NetworkFailedState = {\n state: \"failed\";\n code: number;\n}", "docs": "", "start": 42, "length": 18, @@ -32,7 +32,7 @@ "targetString": "NetworkFailedState" }, { - "text": "type NetworkSuccessState = {\n state: 'success';\n response: {\n title: string;\n duration: number;\n summary: string;\n };\n}", + "text": "type NetworkSuccessState = {\n state: \"success\";\n response: {\n title: string;\n duration: number;\n summary: string;\n };\n}", "docs": "", "start": 63, "length": 19, diff --git a/packages/ts-twoslasher/test/results/unknown_compiler_value.json b/packages/ts-twoslasher/test/results/unknown_compiler_value.json index 75a4711a7837..9d9b65b1226a 100644 --- a/packages/ts-twoslasher/test/results/unknown_compiler_value.json +++ b/packages/ts-twoslasher/test/results/unknown_compiler_value.json @@ -3,4 +3,4 @@ Got TS2015 for target but it is not a supported value by the TS compiler. -Allowed values: es3,es5,es6,es2015,es2016,es2017,es2018,es2019,es2020,es2021,es2022,esnext \ No newline at end of file +Allowed values: es3,es5,es6,es2015,es2016,es2017,es2018,es2019,es2020,es2021,es2022,es2023,esnext \ No newline at end of file From a118f398b3cf0a34eed8e1054da9cbb4ade08031 Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Mon, 8 Jul 2024 10:51:47 -0700 Subject: [PATCH 5/5] Fix files --- .../copy/en/project-config/Compiler Options.md | 4 ++-- .../tsconfig-reference/scripts/schema/result/schema.json | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/documentation/copy/en/project-config/Compiler Options.md b/packages/documentation/copy/en/project-config/Compiler Options.md index 673c26ed2c94..12fe6b456300 100644 --- a/packages/documentation/copy/en/project-config/Compiler Options.md +++ b/packages/documentation/copy/en/project-config/Compiler Options.md @@ -694,7 +694,7 @@ tsc app.ts util.ts --target esnext --outfile index.js -

Does something

+

Require sufficient annotation on exports so other tools can trivially generate declaration files.

@@ -881,7 +881,7 @@ tsc app.ts util.ts --target esnext --outfile index.js -

Does something

+

Disable full type checking (only critical parse and emit errors will be reported).

diff --git a/packages/tsconfig-reference/scripts/schema/result/schema.json b/packages/tsconfig-reference/scripts/schema/result/schema.json index fe16e583a28a..7983536a80c6 100644 --- a/packages/tsconfig-reference/scripts/schema/result/schema.json +++ b/packages/tsconfig-reference/scripts/schema/result/schema.json @@ -274,10 +274,10 @@ "markdownDescription": "Include source code in the sourcemaps inside the emitted JavaScript.\n\nSee more: https://www.typescriptlang.org/tsconfig#inlineSources" }, "noCheck": { - "description": "Does something", + "description": "Disable full type checking (only critical parse and emit errors will be reported).", "type": "boolean", "default": false, - "markdownDescription": "Does something\n\nSee more: https://www.typescriptlang.org/tsconfig#noCheck" + "markdownDescription": "Disable full type checking (only critical parse and emit errors will be reported).\n\nSee more: https://www.typescriptlang.org/tsconfig#noCheck" }, "jsx": { "description": "Specify what JSX code is generated.", @@ -892,10 +892,10 @@ "markdownDescription": "Emit more compliant, but verbose and less performant JavaScript for iteration.\n\nSee more: https://www.typescriptlang.org/tsconfig#downlevelIteration" }, "isolatedDeclarations": { - "description": "Does something", + "description": "Require sufficient annotation on exports so other tools can trivially generate declaration files.", "type": "boolean", "default": false, - "markdownDescription": "Does something\n\nSee more: https://www.typescriptlang.org/tsconfig#isolatedDeclarations" + "markdownDescription": "Require sufficient annotation on exports so other tools can trivially generate declaration files.\n\nSee more: https://www.typescriptlang.org/tsconfig#isolatedDeclarations" }, "checkJs": { "description": "Enable error reporting in type-checked JavaScript files.",