ts-swc-transform 2.3.0 → 2.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist/cjs/index.d.cts +0 -1
  2. package/dist/cjs/index.d.ts +0 -1
  3. package/dist/cjs/index.js +0 -4
  4. package/dist/cjs/index.js.map +1 -1
  5. package/dist/cjs/transformDirectory.js +2 -2
  6. package/dist/cjs/transformDirectory.js.map +1 -1
  7. package/dist/cjs/transformSync.js +2 -2
  8. package/dist/cjs/transformSync.js.map +1 -1
  9. package/dist/cjs/transformTypes.js +2 -2
  10. package/dist/cjs/transformTypes.js.map +1 -1
  11. package/dist/cjs/types.d.cts +2 -6
  12. package/dist/cjs/types.d.ts +2 -6
  13. package/dist/cjs/types.js +0 -48
  14. package/dist/cjs/types.js.map +1 -1
  15. package/dist/esm/index.d.ts +0 -1
  16. package/dist/esm/index.js +0 -1
  17. package/dist/esm/index.js.map +1 -1
  18. package/dist/esm/transformDirectory.js +1 -1
  19. package/dist/esm/transformDirectory.js.map +1 -1
  20. package/dist/esm/transformSync.js +1 -1
  21. package/dist/esm/transformSync.js.map +1 -1
  22. package/dist/esm/transformTypes.js +1 -1
  23. package/dist/esm/transformTypes.js.map +1 -1
  24. package/dist/esm/types.d.ts +2 -6
  25. package/dist/esm/types.js +1 -1
  26. package/dist/esm/types.js.map +1 -1
  27. package/package.json +2 -2
  28. package/dist/cjs/TSConfigSchema.d.cts +0 -3261
  29. package/dist/cjs/TSConfigSchema.d.ts +0 -3261
  30. package/dist/cjs/TSConfigSchema.js +0 -7
  31. package/dist/cjs/TSConfigSchema.js.map +0 -1
  32. package/dist/cjs/loadConfigSync.d.cts +0 -2
  33. package/dist/cjs/loadConfigSync.d.ts +0 -2
  34. package/dist/cjs/loadConfigSync.js +0 -15
  35. package/dist/cjs/loadConfigSync.js.map +0 -1
  36. package/dist/esm/TSConfigSchema.d.ts +0 -3261
  37. package/dist/esm/TSConfigSchema.js +0 -3
  38. package/dist/esm/TSConfigSchema.js.map +0 -1
  39. package/dist/esm/loadConfigSync.d.ts +0 -2
  40. package/dist/esm/loadConfigSync.js +0 -4
  41. package/dist/esm/loadConfigSync.js.map +0 -1
@@ -1,7 +0,0 @@
1
- // https://www.typescriptlang.org/docs/handbook/tsconfig-json.html
2
- // https://borischerny.com/json-schema-to-typescript-browser
3
- "use strict";
4
- Object.defineProperty(exports, "__esModule", {
5
- value: true
6
- });
7
- /* CJS INTEROP */ if (exports.__esModule && exports.default) { try { Object.defineProperty(exports.default, '__esModule', { value: true }); for (var key in exports) { exports.default[key] = exports[key]; } } catch (_) {}; module.exports = exports.default; }
@@ -1 +0,0 @@
1
- {"version":3,"sources":["/Users/kevin/Dev/OpenSource/typescript/ts-swc-transform/src/TSConfigSchema.ts"],"sourcesContent":["// https://www.typescriptlang.org/docs/handbook/tsconfig-json.html\n// https://borischerny.com/json-schema-to-typescript-browser\n\nexport type TSConfigData = CompilerOptionsDefinition & CompileOnSaveDefinition & TypeAcquisitionDefinition & ExtendsDefinition & WatchOptionsDefinition & BuildOptionsDefinition & TsNodeDefinition & (FilesDefinition | ExcludeDefinition | IncludeDefinition | ReferencesDefinition);\n/**\n * Instructs the TypeScript compiler how to compile .ts files.\n */\nexport type CompilerOptions = {\n /**\n * Enable importing files with any extension, provided a declaration file is present.\n */\n allowArbitraryExtensions?: boolean | null;\n /**\n * Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set.\n */\n allowImportingTsExtensions?: boolean | null;\n /**\n * No longer supported. In early versions, manually set the text encoding for reading files.\n */\n charset?: string | null;\n /**\n * Enable constraints that allow a TypeScript project to be used with project references.\n */\n composite?: boolean | null;\n /**\n * Conditions to set in addition to the resolver-specific defaults when resolving imports.\n */\n customConditions?: (string | null)[] | null;\n /**\n * Generate .d.ts files from TypeScript and JavaScript files in your project.\n */\n declaration?: boolean | null;\n /**\n * Specify the output directory for generated declaration files.\n */\n declarationDir?: string | null;\n /**\n * Output compiler performance information after building.\n */\n diagnostics?: boolean | null;\n /**\n * Reduce the number of projects loaded automatically by TypeScript.\n */\n disableReferencedProjectLoad?: boolean | null;\n /**\n * Enforces using indexed accessors for keys declared using an indexed type\n */\n noPropertyAccessFromIndexSignature?: boolean | null;\n /**\n * Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files.\n */\n emitBOM?: boolean | null;\n /**\n * Only output d.ts files and not JavaScript files.\n */\n emitDeclarationOnly?: boolean | null;\n /**\n * Do not allow runtime constructs that are not part of ECMAScript.\n */\n erasableSyntaxOnly?: boolean | null;\n /**\n * Differentiate between undefined and not present when type checking\n */\n exactOptionalPropertyTypes?: boolean | null;\n /**\n * Enable incremental compilation. Requires TypeScript version 3.4 or later.\n */\n incremental?: boolean | null;\n /**\n * Specify the folder for .tsbuildinfo incremental compilation files.\n */\n tsBuildInfoFile?: string | null;\n /**\n * Include sourcemap files inside the emitted JavaScript.\n */\n inlineSourceMap?: boolean | null;\n /**\n * Include source code in the sourcemaps inside the emitted JavaScript.\n */\n inlineSources?: boolean | null;\n /**\n * Specify what JSX code is generated.\n */\n jsx?: 'preserve' | 'react' | 'react-jsx' | 'react-jsxdev' | 'react-native';\n /**\n * Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit.\n */\n reactNamespace?: string | null;\n /**\n * Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'\n */\n jsxFactory?: string | null;\n /**\n * Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'.\n */\n jsxFragmentFactory?: string | null;\n /**\n * Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx`.\n */\n jsxImportSource?: string | null;\n /**\n * Print all of the files read during the compilation.\n */\n listFiles?: boolean | null;\n /**\n * Specify the location where debugger should locate map files instead of generated locations.\n */\n mapRoot?: string | null;\n /**\n * Specify what module code is generated.\n */\n module?: (\n | ('commonjs' | 'amd' | 'system' | 'umd' | 'es6' | 'es2015' | 'es2020' | 'esnext' | 'none' | 'es2022' | 'node16' | 'node18' | 'nodenext' | 'preserve')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('commonjs' | 'amd' | 'system' | 'umd' | 'es6' | 'es2015' | 'es2020' | 'esnext' | 'none' | 'es2022' | 'node16' | 'node18' | 'nodenext' | 'preserve')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('commonjs' | 'amd' | 'system' | 'umd' | 'es6' | 'es2015' | 'es2020' | 'esnext' | 'none' | 'es2022' | 'node16' | 'node18' | 'nodenext' | 'preserve')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n /**\n * Specify how TypeScript looks up a file from a given module specifier.\n */\n moduleResolution?: (\n | ('classic' | 'node' | 'node10' | 'node16' | 'nodenext' | 'bundler')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('classic' | 'node' | 'node10' | 'node16' | 'nodenext' | 'bundler')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('classic' | 'node' | 'node10' | 'node16' | 'nodenext' | 'bundler')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n /**\n * Set the newline character for emitting files.\n */\n newLine?: (\n | ('crlf' | 'lf')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('crlf' | 'lf')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('crlf' | 'lf')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n /**\n * Disable emitting file from a compilation.\n */\n noEmit?: boolean | null;\n /**\n * Disable generating custom helper functions like `__extends` in compiled output.\n */\n noEmitHelpers?: boolean | null;\n /**\n * Disable emitting files if any type checking errors are reported.\n */\n noEmitOnError?: boolean | null;\n /**\n * Enable error reporting for expressions and declarations with an implied `any` type..\n */\n noImplicitAny?: boolean | null;\n /**\n * Enable error reporting when `this` is given the type `any`.\n */\n noImplicitThis?: boolean | null;\n /**\n * Enable error reporting when a local variable isn't read.\n */\n noUnusedLocals?: boolean | null;\n /**\n * Raise an error when a function parameter isn't read\n */\n noUnusedParameters?: boolean | null;\n /**\n * Disable including any library files, including the default lib.d.ts.\n */\n noLib?: boolean | null;\n /**\n * Disallow `import`s, `require`s or `<reference>`s from expanding the number of files TypeScript should add to a project.\n */\n noResolve?: boolean | null;\n /**\n * Disable strict checking of generic signatures in function types.\n */\n noStrictGenericChecks?: boolean | null;\n /**\n * DEPRECATED. Specify an output for the build. It is recommended to use `outFile` instead.\n */\n out?: string | null;\n /**\n * Skip type checking .d.ts files that are included with TypeScript.\n */\n skipDefaultLibCheck?: boolean | null;\n /**\n * Skip type checking all .d.ts files.\n */\n skipLibCheck?: boolean | null;\n /**\n * Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output.\n */\n outFile?: string | null;\n /**\n * Specify an output folder for all emitted files.\n */\n outDir?: string | null;\n /**\n * Disable erasing `const enum` declarations in generated code.\n */\n preserveConstEnums?: boolean | null;\n /**\n * Disable resolving symlinks to their realpath. This correlates to the same flag in node.\n */\n preserveSymlinks?: boolean | null;\n /**\n * Preserve unused imported values in the JavaScript output that would otherwise be removed\n */\n preserveValueImports?: boolean | null;\n /**\n * Disable wiping the console in watch mode\n */\n preserveWatchOutput?: boolean | null;\n /**\n * Enable color and formatting in output to make compiler errors easier to read\n */\n pretty?: boolean | null;\n /**\n * Disable emitting comments.\n */\n removeComments?: boolean | null;\n /**\n * Rewrite '.ts', '.tsx', '.mts', and '.cts' file extensions in relative import paths to their JavaScript equivalent in output files.\n */\n rewriteRelativeImportExtensions?: boolean | null;\n /**\n * Specify the root folder within your source files.\n */\n rootDir?: string | null;\n /**\n * Ensure that each file can be safely transpiled without relying on other imports.\n */\n isolatedModules?: boolean | null;\n /**\n * Create source map files for emitted JavaScript files.\n */\n sourceMap?: boolean | null;\n /**\n * Specify the root path for debuggers to find the reference source code.\n */\n sourceRoot?: string | null;\n /**\n * Disable reporting of excess property errors during the creation of object literals.\n */\n suppressExcessPropertyErrors?: boolean | null;\n /**\n * Suppress `noImplicitAny` errors when indexing objects that lack index signatures.\n */\n suppressImplicitAnyIndexErrors?: boolean | null;\n /**\n * Disable emitting declarations that have `@internal` in their JSDoc comments.\n */\n stripInternal?: boolean | null;\n /**\n * Set the JavaScript language version for emitted JavaScript and include compatible library declarations.\n */\n target?: (\n | ('es3' | 'es5' | 'es6' | 'es2015' | 'es2016' | 'es2017' | 'es2018' | 'es2019' | 'es2020' | 'es2021' | 'es2022' | 'es2023' | 'es2024' | 'esnext')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('es3' | 'es5' | 'es6' | 'es2015' | 'es2016' | 'es2017' | 'es2018' | 'es2019' | 'es2020' | 'es2021' | 'es2022' | 'es2023' | 'es2024' | 'esnext')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('es3' | 'es5' | 'es6' | 'es2015' | 'es2016' | 'es2017' | 'es2018' | 'es2019' | 'es2020' | 'es2021' | 'es2022' | 'es2023' | 'es2024' | 'esnext')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n /**\n * Default catch clause variables as `unknown` instead of `any`.\n */\n useUnknownInCatchVariables?: boolean | null;\n /**\n * Watch input files.\n */\n watch?: boolean | null;\n /**\n * Specify the polling strategy to use when the system runs out of or doesn't support native file watchers. Requires TypeScript version 3.8 or later.\n */\n fallbackPolling?: 'fixedPollingInterval' | 'priorityPollingInterval' | 'dynamicPriorityPolling' | 'fixedInterval' | 'priorityInterval' | 'dynamicPriority' | 'fixedChunkSize';\n /**\n * Specify the strategy for watching directories under systems that lack recursive file-watching functionality. Requires TypeScript version 3.8 or later.\n */\n watchDirectory?: 'useFsEvents' | 'fixedPollingInterval' | 'dynamicPriorityPolling' | 'fixedChunkSizePolling';\n /**\n * Specify the strategy for watching individual files. Requires TypeScript version 3.8 or later.\n */\n watchFile?: 'fixedPollingInterval' | 'priorityPollingInterval' | 'dynamicPriorityPolling' | 'useFsEvents' | 'useFsEventsOnParentDirectory' | 'fixedChunkSizePolling';\n /**\n * Enable experimental support for TC39 stage 2 draft decorators.\n */\n experimentalDecorators?: boolean | null;\n /**\n * Emit design-type metadata for decorated declarations in source files.\n */\n emitDecoratorMetadata?: boolean | null;\n /**\n * Disable error reporting for unused labels.\n */\n allowUnusedLabels?: boolean | null;\n /**\n * Enable error reporting for codepaths that do not explicitly return in a function.\n */\n noImplicitReturns?: boolean | null;\n /**\n * Add `undefined` to a type when accessed using an index.\n */\n noUncheckedIndexedAccess?: boolean | null;\n /**\n * Enable error reporting for fallthrough cases in switch statements.\n */\n noFallthroughCasesInSwitch?: boolean | null;\n /**\n * Ensure overriding members in derived classes are marked with an override modifier.\n */\n noImplicitOverride?: boolean | null;\n /**\n * Disable error reporting for unreachable code.\n */\n allowUnreachableCode?: boolean | null;\n /**\n * Ensure that casing is correct in imports.\n */\n forceConsistentCasingInFileNames?: boolean | null;\n /**\n * Emit a v8 CPU profile of the compiler run for debugging.\n */\n generateCpuProfile?: string | null;\n /**\n * Specify the base directory to resolve non-relative module names.\n */\n baseUrl?: string | null;\n /**\n * Specify a set of entries that re-map imports to additional lookup locations.\n */\n paths?: {\n [k: string]: (string | null)[] | null;\n } | null;\n /**\n * Specify a list of language service plugins to include.\n */\n plugins?:\n | ({\n /**\n * Plugin name.\n */\n name?: string | null;\n [k: string]: unknown;\n } | null)[]\n | null;\n /**\n * Allow multiple folders to be treated as one when resolving modules.\n */\n rootDirs?: (string | null)[] | null;\n /**\n * Specify multiple folders that act like `./node_modules/@types`.\n */\n typeRoots?: (string | null)[] | null;\n /**\n * Specify type package names to be included without being referenced in a source file.\n */\n types?: (string | null)[] | null;\n /**\n * Enable tracing of the name resolution process. Requires TypeScript version 2.0 or later.\n */\n traceResolution?: boolean | null;\n /**\n * Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files.\n */\n allowJs?: boolean | null;\n /**\n * Disable truncating types in error messages.\n */\n noErrorTruncation?: boolean | null;\n /**\n * Allow 'import x from y' when a module doesn't have a default export.\n */\n allowSyntheticDefaultImports?: boolean | null;\n /**\n * Disable adding 'use strict' directives in emitted JavaScript files.\n */\n noImplicitUseStrict?: boolean | null;\n /**\n * Print the names of emitted files after a compilation.\n */\n listEmittedFiles?: boolean | null;\n /**\n * Remove the 20mb cap on total source code size for JavaScript files in the TypeScript language server.\n */\n disableSizeLimit?: boolean | null;\n /**\n * Specify a set of bundled library declaration files that describe the target runtime environment.\n */\n lib?:\n | ((\n | (\n | 'ES5'\n | 'ES6'\n | 'ES2015'\n | 'ES2015.Collection'\n | 'ES2015.Core'\n | 'ES2015.Generator'\n | 'ES2015.Iterable'\n | 'ES2015.Promise'\n | 'ES2015.Proxy'\n | 'ES2015.Reflect'\n | 'ES2015.Symbol.WellKnown'\n | 'ES2015.Symbol'\n | 'ES2016'\n | 'ES2016.Array.Include'\n | 'ES2017'\n | 'ES2017.Intl'\n | 'ES2017.Object'\n | 'ES2017.SharedMemory'\n | 'ES2017.String'\n | 'ES2017.TypedArrays'\n | 'ES2017.ArrayBuffer'\n | 'ES2018'\n | 'ES2018.AsyncGenerator'\n | 'ES2018.AsyncIterable'\n | 'ES2018.Intl'\n | 'ES2018.Promise'\n | 'ES2018.Regexp'\n | 'ES2019'\n | 'ES2019.Array'\n | 'ES2019.Intl'\n | 'ES2019.Object'\n | 'ES2019.String'\n | 'ES2019.Symbol'\n | 'ES2020'\n | 'ES2020.BigInt'\n | 'ES2020.Promise'\n | 'ES2020.String'\n | 'ES2020.Symbol.WellKnown'\n | 'ESNext'\n | 'ESNext.Array'\n | 'ESNext.AsyncIterable'\n | 'ESNext.BigInt'\n | 'ESNext.Collection'\n | 'ESNext.Intl'\n | 'ESNext.Iterator'\n | 'ESNext.Object'\n | 'ESNext.Promise'\n | 'ESNext.Regexp'\n | 'ESNext.String'\n | 'ESNext.Symbol'\n | 'DOM'\n | 'DOM.AsyncIterable'\n | 'DOM.Iterable'\n | 'ScriptHost'\n | 'WebWorker'\n | 'WebWorker.AsyncIterable'\n | 'WebWorker.ImportScripts'\n | 'Webworker.Iterable'\n | 'ES7'\n | 'ES2021'\n | 'ES2020.SharedMemory'\n | 'ES2020.Intl'\n | 'ES2020.Date'\n | 'ES2020.Number'\n | 'ES2021.Promise'\n | 'ES2021.String'\n | 'ES2021.WeakRef'\n | 'ESNext.WeakRef'\n | 'ES2021.Intl'\n | 'ES2022'\n | 'ES2022.Array'\n | 'ES2022.Error'\n | 'ES2022.Intl'\n | 'ES2022.Object'\n | 'ES2022.String'\n | 'ES2022.SharedMemory'\n | 'ES2022.RegExp'\n | 'ES2023'\n | 'ES2023.Array'\n | 'ES2024'\n | 'ES2024.ArrayBuffer'\n | 'ES2024.Collection'\n | 'ES2024.Object'\n | 'ES2024.Promise'\n | 'ES2024.Regexp'\n | 'ES2024.SharedMemory'\n | 'ES2024.String'\n | 'Decorators'\n | 'Decorators.Legacy'\n | 'ES2017.Date'\n | 'ES2023.Collection'\n | 'ESNext.Decorators'\n | 'ESNext.Disposable'\n )\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | (\n | 'ES5'\n | 'ES6'\n | 'ES2015'\n | 'ES2015.Collection'\n | 'ES2015.Core'\n | 'ES2015.Generator'\n | 'ES2015.Iterable'\n | 'ES2015.Promise'\n | 'ES2015.Proxy'\n | 'ES2015.Reflect'\n | 'ES2015.Symbol.WellKnown'\n | 'ES2015.Symbol'\n | 'ES2016'\n | 'ES2016.Array.Include'\n | 'ES2017'\n | 'ES2017.Intl'\n | 'ES2017.Object'\n | 'ES2017.SharedMemory'\n | 'ES2017.String'\n | 'ES2017.TypedArrays'\n | 'ES2017.ArrayBuffer'\n | 'ES2018'\n | 'ES2018.AsyncGenerator'\n | 'ES2018.AsyncIterable'\n | 'ES2018.Intl'\n | 'ES2018.Promise'\n | 'ES2018.Regexp'\n | 'ES2019'\n | 'ES2019.Array'\n | 'ES2019.Intl'\n | 'ES2019.Object'\n | 'ES2019.String'\n | 'ES2019.Symbol'\n | 'ES2020'\n | 'ES2020.BigInt'\n | 'ES2020.Promise'\n | 'ES2020.String'\n | 'ES2020.Symbol.WellKnown'\n | 'ESNext'\n | 'ESNext.Array'\n | 'ESNext.AsyncIterable'\n | 'ESNext.BigInt'\n | 'ESNext.Collection'\n | 'ESNext.Intl'\n | 'ESNext.Iterator'\n | 'ESNext.Object'\n | 'ESNext.Promise'\n | 'ESNext.Regexp'\n | 'ESNext.String'\n | 'ESNext.Symbol'\n | 'DOM'\n | 'DOM.AsyncIterable'\n | 'DOM.Iterable'\n | 'ScriptHost'\n | 'WebWorker'\n | 'WebWorker.AsyncIterable'\n | 'WebWorker.ImportScripts'\n | 'Webworker.Iterable'\n | 'ES7'\n | 'ES2021'\n | 'ES2020.SharedMemory'\n | 'ES2020.Intl'\n | 'ES2020.Date'\n | 'ES2020.Number'\n | 'ES2021.Promise'\n | 'ES2021.String'\n | 'ES2021.WeakRef'\n | 'ESNext.WeakRef'\n | 'ES2021.Intl'\n | 'ES2022'\n | 'ES2022.Array'\n | 'ES2022.Error'\n | 'ES2022.Intl'\n | 'ES2022.Object'\n | 'ES2022.String'\n | 'ES2022.SharedMemory'\n | 'ES2022.RegExp'\n | 'ES2023'\n | 'ES2023.Array'\n | 'ES2024'\n | 'ES2024.ArrayBuffer'\n | 'ES2024.Collection'\n | 'ES2024.Object'\n | 'ES2024.Promise'\n | 'ES2024.Regexp'\n | 'ES2024.SharedMemory'\n | 'ES2024.String'\n | 'Decorators'\n | 'Decorators.Legacy'\n | 'ES2017.Date'\n | 'ES2023.Collection'\n | 'ESNext.Decorators'\n | 'ESNext.Disposable'\n )\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | (\n | 'ES5'\n | 'ES6'\n | 'ES2015'\n | 'ES2015.Collection'\n | 'ES2015.Core'\n | 'ES2015.Generator'\n | 'ES2015.Iterable'\n | 'ES2015.Promise'\n | 'ES2015.Proxy'\n | 'ES2015.Reflect'\n | 'ES2015.Symbol.WellKnown'\n | 'ES2015.Symbol'\n | 'ES2016'\n | 'ES2016.Array.Include'\n | 'ES2017'\n | 'ES2017.Intl'\n | 'ES2017.Object'\n | 'ES2017.SharedMemory'\n | 'ES2017.String'\n | 'ES2017.TypedArrays'\n | 'ES2017.ArrayBuffer'\n | 'ES2018'\n | 'ES2018.AsyncGenerator'\n | 'ES2018.AsyncIterable'\n | 'ES2018.Intl'\n | 'ES2018.Promise'\n | 'ES2018.Regexp'\n | 'ES2019'\n | 'ES2019.Array'\n | 'ES2019.Intl'\n | 'ES2019.Object'\n | 'ES2019.String'\n | 'ES2019.Symbol'\n | 'ES2020'\n | 'ES2020.BigInt'\n | 'ES2020.Promise'\n | 'ES2020.String'\n | 'ES2020.Symbol.WellKnown'\n | 'ESNext'\n | 'ESNext.Array'\n | 'ESNext.AsyncIterable'\n | 'ESNext.BigInt'\n | 'ESNext.Collection'\n | 'ESNext.Intl'\n | 'ESNext.Iterator'\n | 'ESNext.Object'\n | 'ESNext.Promise'\n | 'ESNext.Regexp'\n | 'ESNext.String'\n | 'ESNext.Symbol'\n | 'DOM'\n | 'DOM.AsyncIterable'\n | 'DOM.Iterable'\n | 'ScriptHost'\n | 'WebWorker'\n | 'WebWorker.AsyncIterable'\n | 'WebWorker.ImportScripts'\n | 'Webworker.Iterable'\n | 'ES7'\n | 'ES2021'\n | 'ES2020.SharedMemory'\n | 'ES2020.Intl'\n | 'ES2020.Date'\n | 'ES2020.Number'\n | 'ES2021.Promise'\n | 'ES2021.String'\n | 'ES2021.WeakRef'\n | 'ESNext.WeakRef'\n | 'ES2021.Intl'\n | 'ES2022'\n | 'ES2022.Array'\n | 'ES2022.Error'\n | 'ES2022.Intl'\n | 'ES2022.Object'\n | 'ES2022.String'\n | 'ES2022.SharedMemory'\n | 'ES2022.RegExp'\n | 'ES2023'\n | 'ES2023.Array'\n | 'ES2024'\n | 'ES2024.ArrayBuffer'\n | 'ES2024.Collection'\n | 'ES2024.Object'\n | 'ES2024.Promise'\n | 'ES2024.Regexp'\n | 'ES2024.SharedMemory'\n | 'ES2024.String'\n | 'Decorators'\n | 'Decorators.Legacy'\n | 'ES2017.Date'\n | 'ES2023.Collection'\n | 'ESNext.Decorators'\n | 'ESNext.Disposable'\n )\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n ))[]\n | null;\n /**\n * Enable lib replacement.\n */\n libReplacement?: boolean | null;\n /**\n * Specify how TypeScript determine a file as module.\n */\n moduleDetection?: 'auto' | 'legacy' | 'force';\n /**\n * When type checking, take into account `null` and `undefined`.\n */\n strictNullChecks?: boolean | null;\n /**\n * Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`.\n */\n maxNodeModuleJsDepth?: number | null;\n /**\n * Allow importing helper functions from tslib once per project, instead of including them per-file.\n */\n importHelpers?: boolean | null;\n /**\n * Specify emit/checking behavior for imports that are only used for types.\n */\n importsNotUsedAsValues?: 'remove' | 'preserve' | 'error';\n /**\n * Ensure 'use strict' is always emitted.\n */\n alwaysStrict?: boolean | null;\n /**\n * Enable all strict type checking options.\n */\n strict?: boolean | null;\n /**\n * Check that the arguments for `bind`, `call`, and `apply` methods match the original function.\n */\n strictBindCallApply?: boolean | null;\n /**\n * Emit more compliant, but verbose and less performant JavaScript for iteration.\n */\n downlevelIteration?: boolean | null;\n /**\n * Enable error reporting in type-checked JavaScript files.\n */\n checkJs?: boolean | null;\n /**\n * When assigning functions, check to ensure parameters and the return values are subtype-compatible.\n */\n strictFunctionTypes?: boolean | null;\n /**\n * Check for class properties that are declared but not set in the constructor.\n */\n strictPropertyInitialization?: boolean | null;\n /**\n * Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility.\n */\n esModuleInterop?: boolean | null;\n /**\n * Allow accessing UMD globals from modules.\n */\n allowUmdGlobalAccess?: boolean | null;\n /**\n * Make keyof only return strings instead of string, numbers or symbols. Legacy option.\n */\n keyofStringsOnly?: boolean | null;\n /**\n * Emit ECMAScript-standard-compliant class fields.\n */\n useDefineForClassFields?: boolean | null;\n /**\n * Create sourcemaps for d.ts files.\n */\n declarationMap?: boolean | null;\n /**\n * Enable importing .json files\n */\n resolveJsonModule?: boolean | null;\n /**\n * Use the package.json 'exports' field when resolving package imports.\n */\n resolvePackageJsonExports?: boolean | null;\n /**\n * Use the package.json 'imports' field when resolving imports.\n */\n resolvePackageJsonImports?: boolean | null;\n /**\n * Have recompiles in '--incremental' and '--watch' assume that changes within a file will only affect files directly depending on it. Requires TypeScript version 3.8 or later.\n */\n assumeChangesOnlyAffectDirectDependencies?: boolean | null;\n /**\n * Output more detailed compiler performance information after building.\n */\n extendedDiagnostics?: boolean | null;\n /**\n * Print names of files that are part of the compilation and then stop processing.\n */\n listFilesOnly?: boolean | null;\n /**\n * Disable preferring source files instead of declaration files when referencing composite projects\n */\n disableSourceOfProjectReferenceRedirect?: boolean | null;\n /**\n * Opt a project out of multi-project reference checking when editing.\n */\n disableSolutionSearching?: boolean | null;\n /**\n * Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting.\n */\n verbatimModuleSyntax?: boolean | null;\n /**\n * Disable full type checking (only critical parse and emit errors will be reported)\n */\n noCheck?: boolean | null;\n /**\n * Require sufficient annotation on exports so other tools can trivially generate declaration files.\n */\n isolatedDeclarations?: boolean | null;\n /**\n * Check side effect imports.\n */\n noUncheckedSideEffectImports?: boolean | null;\n /**\n * Built-in iterators are instantiated with a 'TReturn' type of 'undefined' instead of 'any'.\n */\n strictBuiltinIteratorReturn?: boolean | null;\n [k: string]: unknown;\n} & ({\n /**\n * Enable importing files with any extension, provided a declaration file is present.\n */\n allowArbitraryExtensions?: boolean | null;\n /**\n * Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set.\n */\n allowImportingTsExtensions?: boolean | null;\n /**\n * No longer supported. In early versions, manually set the text encoding for reading files.\n */\n charset?: string | null;\n /**\n * Enable constraints that allow a TypeScript project to be used with project references.\n */\n composite?: boolean | null;\n /**\n * Conditions to set in addition to the resolver-specific defaults when resolving imports.\n */\n customConditions?: (string | null)[] | null;\n /**\n * Generate .d.ts files from TypeScript and JavaScript files in your project.\n */\n declaration?: boolean | null;\n /**\n * Specify the output directory for generated declaration files.\n */\n declarationDir?: string | null;\n /**\n * Output compiler performance information after building.\n */\n diagnostics?: boolean | null;\n /**\n * Reduce the number of projects loaded automatically by TypeScript.\n */\n disableReferencedProjectLoad?: boolean | null;\n /**\n * Enforces using indexed accessors for keys declared using an indexed type\n */\n noPropertyAccessFromIndexSignature?: boolean | null;\n /**\n * Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files.\n */\n emitBOM?: boolean | null;\n /**\n * Only output d.ts files and not JavaScript files.\n */\n emitDeclarationOnly?: boolean | null;\n /**\n * Do not allow runtime constructs that are not part of ECMAScript.\n */\n erasableSyntaxOnly?: boolean | null;\n /**\n * Differentiate between undefined and not present when type checking\n */\n exactOptionalPropertyTypes?: boolean | null;\n /**\n * Enable incremental compilation. Requires TypeScript version 3.4 or later.\n */\n incremental?: boolean | null;\n /**\n * Specify the folder for .tsbuildinfo incremental compilation files.\n */\n tsBuildInfoFile?: string | null;\n /**\n * Include sourcemap files inside the emitted JavaScript.\n */\n inlineSourceMap?: boolean | null;\n /**\n * Include source code in the sourcemaps inside the emitted JavaScript.\n */\n inlineSources?: boolean | null;\n /**\n * Specify what JSX code is generated.\n */\n jsx?: 'preserve' | 'react' | 'react-jsx' | 'react-jsxdev' | 'react-native';\n /**\n * Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit.\n */\n reactNamespace?: string | null;\n /**\n * Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'\n */\n jsxFactory?: string | null;\n /**\n * Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'.\n */\n jsxFragmentFactory?: string | null;\n /**\n * Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx`.\n */\n jsxImportSource?: string | null;\n /**\n * Print all of the files read during the compilation.\n */\n listFiles?: boolean | null;\n /**\n * Specify the location where debugger should locate map files instead of generated locations.\n */\n mapRoot?: string | null;\n module?: (\n | ('commonjs' | 'amd' | 'system' | 'umd' | 'es6' | 'es2015' | 'es2020' | 'esnext' | 'none' | 'es2022' | 'node16' | 'node18' | 'nodenext' | 'preserve')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('commonjs' | 'amd' | 'system' | 'umd' | 'es6' | 'es2015' | 'es2020' | 'esnext' | 'none' | 'es2022' | 'node16' | 'node18' | 'nodenext' | 'preserve')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('commonjs' | 'amd' | 'system' | 'umd' | 'es6' | 'es2015' | 'es2020' | 'esnext' | 'none' | 'es2022' | 'node16' | 'node18' | 'nodenext' | 'preserve')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n moduleResolution?: (\n | ('classic' | 'node' | 'node10' | 'node16' | 'nodenext' | 'bundler')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('classic' | 'node' | 'node10' | 'node16' | 'nodenext' | 'bundler')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('classic' | 'node' | 'node10' | 'node16' | 'nodenext' | 'bundler')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n newLine?: (\n | ('crlf' | 'lf')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('crlf' | 'lf')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('crlf' | 'lf')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n /**\n * Disable emitting file from a compilation.\n */\n noEmit?: boolean | null;\n /**\n * Disable generating custom helper functions like `__extends` in compiled output.\n */\n noEmitHelpers?: boolean | null;\n /**\n * Disable emitting files if any type checking errors are reported.\n */\n noEmitOnError?: boolean | null;\n /**\n * Enable error reporting for expressions and declarations with an implied `any` type..\n */\n noImplicitAny?: boolean | null;\n /**\n * Enable error reporting when `this` is given the type `any`.\n */\n noImplicitThis?: boolean | null;\n /**\n * Enable error reporting when a local variable isn't read.\n */\n noUnusedLocals?: boolean | null;\n /**\n * Raise an error when a function parameter isn't read\n */\n noUnusedParameters?: boolean | null;\n /**\n * Disable including any library files, including the default lib.d.ts.\n */\n noLib?: boolean | null;\n /**\n * Disallow `import`s, `require`s or `<reference>`s from expanding the number of files TypeScript should add to a project.\n */\n noResolve?: boolean | null;\n /**\n * Disable strict checking of generic signatures in function types.\n */\n noStrictGenericChecks?: boolean | null;\n /**\n * DEPRECATED. Specify an output for the build. It is recommended to use `outFile` instead.\n */\n out?: string | null;\n /**\n * Skip type checking .d.ts files that are included with TypeScript.\n */\n skipDefaultLibCheck?: boolean | null;\n /**\n * Skip type checking all .d.ts files.\n */\n skipLibCheck?: boolean | null;\n /**\n * Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output.\n */\n outFile?: string | null;\n /**\n * Specify an output folder for all emitted files.\n */\n outDir?: string | null;\n /**\n * Disable erasing `const enum` declarations in generated code.\n */\n preserveConstEnums?: boolean | null;\n /**\n * Disable resolving symlinks to their realpath. This correlates to the same flag in node.\n */\n preserveSymlinks?: boolean | null;\n /**\n * Preserve unused imported values in the JavaScript output that would otherwise be removed\n */\n preserveValueImports?: boolean | null;\n /**\n * Disable wiping the console in watch mode\n */\n preserveWatchOutput?: boolean | null;\n /**\n * Enable color and formatting in output to make compiler errors easier to read\n */\n pretty?: boolean | null;\n /**\n * Disable emitting comments.\n */\n removeComments?: boolean | null;\n /**\n * Rewrite '.ts', '.tsx', '.mts', and '.cts' file extensions in relative import paths to their JavaScript equivalent in output files.\n */\n rewriteRelativeImportExtensions?: boolean | null;\n /**\n * Specify the root folder within your source files.\n */\n rootDir?: string | null;\n /**\n * Ensure that each file can be safely transpiled without relying on other imports.\n */\n isolatedModules?: boolean | null;\n /**\n * Create source map files for emitted JavaScript files.\n */\n sourceMap?: boolean | null;\n /**\n * Specify the root path for debuggers to find the reference source code.\n */\n sourceRoot?: string | null;\n /**\n * Disable reporting of excess property errors during the creation of object literals.\n */\n suppressExcessPropertyErrors?: boolean | null;\n /**\n * Suppress `noImplicitAny` errors when indexing objects that lack index signatures.\n */\n suppressImplicitAnyIndexErrors?: boolean | null;\n /**\n * Disable emitting declarations that have `@internal` in their JSDoc comments.\n */\n stripInternal?: boolean | null;\n target?: (\n | ('es3' | 'es5' | 'es6' | 'es2015' | 'es2016' | 'es2017' | 'es2018' | 'es2019' | 'es2020' | 'es2021' | 'es2022' | 'es2023' | 'es2024' | 'esnext')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('es3' | 'es5' | 'es6' | 'es2015' | 'es2016' | 'es2017' | 'es2018' | 'es2019' | 'es2020' | 'es2021' | 'es2022' | 'es2023' | 'es2024' | 'esnext')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('es3' | 'es5' | 'es6' | 'es2015' | 'es2016' | 'es2017' | 'es2018' | 'es2019' | 'es2020' | 'es2021' | 'es2022' | 'es2023' | 'es2024' | 'esnext')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n /**\n * Default catch clause variables as `unknown` instead of `any`.\n */\n useUnknownInCatchVariables?: boolean | null;\n /**\n * Watch input files.\n */\n watch?: boolean | null;\n /**\n * Specify the polling strategy to use when the system runs out of or doesn't support native file watchers. Requires TypeScript version 3.8 or later.\n */\n fallbackPolling?: 'fixedPollingInterval' | 'priorityPollingInterval' | 'dynamicPriorityPolling' | 'fixedInterval' | 'priorityInterval' | 'dynamicPriority' | 'fixedChunkSize';\n /**\n * Specify the strategy for watching directories under systems that lack recursive file-watching functionality. Requires TypeScript version 3.8 or later.\n */\n watchDirectory?: 'useFsEvents' | 'fixedPollingInterval' | 'dynamicPriorityPolling' | 'fixedChunkSizePolling';\n /**\n * Specify the strategy for watching individual files. Requires TypeScript version 3.8 or later.\n */\n watchFile?: 'fixedPollingInterval' | 'priorityPollingInterval' | 'dynamicPriorityPolling' | 'useFsEvents' | 'useFsEventsOnParentDirectory' | 'fixedChunkSizePolling';\n /**\n * Enable experimental support for TC39 stage 2 draft decorators.\n */\n experimentalDecorators?: boolean | null;\n /**\n * Emit design-type metadata for decorated declarations in source files.\n */\n emitDecoratorMetadata?: boolean | null;\n /**\n * Disable error reporting for unused labels.\n */\n allowUnusedLabels?: boolean | null;\n /**\n * Enable error reporting for codepaths that do not explicitly return in a function.\n */\n noImplicitReturns?: boolean | null;\n /**\n * Add `undefined` to a type when accessed using an index.\n */\n noUncheckedIndexedAccess?: boolean | null;\n /**\n * Enable error reporting for fallthrough cases in switch statements.\n */\n noFallthroughCasesInSwitch?: boolean | null;\n /**\n * Ensure overriding members in derived classes are marked with an override modifier.\n */\n noImplicitOverride?: boolean | null;\n /**\n * Disable error reporting for unreachable code.\n */\n allowUnreachableCode?: boolean | null;\n /**\n * Ensure that casing is correct in imports.\n */\n forceConsistentCasingInFileNames?: boolean | null;\n /**\n * Emit a v8 CPU profile of the compiler run for debugging.\n */\n generateCpuProfile?: string | null;\n /**\n * Specify the base directory to resolve non-relative module names.\n */\n baseUrl?: string | null;\n /**\n * Specify a set of entries that re-map imports to additional lookup locations.\n */\n paths?: {\n [k: string]: (string | null)[] | null;\n } | null;\n /**\n * Specify a list of language service plugins to include.\n */\n plugins?:\n | ({\n /**\n * Plugin name.\n */\n name?: string | null;\n [k: string]: unknown;\n } | null)[]\n | null;\n /**\n * Allow multiple folders to be treated as one when resolving modules.\n */\n rootDirs?: (string | null)[] | null;\n /**\n * Specify multiple folders that act like `./node_modules/@types`.\n */\n typeRoots?: (string | null)[] | null;\n /**\n * Specify type package names to be included without being referenced in a source file.\n */\n types?: (string | null)[] | null;\n /**\n * Enable tracing of the name resolution process. Requires TypeScript version 2.0 or later.\n */\n traceResolution?: boolean | null;\n /**\n * Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files.\n */\n allowJs?: boolean | null;\n /**\n * Disable truncating types in error messages.\n */\n noErrorTruncation?: boolean | null;\n /**\n * Allow 'import x from y' when a module doesn't have a default export.\n */\n allowSyntheticDefaultImports?: boolean | null;\n /**\n * Disable adding 'use strict' directives in emitted JavaScript files.\n */\n noImplicitUseStrict?: boolean | null;\n /**\n * Print the names of emitted files after a compilation.\n */\n listEmittedFiles?: boolean | null;\n /**\n * Remove the 20mb cap on total source code size for JavaScript files in the TypeScript language server.\n */\n disableSizeLimit?: boolean | null;\n /**\n * Specify a set of bundled library declaration files that describe the target runtime environment.\n */\n lib?:\n | ((\n | (\n | 'ES5'\n | 'ES6'\n | 'ES2015'\n | 'ES2015.Collection'\n | 'ES2015.Core'\n | 'ES2015.Generator'\n | 'ES2015.Iterable'\n | 'ES2015.Promise'\n | 'ES2015.Proxy'\n | 'ES2015.Reflect'\n | 'ES2015.Symbol.WellKnown'\n | 'ES2015.Symbol'\n | 'ES2016'\n | 'ES2016.Array.Include'\n | 'ES2017'\n | 'ES2017.Intl'\n | 'ES2017.Object'\n | 'ES2017.SharedMemory'\n | 'ES2017.String'\n | 'ES2017.TypedArrays'\n | 'ES2017.ArrayBuffer'\n | 'ES2018'\n | 'ES2018.AsyncGenerator'\n | 'ES2018.AsyncIterable'\n | 'ES2018.Intl'\n | 'ES2018.Promise'\n | 'ES2018.Regexp'\n | 'ES2019'\n | 'ES2019.Array'\n | 'ES2019.Intl'\n | 'ES2019.Object'\n | 'ES2019.String'\n | 'ES2019.Symbol'\n | 'ES2020'\n | 'ES2020.BigInt'\n | 'ES2020.Promise'\n | 'ES2020.String'\n | 'ES2020.Symbol.WellKnown'\n | 'ESNext'\n | 'ESNext.Array'\n | 'ESNext.AsyncIterable'\n | 'ESNext.BigInt'\n | 'ESNext.Collection'\n | 'ESNext.Intl'\n | 'ESNext.Iterator'\n | 'ESNext.Object'\n | 'ESNext.Promise'\n | 'ESNext.Regexp'\n | 'ESNext.String'\n | 'ESNext.Symbol'\n | 'DOM'\n | 'DOM.AsyncIterable'\n | 'DOM.Iterable'\n | 'ScriptHost'\n | 'WebWorker'\n | 'WebWorker.AsyncIterable'\n | 'WebWorker.ImportScripts'\n | 'Webworker.Iterable'\n | 'ES7'\n | 'ES2021'\n | 'ES2020.SharedMemory'\n | 'ES2020.Intl'\n | 'ES2020.Date'\n | 'ES2020.Number'\n | 'ES2021.Promise'\n | 'ES2021.String'\n | 'ES2021.WeakRef'\n | 'ESNext.WeakRef'\n | 'ES2021.Intl'\n | 'ES2022'\n | 'ES2022.Array'\n | 'ES2022.Error'\n | 'ES2022.Intl'\n | 'ES2022.Object'\n | 'ES2022.String'\n | 'ES2022.SharedMemory'\n | 'ES2022.RegExp'\n | 'ES2023'\n | 'ES2023.Array'\n | 'ES2024'\n | 'ES2024.ArrayBuffer'\n | 'ES2024.Collection'\n | 'ES2024.Object'\n | 'ES2024.Promise'\n | 'ES2024.Regexp'\n | 'ES2024.SharedMemory'\n | 'ES2024.String'\n | 'Decorators'\n | 'Decorators.Legacy'\n | 'ES2017.Date'\n | 'ES2023.Collection'\n | 'ESNext.Decorators'\n | 'ESNext.Disposable'\n )\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | (\n | 'ES5'\n | 'ES6'\n | 'ES2015'\n | 'ES2015.Collection'\n | 'ES2015.Core'\n | 'ES2015.Generator'\n | 'ES2015.Iterable'\n | 'ES2015.Promise'\n | 'ES2015.Proxy'\n | 'ES2015.Reflect'\n | 'ES2015.Symbol.WellKnown'\n | 'ES2015.Symbol'\n | 'ES2016'\n | 'ES2016.Array.Include'\n | 'ES2017'\n | 'ES2017.Intl'\n | 'ES2017.Object'\n | 'ES2017.SharedMemory'\n | 'ES2017.String'\n | 'ES2017.TypedArrays'\n | 'ES2017.ArrayBuffer'\n | 'ES2018'\n | 'ES2018.AsyncGenerator'\n | 'ES2018.AsyncIterable'\n | 'ES2018.Intl'\n | 'ES2018.Promise'\n | 'ES2018.Regexp'\n | 'ES2019'\n | 'ES2019.Array'\n | 'ES2019.Intl'\n | 'ES2019.Object'\n | 'ES2019.String'\n | 'ES2019.Symbol'\n | 'ES2020'\n | 'ES2020.BigInt'\n | 'ES2020.Promise'\n | 'ES2020.String'\n | 'ES2020.Symbol.WellKnown'\n | 'ESNext'\n | 'ESNext.Array'\n | 'ESNext.AsyncIterable'\n | 'ESNext.BigInt'\n | 'ESNext.Collection'\n | 'ESNext.Intl'\n | 'ESNext.Iterator'\n | 'ESNext.Object'\n | 'ESNext.Promise'\n | 'ESNext.Regexp'\n | 'ESNext.String'\n | 'ESNext.Symbol'\n | 'DOM'\n | 'DOM.AsyncIterable'\n | 'DOM.Iterable'\n | 'ScriptHost'\n | 'WebWorker'\n | 'WebWorker.AsyncIterable'\n | 'WebWorker.ImportScripts'\n | 'Webworker.Iterable'\n | 'ES7'\n | 'ES2021'\n | 'ES2020.SharedMemory'\n | 'ES2020.Intl'\n | 'ES2020.Date'\n | 'ES2020.Number'\n | 'ES2021.Promise'\n | 'ES2021.String'\n | 'ES2021.WeakRef'\n | 'ESNext.WeakRef'\n | 'ES2021.Intl'\n | 'ES2022'\n | 'ES2022.Array'\n | 'ES2022.Error'\n | 'ES2022.Intl'\n | 'ES2022.Object'\n | 'ES2022.String'\n | 'ES2022.SharedMemory'\n | 'ES2022.RegExp'\n | 'ES2023'\n | 'ES2023.Array'\n | 'ES2024'\n | 'ES2024.ArrayBuffer'\n | 'ES2024.Collection'\n | 'ES2024.Object'\n | 'ES2024.Promise'\n | 'ES2024.Regexp'\n | 'ES2024.SharedMemory'\n | 'ES2024.String'\n | 'Decorators'\n | 'Decorators.Legacy'\n | 'ES2017.Date'\n | 'ES2023.Collection'\n | 'ESNext.Decorators'\n | 'ESNext.Disposable'\n )\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | (\n | 'ES5'\n | 'ES6'\n | 'ES2015'\n | 'ES2015.Collection'\n | 'ES2015.Core'\n | 'ES2015.Generator'\n | 'ES2015.Iterable'\n | 'ES2015.Promise'\n | 'ES2015.Proxy'\n | 'ES2015.Reflect'\n | 'ES2015.Symbol.WellKnown'\n | 'ES2015.Symbol'\n | 'ES2016'\n | 'ES2016.Array.Include'\n | 'ES2017'\n | 'ES2017.Intl'\n | 'ES2017.Object'\n | 'ES2017.SharedMemory'\n | 'ES2017.String'\n | 'ES2017.TypedArrays'\n | 'ES2017.ArrayBuffer'\n | 'ES2018'\n | 'ES2018.AsyncGenerator'\n | 'ES2018.AsyncIterable'\n | 'ES2018.Intl'\n | 'ES2018.Promise'\n | 'ES2018.Regexp'\n | 'ES2019'\n | 'ES2019.Array'\n | 'ES2019.Intl'\n | 'ES2019.Object'\n | 'ES2019.String'\n | 'ES2019.Symbol'\n | 'ES2020'\n | 'ES2020.BigInt'\n | 'ES2020.Promise'\n | 'ES2020.String'\n | 'ES2020.Symbol.WellKnown'\n | 'ESNext'\n | 'ESNext.Array'\n | 'ESNext.AsyncIterable'\n | 'ESNext.BigInt'\n | 'ESNext.Collection'\n | 'ESNext.Intl'\n | 'ESNext.Iterator'\n | 'ESNext.Object'\n | 'ESNext.Promise'\n | 'ESNext.Regexp'\n | 'ESNext.String'\n | 'ESNext.Symbol'\n | 'DOM'\n | 'DOM.AsyncIterable'\n | 'DOM.Iterable'\n | 'ScriptHost'\n | 'WebWorker'\n | 'WebWorker.AsyncIterable'\n | 'WebWorker.ImportScripts'\n | 'Webworker.Iterable'\n | 'ES7'\n | 'ES2021'\n | 'ES2020.SharedMemory'\n | 'ES2020.Intl'\n | 'ES2020.Date'\n | 'ES2020.Number'\n | 'ES2021.Promise'\n | 'ES2021.String'\n | 'ES2021.WeakRef'\n | 'ESNext.WeakRef'\n | 'ES2021.Intl'\n | 'ES2022'\n | 'ES2022.Array'\n | 'ES2022.Error'\n | 'ES2022.Intl'\n | 'ES2022.Object'\n | 'ES2022.String'\n | 'ES2022.SharedMemory'\n | 'ES2022.RegExp'\n | 'ES2023'\n | 'ES2023.Array'\n | 'ES2024'\n | 'ES2024.ArrayBuffer'\n | 'ES2024.Collection'\n | 'ES2024.Object'\n | 'ES2024.Promise'\n | 'ES2024.Regexp'\n | 'ES2024.SharedMemory'\n | 'ES2024.String'\n | 'Decorators'\n | 'Decorators.Legacy'\n | 'ES2017.Date'\n | 'ES2023.Collection'\n | 'ESNext.Decorators'\n | 'ESNext.Disposable'\n )\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n ))[]\n | null;\n /**\n * Enable lib replacement.\n */\n libReplacement?: boolean | null;\n /**\n * Specify how TypeScript determine a file as module.\n */\n moduleDetection?: 'auto' | 'legacy' | 'force';\n /**\n * When type checking, take into account `null` and `undefined`.\n */\n strictNullChecks?: boolean | null;\n /**\n * Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`.\n */\n maxNodeModuleJsDepth?: number | null;\n /**\n * Allow importing helper functions from tslib once per project, instead of including them per-file.\n */\n importHelpers?: boolean | null;\n /**\n * Specify emit/checking behavior for imports that are only used for types.\n */\n importsNotUsedAsValues?: 'remove' | 'preserve' | 'error';\n /**\n * Ensure 'use strict' is always emitted.\n */\n alwaysStrict?: boolean | null;\n /**\n * Enable all strict type checking options.\n */\n strict?: boolean | null;\n /**\n * Check that the arguments for `bind`, `call`, and `apply` methods match the original function.\n */\n strictBindCallApply?: boolean | null;\n /**\n * Emit more compliant, but verbose and less performant JavaScript for iteration.\n */\n downlevelIteration?: boolean | null;\n /**\n * Enable error reporting in type-checked JavaScript files.\n */\n checkJs?: boolean | null;\n /**\n * When assigning functions, check to ensure parameters and the return values are subtype-compatible.\n */\n strictFunctionTypes?: boolean | null;\n /**\n * Check for class properties that are declared but not set in the constructor.\n */\n strictPropertyInitialization?: boolean | null;\n /**\n * Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility.\n */\n esModuleInterop?: boolean | null;\n /**\n * Allow accessing UMD globals from modules.\n */\n allowUmdGlobalAccess?: boolean | null;\n /**\n * Make keyof only return strings instead of string, numbers or symbols. Legacy option.\n */\n keyofStringsOnly?: boolean | null;\n /**\n * Emit ECMAScript-standard-compliant class fields.\n */\n useDefineForClassFields?: boolean | null;\n /**\n * Create sourcemaps for d.ts files.\n */\n declarationMap?: boolean | null;\n /**\n * Enable importing .json files\n */\n resolveJsonModule?: boolean | null;\n /**\n * Use the package.json 'exports' field when resolving package imports.\n */\n resolvePackageJsonExports?: boolean | null;\n /**\n * Use the package.json 'imports' field when resolving imports.\n */\n resolvePackageJsonImports?: boolean | null;\n /**\n * Have recompiles in '--incremental' and '--watch' assume that changes within a file will only affect files directly depending on it. Requires TypeScript version 3.8 or later.\n */\n assumeChangesOnlyAffectDirectDependencies?: boolean | null;\n /**\n * Output more detailed compiler performance information after building.\n */\n extendedDiagnostics?: boolean | null;\n /**\n * Print names of files that are part of the compilation and then stop processing.\n */\n listFilesOnly?: boolean | null;\n /**\n * Disable preferring source files instead of declaration files when referencing composite projects\n */\n disableSourceOfProjectReferenceRedirect?: boolean | null;\n /**\n * Opt a project out of multi-project reference checking when editing.\n */\n disableSolutionSearching?: boolean | null;\n /**\n * Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting.\n */\n verbatimModuleSyntax?: boolean | null;\n /**\n * Disable full type checking (only critical parse and emit errors will be reported)\n */\n noCheck?: boolean | null;\n /**\n * Require sufficient annotation on exports so other tools can trivially generate declaration files.\n */\n isolatedDeclarations?: boolean | null;\n /**\n * Check side effect imports.\n */\n noUncheckedSideEffectImports?: boolean | null;\n /**\n * Built-in iterators are instantiated with a 'TReturn' type of 'undefined' instead of 'any'.\n */\n strictBuiltinIteratorReturn?: boolean | null;\n [k: string]: unknown;\n} | null);\n/**\n * Override certain paths to be compiled and executed as CommonJS or ECMAScript modules.\n * When overridden, the tsconfig \"module\" and package.json \"type\" fields are overridden, and\n * the file extension is ignored.\n * This is useful if you cannot use .mts, .cts, .mjs, or .cjs file extensions;\n * it achieves the same effect.\n *\n * Each key is a glob pattern following the same rules as tsconfig's \"include\" array.\n * When multiple patterns match the same file, the last pattern takes precedence.\n *\n * `cjs` overrides matches files to compile and execute as CommonJS.\n * `esm` overrides matches files to compile and execute as native ECMAScript modules.\n * `package` overrides either of the above to default behavior, which obeys package.json \"type\" and\n * tsconfig.json \"module\" options.\n */\nexport type TsNodeModuleTypes = {\n [k: string]: unknown;\n} | null;\n\nexport interface CompilerOptionsDefinition {\n compilerOptions?: CompilerOptions;\n [k: string]: unknown;\n}\nexport interface CompileOnSaveDefinition {\n /**\n * Enable Compile-on-Save for this project.\n */\n compileOnSave?: boolean | null;\n [k: string]: unknown;\n}\nexport interface TypeAcquisitionDefinition {\n /**\n * Auto type (.d.ts) acquisition options for this project. Requires TypeScript version 2.1 or later.\n */\n typeAcquisition?: {\n /**\n * Enable auto type acquisition\n */\n enable?: boolean | null;\n /**\n * Specifies a list of type declarations to be included in auto type acquisition. Ex. [\"jquery\", \"lodash\"]\n */\n include?: (string | null)[] | null;\n /**\n * Specifies a list of type declarations to be excluded from auto type acquisition. Ex. [\"jquery\", \"lodash\"]\n */\n exclude?: (string | null)[] | null;\n [k: string]: unknown;\n } | null;\n [k: string]: unknown;\n}\nexport interface ExtendsDefinition {\n /**\n * Path to base configuration file to inherit from (requires TypeScript version 2.1 or later), or array of base files, with the rightmost files having the greater priority (requires TypeScript version 5.0 or later).\n */\n extends?: string | string[];\n [k: string]: unknown;\n}\nexport interface WatchOptionsDefinition {\n /**\n * Settings for the watch mode in TypeScript.\n */\n watchOptions?: {\n /**\n * ~\n */\n force?: string | null;\n /**\n * Specify how the TypeScript watch mode works.\n */\n watchFile?: string | null;\n /**\n * Specify how directories are watched on systems that lack recursive file-watching functionality.\n */\n watchDirectory?: string | null;\n /**\n * Specify what approach the watcher should use if the system runs out of native file watchers.\n */\n fallbackPolling?: string | null;\n /**\n * Synchronously call callbacks and update the state of directory watchers on platforms that don`t support recursive watching natively.\n */\n synchronousWatchDirectory?: boolean | null;\n /**\n * Remove a list of files from the watch mode's processing.\n */\n excludeFiles?: (string | null)[] | null;\n /**\n * Remove a list of directories from the watch process.\n */\n excludeDirectories?: (string | null)[] | null;\n [k: string]: unknown;\n } | null;\n [k: string]: unknown;\n}\nexport interface BuildOptionsDefinition {\n buildOptions?: {\n /**\n * ~\n */\n dry?: boolean | null;\n /**\n * Build all projects, including those that appear to be up to date\n */\n force?: boolean | null;\n /**\n * Enable verbose logging\n */\n verbose?: boolean | null;\n /**\n * Save .tsbuildinfo files to allow for incremental compilation of projects.\n */\n incremental?: boolean | null;\n /**\n * Have recompiles in projects that use `incremental` and `watch` mode assume that changes within a file will only affect files directly depending on it.\n */\n assumeChangesOnlyAffectDirectDependencies?: boolean | null;\n /**\n * Log paths used during the `moduleResolution` process.\n */\n traceResolution?: boolean | null;\n [k: string]: unknown;\n };\n [k: string]: unknown;\n}\nexport interface TsNodeDefinition {\n /**\n * ts-node options. See also: https://typestrong.org/ts-node/docs/configuration\n *\n * ts-node offers TypeScript execution and REPL for node.js, with source map support.\n */\n 'ts-node'?: {\n /**\n * Specify a custom TypeScript compiler.\n */\n compiler?: string | null;\n /**\n * Use TypeScript's compiler host API instead of the language service API.\n */\n compilerHost?: boolean | null;\n /**\n * JSON object to merge with TypeScript `compilerOptions`.\n */\n compilerOptions?: ({\n /**\n * Enable importing files with any extension, provided a declaration file is present.\n */\n allowArbitraryExtensions?: boolean | null;\n /**\n * Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set.\n */\n allowImportingTsExtensions?: boolean | null;\n /**\n * No longer supported. In early versions, manually set the text encoding for reading files.\n */\n charset?: string | null;\n /**\n * Enable constraints that allow a TypeScript project to be used with project references.\n */\n composite?: boolean | null;\n /**\n * Conditions to set in addition to the resolver-specific defaults when resolving imports.\n */\n customConditions?: (string | null)[] | null;\n /**\n * Generate .d.ts files from TypeScript and JavaScript files in your project.\n */\n declaration?: boolean | null;\n /**\n * Specify the output directory for generated declaration files.\n */\n declarationDir?: string | null;\n /**\n * Output compiler performance information after building.\n */\n diagnostics?: boolean | null;\n /**\n * Reduce the number of projects loaded automatically by TypeScript.\n */\n disableReferencedProjectLoad?: boolean | null;\n /**\n * Enforces using indexed accessors for keys declared using an indexed type\n */\n noPropertyAccessFromIndexSignature?: boolean | null;\n /**\n * Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files.\n */\n emitBOM?: boolean | null;\n /**\n * Only output d.ts files and not JavaScript files.\n */\n emitDeclarationOnly?: boolean | null;\n /**\n * Do not allow runtime constructs that are not part of ECMAScript.\n */\n erasableSyntaxOnly?: boolean | null;\n /**\n * Differentiate between undefined and not present when type checking\n */\n exactOptionalPropertyTypes?: boolean | null;\n /**\n * Enable incremental compilation. Requires TypeScript version 3.4 or later.\n */\n incremental?: boolean | null;\n /**\n * Specify the folder for .tsbuildinfo incremental compilation files.\n */\n tsBuildInfoFile?: string | null;\n /**\n * Include sourcemap files inside the emitted JavaScript.\n */\n inlineSourceMap?: boolean | null;\n /**\n * Include source code in the sourcemaps inside the emitted JavaScript.\n */\n inlineSources?: boolean | null;\n /**\n * Specify what JSX code is generated.\n */\n jsx?: 'preserve' | 'react' | 'react-jsx' | 'react-jsxdev' | 'react-native';\n /**\n * Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit.\n */\n reactNamespace?: string | null;\n /**\n * Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'\n */\n jsxFactory?: string | null;\n /**\n * Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'.\n */\n jsxFragmentFactory?: string | null;\n /**\n * Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx`.\n */\n jsxImportSource?: string | null;\n /**\n * Print all of the files read during the compilation.\n */\n listFiles?: boolean | null;\n /**\n * Specify the location where debugger should locate map files instead of generated locations.\n */\n mapRoot?: string | null;\n module?: (\n | ('commonjs' | 'amd' | 'system' | 'umd' | 'es6' | 'es2015' | 'es2020' | 'esnext' | 'none' | 'es2022' | 'node16' | 'node18' | 'nodenext' | 'preserve')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('commonjs' | 'amd' | 'system' | 'umd' | 'es6' | 'es2015' | 'es2020' | 'esnext' | 'none' | 'es2022' | 'node16' | 'node18' | 'nodenext' | 'preserve')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('commonjs' | 'amd' | 'system' | 'umd' | 'es6' | 'es2015' | 'es2020' | 'esnext' | 'none' | 'es2022' | 'node16' | 'node18' | 'nodenext' | 'preserve')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n moduleResolution?: (\n | ('classic' | 'node' | 'node10' | 'node16' | 'nodenext' | 'bundler')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('classic' | 'node' | 'node10' | 'node16' | 'nodenext' | 'bundler')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('classic' | 'node' | 'node10' | 'node16' | 'nodenext' | 'bundler')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n newLine?: (\n | ('crlf' | 'lf')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('crlf' | 'lf')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('crlf' | 'lf')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n /**\n * Disable emitting file from a compilation.\n */\n noEmit?: boolean | null;\n /**\n * Disable generating custom helper functions like `__extends` in compiled output.\n */\n noEmitHelpers?: boolean | null;\n /**\n * Disable emitting files if any type checking errors are reported.\n */\n noEmitOnError?: boolean | null;\n /**\n * Enable error reporting for expressions and declarations with an implied `any` type..\n */\n noImplicitAny?: boolean | null;\n /**\n * Enable error reporting when `this` is given the type `any`.\n */\n noImplicitThis?: boolean | null;\n /**\n * Enable error reporting when a local variable isn't read.\n */\n noUnusedLocals?: boolean | null;\n /**\n * Raise an error when a function parameter isn't read\n */\n noUnusedParameters?: boolean | null;\n /**\n * Disable including any library files, including the default lib.d.ts.\n */\n noLib?: boolean | null;\n /**\n * Disallow `import`s, `require`s or `<reference>`s from expanding the number of files TypeScript should add to a project.\n */\n noResolve?: boolean | null;\n /**\n * Disable strict checking of generic signatures in function types.\n */\n noStrictGenericChecks?: boolean | null;\n /**\n * DEPRECATED. Specify an output for the build. It is recommended to use `outFile` instead.\n */\n out?: string | null;\n /**\n * Skip type checking .d.ts files that are included with TypeScript.\n */\n skipDefaultLibCheck?: boolean | null;\n /**\n * Skip type checking all .d.ts files.\n */\n skipLibCheck?: boolean | null;\n /**\n * Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output.\n */\n outFile?: string | null;\n /**\n * Specify an output folder for all emitted files.\n */\n outDir?: string | null;\n /**\n * Disable erasing `const enum` declarations in generated code.\n */\n preserveConstEnums?: boolean | null;\n /**\n * Disable resolving symlinks to their realpath. This correlates to the same flag in node.\n */\n preserveSymlinks?: boolean | null;\n /**\n * Preserve unused imported values in the JavaScript output that would otherwise be removed\n */\n preserveValueImports?: boolean | null;\n /**\n * Disable wiping the console in watch mode\n */\n preserveWatchOutput?: boolean | null;\n /**\n * Enable color and formatting in output to make compiler errors easier to read\n */\n pretty?: boolean | null;\n /**\n * Disable emitting comments.\n */\n removeComments?: boolean | null;\n /**\n * Rewrite '.ts', '.tsx', '.mts', and '.cts' file extensions in relative import paths to their JavaScript equivalent in output files.\n */\n rewriteRelativeImportExtensions?: boolean | null;\n /**\n * Specify the root folder within your source files.\n */\n rootDir?: string | null;\n /**\n * Ensure that each file can be safely transpiled without relying on other imports.\n */\n isolatedModules?: boolean | null;\n /**\n * Create source map files for emitted JavaScript files.\n */\n sourceMap?: boolean | null;\n /**\n * Specify the root path for debuggers to find the reference source code.\n */\n sourceRoot?: string | null;\n /**\n * Disable reporting of excess property errors during the creation of object literals.\n */\n suppressExcessPropertyErrors?: boolean | null;\n /**\n * Suppress `noImplicitAny` errors when indexing objects that lack index signatures.\n */\n suppressImplicitAnyIndexErrors?: boolean | null;\n /**\n * Disable emitting declarations that have `@internal` in their JSDoc comments.\n */\n stripInternal?: boolean | null;\n target?: (\n | ('es3' | 'es5' | 'es6' | 'es2015' | 'es2016' | 'es2017' | 'es2018' | 'es2019' | 'es2020' | 'es2021' | 'es2022' | 'es2023' | 'es2024' | 'esnext')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('es3' | 'es5' | 'es6' | 'es2015' | 'es2016' | 'es2017' | 'es2018' | 'es2019' | 'es2020' | 'es2021' | 'es2022' | 'es2023' | 'es2024' | 'esnext')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('es3' | 'es5' | 'es6' | 'es2015' | 'es2016' | 'es2017' | 'es2018' | 'es2019' | 'es2020' | 'es2021' | 'es2022' | 'es2023' | 'es2024' | 'esnext')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n /**\n * Default catch clause variables as `unknown` instead of `any`.\n */\n useUnknownInCatchVariables?: boolean | null;\n /**\n * Watch input files.\n */\n watch?: boolean | null;\n /**\n * Specify the polling strategy to use when the system runs out of or doesn't support native file watchers. Requires TypeScript version 3.8 or later.\n */\n fallbackPolling?: 'fixedPollingInterval' | 'priorityPollingInterval' | 'dynamicPriorityPolling' | 'fixedInterval' | 'priorityInterval' | 'dynamicPriority' | 'fixedChunkSize';\n /**\n * Specify the strategy for watching directories under systems that lack recursive file-watching functionality. Requires TypeScript version 3.8 or later.\n */\n watchDirectory?: 'useFsEvents' | 'fixedPollingInterval' | 'dynamicPriorityPolling' | 'fixedChunkSizePolling';\n /**\n * Specify the strategy for watching individual files. Requires TypeScript version 3.8 or later.\n */\n watchFile?: 'fixedPollingInterval' | 'priorityPollingInterval' | 'dynamicPriorityPolling' | 'useFsEvents' | 'useFsEventsOnParentDirectory' | 'fixedChunkSizePolling';\n /**\n * Enable experimental support for TC39 stage 2 draft decorators.\n */\n experimentalDecorators?: boolean | null;\n /**\n * Emit design-type metadata for decorated declarations in source files.\n */\n emitDecoratorMetadata?: boolean | null;\n /**\n * Disable error reporting for unused labels.\n */\n allowUnusedLabels?: boolean | null;\n /**\n * Enable error reporting for codepaths that do not explicitly return in a function.\n */\n noImplicitReturns?: boolean | null;\n /**\n * Add `undefined` to a type when accessed using an index.\n */\n noUncheckedIndexedAccess?: boolean | null;\n /**\n * Enable error reporting for fallthrough cases in switch statements.\n */\n noFallthroughCasesInSwitch?: boolean | null;\n /**\n * Ensure overriding members in derived classes are marked with an override modifier.\n */\n noImplicitOverride?: boolean | null;\n /**\n * Disable error reporting for unreachable code.\n */\n allowUnreachableCode?: boolean | null;\n /**\n * Ensure that casing is correct in imports.\n */\n forceConsistentCasingInFileNames?: boolean | null;\n /**\n * Emit a v8 CPU profile of the compiler run for debugging.\n */\n generateCpuProfile?: string | null;\n /**\n * Specify the base directory to resolve non-relative module names.\n */\n baseUrl?: string | null;\n /**\n * Specify a set of entries that re-map imports to additional lookup locations.\n */\n paths?: {\n [k: string]: (string | null)[] | null;\n } | null;\n /**\n * Specify a list of language service plugins to include.\n */\n plugins?:\n | ({\n /**\n * Plugin name.\n */\n name?: string | null;\n [k: string]: unknown;\n } | null)[]\n | null;\n /**\n * Allow multiple folders to be treated as one when resolving modules.\n */\n rootDirs?: (string | null)[] | null;\n /**\n * Specify multiple folders that act like `./node_modules/@types`.\n */\n typeRoots?: (string | null)[] | null;\n /**\n * Specify type package names to be included without being referenced in a source file.\n */\n types?: (string | null)[] | null;\n /**\n * Enable tracing of the name resolution process. Requires TypeScript version 2.0 or later.\n */\n traceResolution?: boolean | null;\n /**\n * Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files.\n */\n allowJs?: boolean | null;\n /**\n * Disable truncating types in error messages.\n */\n noErrorTruncation?: boolean | null;\n /**\n * Allow 'import x from y' when a module doesn't have a default export.\n */\n allowSyntheticDefaultImports?: boolean | null;\n /**\n * Disable adding 'use strict' directives in emitted JavaScript files.\n */\n noImplicitUseStrict?: boolean | null;\n /**\n * Print the names of emitted files after a compilation.\n */\n listEmittedFiles?: boolean | null;\n /**\n * Remove the 20mb cap on total source code size for JavaScript files in the TypeScript language server.\n */\n disableSizeLimit?: boolean | null;\n /**\n * Specify a set of bundled library declaration files that describe the target runtime environment.\n */\n lib?:\n | ((\n | (\n | 'ES5'\n | 'ES6'\n | 'ES2015'\n | 'ES2015.Collection'\n | 'ES2015.Core'\n | 'ES2015.Generator'\n | 'ES2015.Iterable'\n | 'ES2015.Promise'\n | 'ES2015.Proxy'\n | 'ES2015.Reflect'\n | 'ES2015.Symbol.WellKnown'\n | 'ES2015.Symbol'\n | 'ES2016'\n | 'ES2016.Array.Include'\n | 'ES2017'\n | 'ES2017.Intl'\n | 'ES2017.Object'\n | 'ES2017.SharedMemory'\n | 'ES2017.String'\n | 'ES2017.TypedArrays'\n | 'ES2017.ArrayBuffer'\n | 'ES2018'\n | 'ES2018.AsyncGenerator'\n | 'ES2018.AsyncIterable'\n | 'ES2018.Intl'\n | 'ES2018.Promise'\n | 'ES2018.Regexp'\n | 'ES2019'\n | 'ES2019.Array'\n | 'ES2019.Intl'\n | 'ES2019.Object'\n | 'ES2019.String'\n | 'ES2019.Symbol'\n | 'ES2020'\n | 'ES2020.BigInt'\n | 'ES2020.Promise'\n | 'ES2020.String'\n | 'ES2020.Symbol.WellKnown'\n | 'ESNext'\n | 'ESNext.Array'\n | 'ESNext.AsyncIterable'\n | 'ESNext.BigInt'\n | 'ESNext.Collection'\n | 'ESNext.Intl'\n | 'ESNext.Iterator'\n | 'ESNext.Object'\n | 'ESNext.Promise'\n | 'ESNext.Regexp'\n | 'ESNext.String'\n | 'ESNext.Symbol'\n | 'DOM'\n | 'DOM.AsyncIterable'\n | 'DOM.Iterable'\n | 'ScriptHost'\n | 'WebWorker'\n | 'WebWorker.AsyncIterable'\n | 'WebWorker.ImportScripts'\n | 'Webworker.Iterable'\n | 'ES7'\n | 'ES2021'\n | 'ES2020.SharedMemory'\n | 'ES2020.Intl'\n | 'ES2020.Date'\n | 'ES2020.Number'\n | 'ES2021.Promise'\n | 'ES2021.String'\n | 'ES2021.WeakRef'\n | 'ESNext.WeakRef'\n | 'ES2021.Intl'\n | 'ES2022'\n | 'ES2022.Array'\n | 'ES2022.Error'\n | 'ES2022.Intl'\n | 'ES2022.Object'\n | 'ES2022.String'\n | 'ES2022.SharedMemory'\n | 'ES2022.RegExp'\n | 'ES2023'\n | 'ES2023.Array'\n | 'ES2024'\n | 'ES2024.ArrayBuffer'\n | 'ES2024.Collection'\n | 'ES2024.Object'\n | 'ES2024.Promise'\n | 'ES2024.Regexp'\n | 'ES2024.SharedMemory'\n | 'ES2024.String'\n | 'Decorators'\n | 'Decorators.Legacy'\n | 'ES2017.Date'\n | 'ES2023.Collection'\n | 'ESNext.Decorators'\n | 'ESNext.Disposable'\n )\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | (\n | 'ES5'\n | 'ES6'\n | 'ES2015'\n | 'ES2015.Collection'\n | 'ES2015.Core'\n | 'ES2015.Generator'\n | 'ES2015.Iterable'\n | 'ES2015.Promise'\n | 'ES2015.Proxy'\n | 'ES2015.Reflect'\n | 'ES2015.Symbol.WellKnown'\n | 'ES2015.Symbol'\n | 'ES2016'\n | 'ES2016.Array.Include'\n | 'ES2017'\n | 'ES2017.Intl'\n | 'ES2017.Object'\n | 'ES2017.SharedMemory'\n | 'ES2017.String'\n | 'ES2017.TypedArrays'\n | 'ES2017.ArrayBuffer'\n | 'ES2018'\n | 'ES2018.AsyncGenerator'\n | 'ES2018.AsyncIterable'\n | 'ES2018.Intl'\n | 'ES2018.Promise'\n | 'ES2018.Regexp'\n | 'ES2019'\n | 'ES2019.Array'\n | 'ES2019.Intl'\n | 'ES2019.Object'\n | 'ES2019.String'\n | 'ES2019.Symbol'\n | 'ES2020'\n | 'ES2020.BigInt'\n | 'ES2020.Promise'\n | 'ES2020.String'\n | 'ES2020.Symbol.WellKnown'\n | 'ESNext'\n | 'ESNext.Array'\n | 'ESNext.AsyncIterable'\n | 'ESNext.BigInt'\n | 'ESNext.Collection'\n | 'ESNext.Intl'\n | 'ESNext.Iterator'\n | 'ESNext.Object'\n | 'ESNext.Promise'\n | 'ESNext.Regexp'\n | 'ESNext.String'\n | 'ESNext.Symbol'\n | 'DOM'\n | 'DOM.AsyncIterable'\n | 'DOM.Iterable'\n | 'ScriptHost'\n | 'WebWorker'\n | 'WebWorker.AsyncIterable'\n | 'WebWorker.ImportScripts'\n | 'Webworker.Iterable'\n | 'ES7'\n | 'ES2021'\n | 'ES2020.SharedMemory'\n | 'ES2020.Intl'\n | 'ES2020.Date'\n | 'ES2020.Number'\n | 'ES2021.Promise'\n | 'ES2021.String'\n | 'ES2021.WeakRef'\n | 'ESNext.WeakRef'\n | 'ES2021.Intl'\n | 'ES2022'\n | 'ES2022.Array'\n | 'ES2022.Error'\n | 'ES2022.Intl'\n | 'ES2022.Object'\n | 'ES2022.String'\n | 'ES2022.SharedMemory'\n | 'ES2022.RegExp'\n | 'ES2023'\n | 'ES2023.Array'\n | 'ES2024'\n | 'ES2024.ArrayBuffer'\n | 'ES2024.Collection'\n | 'ES2024.Object'\n | 'ES2024.Promise'\n | 'ES2024.Regexp'\n | 'ES2024.SharedMemory'\n | 'ES2024.String'\n | 'Decorators'\n | 'Decorators.Legacy'\n | 'ES2017.Date'\n | 'ES2023.Collection'\n | 'ESNext.Decorators'\n | 'ESNext.Disposable'\n )\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | (\n | 'ES5'\n | 'ES6'\n | 'ES2015'\n | 'ES2015.Collection'\n | 'ES2015.Core'\n | 'ES2015.Generator'\n | 'ES2015.Iterable'\n | 'ES2015.Promise'\n | 'ES2015.Proxy'\n | 'ES2015.Reflect'\n | 'ES2015.Symbol.WellKnown'\n | 'ES2015.Symbol'\n | 'ES2016'\n | 'ES2016.Array.Include'\n | 'ES2017'\n | 'ES2017.Intl'\n | 'ES2017.Object'\n | 'ES2017.SharedMemory'\n | 'ES2017.String'\n | 'ES2017.TypedArrays'\n | 'ES2017.ArrayBuffer'\n | 'ES2018'\n | 'ES2018.AsyncGenerator'\n | 'ES2018.AsyncIterable'\n | 'ES2018.Intl'\n | 'ES2018.Promise'\n | 'ES2018.Regexp'\n | 'ES2019'\n | 'ES2019.Array'\n | 'ES2019.Intl'\n | 'ES2019.Object'\n | 'ES2019.String'\n | 'ES2019.Symbol'\n | 'ES2020'\n | 'ES2020.BigInt'\n | 'ES2020.Promise'\n | 'ES2020.String'\n | 'ES2020.Symbol.WellKnown'\n | 'ESNext'\n | 'ESNext.Array'\n | 'ESNext.AsyncIterable'\n | 'ESNext.BigInt'\n | 'ESNext.Collection'\n | 'ESNext.Intl'\n | 'ESNext.Iterator'\n | 'ESNext.Object'\n | 'ESNext.Promise'\n | 'ESNext.Regexp'\n | 'ESNext.String'\n | 'ESNext.Symbol'\n | 'DOM'\n | 'DOM.AsyncIterable'\n | 'DOM.Iterable'\n | 'ScriptHost'\n | 'WebWorker'\n | 'WebWorker.AsyncIterable'\n | 'WebWorker.ImportScripts'\n | 'Webworker.Iterable'\n | 'ES7'\n | 'ES2021'\n | 'ES2020.SharedMemory'\n | 'ES2020.Intl'\n | 'ES2020.Date'\n | 'ES2020.Number'\n | 'ES2021.Promise'\n | 'ES2021.String'\n | 'ES2021.WeakRef'\n | 'ESNext.WeakRef'\n | 'ES2021.Intl'\n | 'ES2022'\n | 'ES2022.Array'\n | 'ES2022.Error'\n | 'ES2022.Intl'\n | 'ES2022.Object'\n | 'ES2022.String'\n | 'ES2022.SharedMemory'\n | 'ES2022.RegExp'\n | 'ES2023'\n | 'ES2023.Array'\n | 'ES2024'\n | 'ES2024.ArrayBuffer'\n | 'ES2024.Collection'\n | 'ES2024.Object'\n | 'ES2024.Promise'\n | 'ES2024.Regexp'\n | 'ES2024.SharedMemory'\n | 'ES2024.String'\n | 'Decorators'\n | 'Decorators.Legacy'\n | 'ES2017.Date'\n | 'ES2023.Collection'\n | 'ESNext.Decorators'\n | 'ESNext.Disposable'\n )\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n ))[]\n | null;\n /**\n * Enable lib replacement.\n */\n libReplacement?: boolean | null;\n /**\n * Specify how TypeScript determine a file as module.\n */\n moduleDetection?: 'auto' | 'legacy' | 'force';\n /**\n * When type checking, take into account `null` and `undefined`.\n */\n strictNullChecks?: boolean | null;\n /**\n * Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`.\n */\n maxNodeModuleJsDepth?: number | null;\n /**\n * Allow importing helper functions from tslib once per project, instead of including them per-file.\n */\n importHelpers?: boolean | null;\n /**\n * Specify emit/checking behavior for imports that are only used for types.\n */\n importsNotUsedAsValues?: 'remove' | 'preserve' | 'error';\n /**\n * Ensure 'use strict' is always emitted.\n */\n alwaysStrict?: boolean | null;\n /**\n * Enable all strict type checking options.\n */\n strict?: boolean | null;\n /**\n * Check that the arguments for `bind`, `call`, and `apply` methods match the original function.\n */\n strictBindCallApply?: boolean | null;\n /**\n * Emit more compliant, but verbose and less performant JavaScript for iteration.\n */\n downlevelIteration?: boolean | null;\n /**\n * Enable error reporting in type-checked JavaScript files.\n */\n checkJs?: boolean | null;\n /**\n * When assigning functions, check to ensure parameters and the return values are subtype-compatible.\n */\n strictFunctionTypes?: boolean | null;\n /**\n * Check for class properties that are declared but not set in the constructor.\n */\n strictPropertyInitialization?: boolean | null;\n /**\n * Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility.\n */\n esModuleInterop?: boolean | null;\n /**\n * Allow accessing UMD globals from modules.\n */\n allowUmdGlobalAccess?: boolean | null;\n /**\n * Make keyof only return strings instead of string, numbers or symbols. Legacy option.\n */\n keyofStringsOnly?: boolean | null;\n /**\n * Emit ECMAScript-standard-compliant class fields.\n */\n useDefineForClassFields?: boolean | null;\n /**\n * Create sourcemaps for d.ts files.\n */\n declarationMap?: boolean | null;\n /**\n * Enable importing .json files\n */\n resolveJsonModule?: boolean | null;\n /**\n * Use the package.json 'exports' field when resolving package imports.\n */\n resolvePackageJsonExports?: boolean | null;\n /**\n * Use the package.json 'imports' field when resolving imports.\n */\n resolvePackageJsonImports?: boolean | null;\n /**\n * Have recompiles in '--incremental' and '--watch' assume that changes within a file will only affect files directly depending on it. Requires TypeScript version 3.8 or later.\n */\n assumeChangesOnlyAffectDirectDependencies?: boolean | null;\n /**\n * Output more detailed compiler performance information after building.\n */\n extendedDiagnostics?: boolean | null;\n /**\n * Print names of files that are part of the compilation and then stop processing.\n */\n listFilesOnly?: boolean | null;\n /**\n * Disable preferring source files instead of declaration files when referencing composite projects\n */\n disableSourceOfProjectReferenceRedirect?: boolean | null;\n /**\n * Opt a project out of multi-project reference checking when editing.\n */\n disableSolutionSearching?: boolean | null;\n /**\n * Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting.\n */\n verbatimModuleSyntax?: boolean | null;\n /**\n * Disable full type checking (only critical parse and emit errors will be reported)\n */\n noCheck?: boolean | null;\n /**\n * Require sufficient annotation on exports so other tools can trivially generate declaration files.\n */\n isolatedDeclarations?: boolean | null;\n /**\n * Check side effect imports.\n */\n noUncheckedSideEffectImports?: boolean | null;\n /**\n * Built-in iterators are instantiated with a 'TReturn' type of 'undefined' instead of 'any'.\n */\n strictBuiltinIteratorReturn?: boolean | null;\n [k: string]: unknown;\n } | null) &\n (\n | ({\n /**\n * Enable importing files with any extension, provided a declaration file is present.\n */\n allowArbitraryExtensions?: boolean | null;\n /**\n * Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set.\n */\n allowImportingTsExtensions?: boolean | null;\n /**\n * No longer supported. In early versions, manually set the text encoding for reading files.\n */\n charset?: string | null;\n /**\n * Enable constraints that allow a TypeScript project to be used with project references.\n */\n composite?: boolean | null;\n /**\n * Conditions to set in addition to the resolver-specific defaults when resolving imports.\n */\n customConditions?: (string | null)[] | null;\n /**\n * Generate .d.ts files from TypeScript and JavaScript files in your project.\n */\n declaration?: boolean | null;\n /**\n * Specify the output directory for generated declaration files.\n */\n declarationDir?: string | null;\n /**\n * Output compiler performance information after building.\n */\n diagnostics?: boolean | null;\n /**\n * Reduce the number of projects loaded automatically by TypeScript.\n */\n disableReferencedProjectLoad?: boolean | null;\n /**\n * Enforces using indexed accessors for keys declared using an indexed type\n */\n noPropertyAccessFromIndexSignature?: boolean | null;\n /**\n * Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files.\n */\n emitBOM?: boolean | null;\n /**\n * Only output d.ts files and not JavaScript files.\n */\n emitDeclarationOnly?: boolean | null;\n /**\n * Do not allow runtime constructs that are not part of ECMAScript.\n */\n erasableSyntaxOnly?: boolean | null;\n /**\n * Differentiate between undefined and not present when type checking\n */\n exactOptionalPropertyTypes?: boolean | null;\n /**\n * Enable incremental compilation. Requires TypeScript version 3.4 or later.\n */\n incremental?: boolean | null;\n /**\n * Specify the folder for .tsbuildinfo incremental compilation files.\n */\n tsBuildInfoFile?: string | null;\n /**\n * Include sourcemap files inside the emitted JavaScript.\n */\n inlineSourceMap?: boolean | null;\n /**\n * Include source code in the sourcemaps inside the emitted JavaScript.\n */\n inlineSources?: boolean | null;\n /**\n * Specify what JSX code is generated.\n */\n jsx?: 'preserve' | 'react' | 'react-jsx' | 'react-jsxdev' | 'react-native';\n /**\n * Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit.\n */\n reactNamespace?: string | null;\n /**\n * Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'\n */\n jsxFactory?: string | null;\n /**\n * Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'.\n */\n jsxFragmentFactory?: string | null;\n /**\n * Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx`.\n */\n jsxImportSource?: string | null;\n /**\n * Print all of the files read during the compilation.\n */\n listFiles?: boolean | null;\n /**\n * Specify the location where debugger should locate map files instead of generated locations.\n */\n mapRoot?: string | null;\n module?: (\n | ('commonjs' | 'amd' | 'system' | 'umd' | 'es6' | 'es2015' | 'es2020' | 'esnext' | 'none' | 'es2022' | 'node16' | 'node18' | 'nodenext' | 'preserve')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('commonjs' | 'amd' | 'system' | 'umd' | 'es6' | 'es2015' | 'es2020' | 'esnext' | 'none' | 'es2022' | 'node16' | 'node18' | 'nodenext' | 'preserve')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('commonjs' | 'amd' | 'system' | 'umd' | 'es6' | 'es2015' | 'es2020' | 'esnext' | 'none' | 'es2022' | 'node16' | 'node18' | 'nodenext' | 'preserve')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n moduleResolution?: (\n | ('classic' | 'node' | 'node10' | 'node16' | 'nodenext' | 'bundler')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('classic' | 'node' | 'node10' | 'node16' | 'nodenext' | 'bundler')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('classic' | 'node' | 'node10' | 'node16' | 'nodenext' | 'bundler')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n newLine?: (\n | ('crlf' | 'lf')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('crlf' | 'lf')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('crlf' | 'lf')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n /**\n * Disable emitting file from a compilation.\n */\n noEmit?: boolean | null;\n /**\n * Disable generating custom helper functions like `__extends` in compiled output.\n */\n noEmitHelpers?: boolean | null;\n /**\n * Disable emitting files if any type checking errors are reported.\n */\n noEmitOnError?: boolean | null;\n /**\n * Enable error reporting for expressions and declarations with an implied `any` type..\n */\n noImplicitAny?: boolean | null;\n /**\n * Enable error reporting when `this` is given the type `any`.\n */\n noImplicitThis?: boolean | null;\n /**\n * Enable error reporting when a local variable isn't read.\n */\n noUnusedLocals?: boolean | null;\n /**\n * Raise an error when a function parameter isn't read\n */\n noUnusedParameters?: boolean | null;\n /**\n * Disable including any library files, including the default lib.d.ts.\n */\n noLib?: boolean | null;\n /**\n * Disallow `import`s, `require`s or `<reference>`s from expanding the number of files TypeScript should add to a project.\n */\n noResolve?: boolean | null;\n /**\n * Disable strict checking of generic signatures in function types.\n */\n noStrictGenericChecks?: boolean | null;\n /**\n * DEPRECATED. Specify an output for the build. It is recommended to use `outFile` instead.\n */\n out?: string | null;\n /**\n * Skip type checking .d.ts files that are included with TypeScript.\n */\n skipDefaultLibCheck?: boolean | null;\n /**\n * Skip type checking all .d.ts files.\n */\n skipLibCheck?: boolean | null;\n /**\n * Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output.\n */\n outFile?: string | null;\n /**\n * Specify an output folder for all emitted files.\n */\n outDir?: string | null;\n /**\n * Disable erasing `const enum` declarations in generated code.\n */\n preserveConstEnums?: boolean | null;\n /**\n * Disable resolving symlinks to their realpath. This correlates to the same flag in node.\n */\n preserveSymlinks?: boolean | null;\n /**\n * Preserve unused imported values in the JavaScript output that would otherwise be removed\n */\n preserveValueImports?: boolean | null;\n /**\n * Disable wiping the console in watch mode\n */\n preserveWatchOutput?: boolean | null;\n /**\n * Enable color and formatting in output to make compiler errors easier to read\n */\n pretty?: boolean | null;\n /**\n * Disable emitting comments.\n */\n removeComments?: boolean | null;\n /**\n * Rewrite '.ts', '.tsx', '.mts', and '.cts' file extensions in relative import paths to their JavaScript equivalent in output files.\n */\n rewriteRelativeImportExtensions?: boolean | null;\n /**\n * Specify the root folder within your source files.\n */\n rootDir?: string | null;\n /**\n * Ensure that each file can be safely transpiled without relying on other imports.\n */\n isolatedModules?: boolean | null;\n /**\n * Create source map files for emitted JavaScript files.\n */\n sourceMap?: boolean | null;\n /**\n * Specify the root path for debuggers to find the reference source code.\n */\n sourceRoot?: string | null;\n /**\n * Disable reporting of excess property errors during the creation of object literals.\n */\n suppressExcessPropertyErrors?: boolean | null;\n /**\n * Suppress `noImplicitAny` errors when indexing objects that lack index signatures.\n */\n suppressImplicitAnyIndexErrors?: boolean | null;\n /**\n * Disable emitting declarations that have `@internal` in their JSDoc comments.\n */\n stripInternal?: boolean | null;\n target?: (\n | ('es3' | 'es5' | 'es6' | 'es2015' | 'es2016' | 'es2017' | 'es2018' | 'es2019' | 'es2020' | 'es2021' | 'es2022' | 'es2023' | 'es2024' | 'esnext')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('es3' | 'es5' | 'es6' | 'es2015' | 'es2016' | 'es2017' | 'es2018' | 'es2019' | 'es2020' | 'es2021' | 'es2022' | 'es2023' | 'es2024' | 'esnext')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('es3' | 'es5' | 'es6' | 'es2015' | 'es2016' | 'es2017' | 'es2018' | 'es2019' | 'es2020' | 'es2021' | 'es2022' | 'es2023' | 'es2024' | 'esnext')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n /**\n * Default catch clause variables as `unknown` instead of `any`.\n */\n useUnknownInCatchVariables?: boolean | null;\n /**\n * Watch input files.\n */\n watch?: boolean | null;\n /**\n * Specify the polling strategy to use when the system runs out of or doesn't support native file watchers. Requires TypeScript version 3.8 or later.\n */\n fallbackPolling?: 'fixedPollingInterval' | 'priorityPollingInterval' | 'dynamicPriorityPolling' | 'fixedInterval' | 'priorityInterval' | 'dynamicPriority' | 'fixedChunkSize';\n /**\n * Specify the strategy for watching directories under systems that lack recursive file-watching functionality. Requires TypeScript version 3.8 or later.\n */\n watchDirectory?: 'useFsEvents' | 'fixedPollingInterval' | 'dynamicPriorityPolling' | 'fixedChunkSizePolling';\n /**\n * Specify the strategy for watching individual files. Requires TypeScript version 3.8 or later.\n */\n watchFile?: 'fixedPollingInterval' | 'priorityPollingInterval' | 'dynamicPriorityPolling' | 'useFsEvents' | 'useFsEventsOnParentDirectory' | 'fixedChunkSizePolling';\n /**\n * Enable experimental support for TC39 stage 2 draft decorators.\n */\n experimentalDecorators?: boolean | null;\n /**\n * Emit design-type metadata for decorated declarations in source files.\n */\n emitDecoratorMetadata?: boolean | null;\n /**\n * Disable error reporting for unused labels.\n */\n allowUnusedLabels?: boolean | null;\n /**\n * Enable error reporting for codepaths that do not explicitly return in a function.\n */\n noImplicitReturns?: boolean | null;\n /**\n * Add `undefined` to a type when accessed using an index.\n */\n noUncheckedIndexedAccess?: boolean | null;\n /**\n * Enable error reporting for fallthrough cases in switch statements.\n */\n noFallthroughCasesInSwitch?: boolean | null;\n /**\n * Ensure overriding members in derived classes are marked with an override modifier.\n */\n noImplicitOverride?: boolean | null;\n /**\n * Disable error reporting for unreachable code.\n */\n allowUnreachableCode?: boolean | null;\n /**\n * Ensure that casing is correct in imports.\n */\n forceConsistentCasingInFileNames?: boolean | null;\n /**\n * Emit a v8 CPU profile of the compiler run for debugging.\n */\n generateCpuProfile?: string | null;\n /**\n * Specify the base directory to resolve non-relative module names.\n */\n baseUrl?: string | null;\n /**\n * Specify a set of entries that re-map imports to additional lookup locations.\n */\n paths?: {\n [k: string]: (string | null)[] | null;\n } | null;\n /**\n * Specify a list of language service plugins to include.\n */\n plugins?:\n | ({\n /**\n * Plugin name.\n */\n name?: string | null;\n [k: string]: unknown;\n } | null)[]\n | null;\n /**\n * Allow multiple folders to be treated as one when resolving modules.\n */\n rootDirs?: (string | null)[] | null;\n /**\n * Specify multiple folders that act like `./node_modules/@types`.\n */\n typeRoots?: (string | null)[] | null;\n /**\n * Specify type package names to be included without being referenced in a source file.\n */\n types?: (string | null)[] | null;\n /**\n * Enable tracing of the name resolution process. Requires TypeScript version 2.0 or later.\n */\n traceResolution?: boolean | null;\n /**\n * Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files.\n */\n allowJs?: boolean | null;\n /**\n * Disable truncating types in error messages.\n */\n noErrorTruncation?: boolean | null;\n /**\n * Allow 'import x from y' when a module doesn't have a default export.\n */\n allowSyntheticDefaultImports?: boolean | null;\n /**\n * Disable adding 'use strict' directives in emitted JavaScript files.\n */\n noImplicitUseStrict?: boolean | null;\n /**\n * Print the names of emitted files after a compilation.\n */\n listEmittedFiles?: boolean | null;\n /**\n * Remove the 20mb cap on total source code size for JavaScript files in the TypeScript language server.\n */\n disableSizeLimit?: boolean | null;\n /**\n * Specify a set of bundled library declaration files that describe the target runtime environment.\n */\n lib?:\n | ((\n | (\n | 'ES5'\n | 'ES6'\n | 'ES2015'\n | 'ES2015.Collection'\n | 'ES2015.Core'\n | 'ES2015.Generator'\n | 'ES2015.Iterable'\n | 'ES2015.Promise'\n | 'ES2015.Proxy'\n | 'ES2015.Reflect'\n | 'ES2015.Symbol.WellKnown'\n | 'ES2015.Symbol'\n | 'ES2016'\n | 'ES2016.Array.Include'\n | 'ES2017'\n | 'ES2017.Intl'\n | 'ES2017.Object'\n | 'ES2017.SharedMemory'\n | 'ES2017.String'\n | 'ES2017.TypedArrays'\n | 'ES2017.ArrayBuffer'\n | 'ES2018'\n | 'ES2018.AsyncGenerator'\n | 'ES2018.AsyncIterable'\n | 'ES2018.Intl'\n | 'ES2018.Promise'\n | 'ES2018.Regexp'\n | 'ES2019'\n | 'ES2019.Array'\n | 'ES2019.Intl'\n | 'ES2019.Object'\n | 'ES2019.String'\n | 'ES2019.Symbol'\n | 'ES2020'\n | 'ES2020.BigInt'\n | 'ES2020.Promise'\n | 'ES2020.String'\n | 'ES2020.Symbol.WellKnown'\n | 'ESNext'\n | 'ESNext.Array'\n | 'ESNext.AsyncIterable'\n | 'ESNext.BigInt'\n | 'ESNext.Collection'\n | 'ESNext.Intl'\n | 'ESNext.Iterator'\n | 'ESNext.Object'\n | 'ESNext.Promise'\n | 'ESNext.Regexp'\n | 'ESNext.String'\n | 'ESNext.Symbol'\n | 'DOM'\n | 'DOM.AsyncIterable'\n | 'DOM.Iterable'\n | 'ScriptHost'\n | 'WebWorker'\n | 'WebWorker.AsyncIterable'\n | 'WebWorker.ImportScripts'\n | 'Webworker.Iterable'\n | 'ES7'\n | 'ES2021'\n | 'ES2020.SharedMemory'\n | 'ES2020.Intl'\n | 'ES2020.Date'\n | 'ES2020.Number'\n | 'ES2021.Promise'\n | 'ES2021.String'\n | 'ES2021.WeakRef'\n | 'ESNext.WeakRef'\n | 'ES2021.Intl'\n | 'ES2022'\n | 'ES2022.Array'\n | 'ES2022.Error'\n | 'ES2022.Intl'\n | 'ES2022.Object'\n | 'ES2022.String'\n | 'ES2022.SharedMemory'\n | 'ES2022.RegExp'\n | 'ES2023'\n | 'ES2023.Array'\n | 'ES2024'\n | 'ES2024.ArrayBuffer'\n | 'ES2024.Collection'\n | 'ES2024.Object'\n | 'ES2024.Promise'\n | 'ES2024.Regexp'\n | 'ES2024.SharedMemory'\n | 'ES2024.String'\n | 'Decorators'\n | 'Decorators.Legacy'\n | 'ES2017.Date'\n | 'ES2023.Collection'\n | 'ESNext.Decorators'\n | 'ESNext.Disposable'\n )\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | (\n | 'ES5'\n | 'ES6'\n | 'ES2015'\n | 'ES2015.Collection'\n | 'ES2015.Core'\n | 'ES2015.Generator'\n | 'ES2015.Iterable'\n | 'ES2015.Promise'\n | 'ES2015.Proxy'\n | 'ES2015.Reflect'\n | 'ES2015.Symbol.WellKnown'\n | 'ES2015.Symbol'\n | 'ES2016'\n | 'ES2016.Array.Include'\n | 'ES2017'\n | 'ES2017.Intl'\n | 'ES2017.Object'\n | 'ES2017.SharedMemory'\n | 'ES2017.String'\n | 'ES2017.TypedArrays'\n | 'ES2017.ArrayBuffer'\n | 'ES2018'\n | 'ES2018.AsyncGenerator'\n | 'ES2018.AsyncIterable'\n | 'ES2018.Intl'\n | 'ES2018.Promise'\n | 'ES2018.Regexp'\n | 'ES2019'\n | 'ES2019.Array'\n | 'ES2019.Intl'\n | 'ES2019.Object'\n | 'ES2019.String'\n | 'ES2019.Symbol'\n | 'ES2020'\n | 'ES2020.BigInt'\n | 'ES2020.Promise'\n | 'ES2020.String'\n | 'ES2020.Symbol.WellKnown'\n | 'ESNext'\n | 'ESNext.Array'\n | 'ESNext.AsyncIterable'\n | 'ESNext.BigInt'\n | 'ESNext.Collection'\n | 'ESNext.Intl'\n | 'ESNext.Iterator'\n | 'ESNext.Object'\n | 'ESNext.Promise'\n | 'ESNext.Regexp'\n | 'ESNext.String'\n | 'ESNext.Symbol'\n | 'DOM'\n | 'DOM.AsyncIterable'\n | 'DOM.Iterable'\n | 'ScriptHost'\n | 'WebWorker'\n | 'WebWorker.AsyncIterable'\n | 'WebWorker.ImportScripts'\n | 'Webworker.Iterable'\n | 'ES7'\n | 'ES2021'\n | 'ES2020.SharedMemory'\n | 'ES2020.Intl'\n | 'ES2020.Date'\n | 'ES2020.Number'\n | 'ES2021.Promise'\n | 'ES2021.String'\n | 'ES2021.WeakRef'\n | 'ESNext.WeakRef'\n | 'ES2021.Intl'\n | 'ES2022'\n | 'ES2022.Array'\n | 'ES2022.Error'\n | 'ES2022.Intl'\n | 'ES2022.Object'\n | 'ES2022.String'\n | 'ES2022.SharedMemory'\n | 'ES2022.RegExp'\n | 'ES2023'\n | 'ES2023.Array'\n | 'ES2024'\n | 'ES2024.ArrayBuffer'\n | 'ES2024.Collection'\n | 'ES2024.Object'\n | 'ES2024.Promise'\n | 'ES2024.Regexp'\n | 'ES2024.SharedMemory'\n | 'ES2024.String'\n | 'Decorators'\n | 'Decorators.Legacy'\n | 'ES2017.Date'\n | 'ES2023.Collection'\n | 'ESNext.Decorators'\n | 'ESNext.Disposable'\n )\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | (\n | 'ES5'\n | 'ES6'\n | 'ES2015'\n | 'ES2015.Collection'\n | 'ES2015.Core'\n | 'ES2015.Generator'\n | 'ES2015.Iterable'\n | 'ES2015.Promise'\n | 'ES2015.Proxy'\n | 'ES2015.Reflect'\n | 'ES2015.Symbol.WellKnown'\n | 'ES2015.Symbol'\n | 'ES2016'\n | 'ES2016.Array.Include'\n | 'ES2017'\n | 'ES2017.Intl'\n | 'ES2017.Object'\n | 'ES2017.SharedMemory'\n | 'ES2017.String'\n | 'ES2017.TypedArrays'\n | 'ES2017.ArrayBuffer'\n | 'ES2018'\n | 'ES2018.AsyncGenerator'\n | 'ES2018.AsyncIterable'\n | 'ES2018.Intl'\n | 'ES2018.Promise'\n | 'ES2018.Regexp'\n | 'ES2019'\n | 'ES2019.Array'\n | 'ES2019.Intl'\n | 'ES2019.Object'\n | 'ES2019.String'\n | 'ES2019.Symbol'\n | 'ES2020'\n | 'ES2020.BigInt'\n | 'ES2020.Promise'\n | 'ES2020.String'\n | 'ES2020.Symbol.WellKnown'\n | 'ESNext'\n | 'ESNext.Array'\n | 'ESNext.AsyncIterable'\n | 'ESNext.BigInt'\n | 'ESNext.Collection'\n | 'ESNext.Intl'\n | 'ESNext.Iterator'\n | 'ESNext.Object'\n | 'ESNext.Promise'\n | 'ESNext.Regexp'\n | 'ESNext.String'\n | 'ESNext.Symbol'\n | 'DOM'\n | 'DOM.AsyncIterable'\n | 'DOM.Iterable'\n | 'ScriptHost'\n | 'WebWorker'\n | 'WebWorker.AsyncIterable'\n | 'WebWorker.ImportScripts'\n | 'Webworker.Iterable'\n | 'ES7'\n | 'ES2021'\n | 'ES2020.SharedMemory'\n | 'ES2020.Intl'\n | 'ES2020.Date'\n | 'ES2020.Number'\n | 'ES2021.Promise'\n | 'ES2021.String'\n | 'ES2021.WeakRef'\n | 'ESNext.WeakRef'\n | 'ES2021.Intl'\n | 'ES2022'\n | 'ES2022.Array'\n | 'ES2022.Error'\n | 'ES2022.Intl'\n | 'ES2022.Object'\n | 'ES2022.String'\n | 'ES2022.SharedMemory'\n | 'ES2022.RegExp'\n | 'ES2023'\n | 'ES2023.Array'\n | 'ES2024'\n | 'ES2024.ArrayBuffer'\n | 'ES2024.Collection'\n | 'ES2024.Object'\n | 'ES2024.Promise'\n | 'ES2024.Regexp'\n | 'ES2024.SharedMemory'\n | 'ES2024.String'\n | 'Decorators'\n | 'Decorators.Legacy'\n | 'ES2017.Date'\n | 'ES2023.Collection'\n | 'ESNext.Decorators'\n | 'ESNext.Disposable'\n )\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n ))[]\n | null;\n /**\n * Enable lib replacement.\n */\n libReplacement?: boolean | null;\n /**\n * Specify how TypeScript determine a file as module.\n */\n moduleDetection?: 'auto' | 'legacy' | 'force';\n /**\n * When type checking, take into account `null` and `undefined`.\n */\n strictNullChecks?: boolean | null;\n /**\n * Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`.\n */\n maxNodeModuleJsDepth?: number | null;\n /**\n * Allow importing helper functions from tslib once per project, instead of including them per-file.\n */\n importHelpers?: boolean | null;\n /**\n * Specify emit/checking behavior for imports that are only used for types.\n */\n importsNotUsedAsValues?: 'remove' | 'preserve' | 'error';\n /**\n * Ensure 'use strict' is always emitted.\n */\n alwaysStrict?: boolean | null;\n /**\n * Enable all strict type checking options.\n */\n strict?: boolean | null;\n /**\n * Check that the arguments for `bind`, `call`, and `apply` methods match the original function.\n */\n strictBindCallApply?: boolean | null;\n /**\n * Emit more compliant, but verbose and less performant JavaScript for iteration.\n */\n downlevelIteration?: boolean | null;\n /**\n * Enable error reporting in type-checked JavaScript files.\n */\n checkJs?: boolean | null;\n /**\n * When assigning functions, check to ensure parameters and the return values are subtype-compatible.\n */\n strictFunctionTypes?: boolean | null;\n /**\n * Check for class properties that are declared but not set in the constructor.\n */\n strictPropertyInitialization?: boolean | null;\n /**\n * Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility.\n */\n esModuleInterop?: boolean | null;\n /**\n * Allow accessing UMD globals from modules.\n */\n allowUmdGlobalAccess?: boolean | null;\n /**\n * Make keyof only return strings instead of string, numbers or symbols. Legacy option.\n */\n keyofStringsOnly?: boolean | null;\n /**\n * Emit ECMAScript-standard-compliant class fields.\n */\n useDefineForClassFields?: boolean | null;\n /**\n * Create sourcemaps for d.ts files.\n */\n declarationMap?: boolean | null;\n /**\n * Enable importing .json files\n */\n resolveJsonModule?: boolean | null;\n /**\n * Use the package.json 'exports' field when resolving package imports.\n */\n resolvePackageJsonExports?: boolean | null;\n /**\n * Use the package.json 'imports' field when resolving imports.\n */\n resolvePackageJsonImports?: boolean | null;\n /**\n * Have recompiles in '--incremental' and '--watch' assume that changes within a file will only affect files directly depending on it. Requires TypeScript version 3.8 or later.\n */\n assumeChangesOnlyAffectDirectDependencies?: boolean | null;\n /**\n * Output more detailed compiler performance information after building.\n */\n extendedDiagnostics?: boolean | null;\n /**\n * Print names of files that are part of the compilation and then stop processing.\n */\n listFilesOnly?: boolean | null;\n /**\n * Disable preferring source files instead of declaration files when referencing composite projects\n */\n disableSourceOfProjectReferenceRedirect?: boolean | null;\n /**\n * Opt a project out of multi-project reference checking when editing.\n */\n disableSolutionSearching?: boolean | null;\n /**\n * Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting.\n */\n verbatimModuleSyntax?: boolean | null;\n /**\n * Disable full type checking (only critical parse and emit errors will be reported)\n */\n noCheck?: boolean | null;\n /**\n * Require sufficient annotation on exports so other tools can trivially generate declaration files.\n */\n isolatedDeclarations?: boolean | null;\n /**\n * Check side effect imports.\n */\n noUncheckedSideEffectImports?: boolean | null;\n /**\n * Built-in iterators are instantiated with a 'TReturn' type of 'undefined' instead of 'any'.\n */\n strictBuiltinIteratorReturn?: boolean | null;\n [k: string]: unknown;\n } | null)\n | (({\n /**\n * Enable importing files with any extension, provided a declaration file is present.\n */\n allowArbitraryExtensions?: boolean | null;\n /**\n * Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set.\n */\n allowImportingTsExtensions?: boolean | null;\n /**\n * No longer supported. In early versions, manually set the text encoding for reading files.\n */\n charset?: string | null;\n /**\n * Enable constraints that allow a TypeScript project to be used with project references.\n */\n composite?: boolean | null;\n /**\n * Conditions to set in addition to the resolver-specific defaults when resolving imports.\n */\n customConditions?: (string | null)[] | null;\n /**\n * Generate .d.ts files from TypeScript and JavaScript files in your project.\n */\n declaration?: boolean | null;\n /**\n * Specify the output directory for generated declaration files.\n */\n declarationDir?: string | null;\n /**\n * Output compiler performance information after building.\n */\n diagnostics?: boolean | null;\n /**\n * Reduce the number of projects loaded automatically by TypeScript.\n */\n disableReferencedProjectLoad?: boolean | null;\n /**\n * Enforces using indexed accessors for keys declared using an indexed type\n */\n noPropertyAccessFromIndexSignature?: boolean | null;\n /**\n * Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files.\n */\n emitBOM?: boolean | null;\n /**\n * Only output d.ts files and not JavaScript files.\n */\n emitDeclarationOnly?: boolean | null;\n /**\n * Do not allow runtime constructs that are not part of ECMAScript.\n */\n erasableSyntaxOnly?: boolean | null;\n /**\n * Differentiate between undefined and not present when type checking\n */\n exactOptionalPropertyTypes?: boolean | null;\n /**\n * Enable incremental compilation. Requires TypeScript version 3.4 or later.\n */\n incremental?: boolean | null;\n /**\n * Specify the folder for .tsbuildinfo incremental compilation files.\n */\n tsBuildInfoFile?: string | null;\n /**\n * Include sourcemap files inside the emitted JavaScript.\n */\n inlineSourceMap?: boolean | null;\n /**\n * Include source code in the sourcemaps inside the emitted JavaScript.\n */\n inlineSources?: boolean | null;\n /**\n * Specify what JSX code is generated.\n */\n jsx?: 'preserve' | 'react' | 'react-jsx' | 'react-jsxdev' | 'react-native';\n /**\n * Specify the object invoked for `createElement`. This only applies when targeting `react` JSX emit.\n */\n reactNamespace?: string | null;\n /**\n * Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'\n */\n jsxFactory?: string | null;\n /**\n * Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'.\n */\n jsxFragmentFactory?: string | null;\n /**\n * Specify module specifier used to import the JSX factory functions when using `jsx: react-jsx`.\n */\n jsxImportSource?: string | null;\n /**\n * Print all of the files read during the compilation.\n */\n listFiles?: boolean | null;\n /**\n * Specify the location where debugger should locate map files instead of generated locations.\n */\n mapRoot?: string | null;\n module?: (\n | ('commonjs' | 'amd' | 'system' | 'umd' | 'es6' | 'es2015' | 'es2020' | 'esnext' | 'none' | 'es2022' | 'node16' | 'node18' | 'nodenext' | 'preserve')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('commonjs' | 'amd' | 'system' | 'umd' | 'es6' | 'es2015' | 'es2020' | 'esnext' | 'none' | 'es2022' | 'node16' | 'node18' | 'nodenext' | 'preserve')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('commonjs' | 'amd' | 'system' | 'umd' | 'es6' | 'es2015' | 'es2020' | 'esnext' | 'none' | 'es2022' | 'node16' | 'node18' | 'nodenext' | 'preserve')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n moduleResolution?: (\n | ('classic' | 'node' | 'node10' | 'node16' | 'nodenext' | 'bundler')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('classic' | 'node' | 'node10' | 'node16' | 'nodenext' | 'bundler')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('classic' | 'node' | 'node10' | 'node16' | 'nodenext' | 'bundler')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n newLine?: (\n | ('crlf' | 'lf')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('crlf' | 'lf')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('crlf' | 'lf')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n /**\n * Disable emitting file from a compilation.\n */\n noEmit?: boolean | null;\n /**\n * Disable generating custom helper functions like `__extends` in compiled output.\n */\n noEmitHelpers?: boolean | null;\n /**\n * Disable emitting files if any type checking errors are reported.\n */\n noEmitOnError?: boolean | null;\n /**\n * Enable error reporting for expressions and declarations with an implied `any` type..\n */\n noImplicitAny?: boolean | null;\n /**\n * Enable error reporting when `this` is given the type `any`.\n */\n noImplicitThis?: boolean | null;\n /**\n * Enable error reporting when a local variable isn't read.\n */\n noUnusedLocals?: boolean | null;\n /**\n * Raise an error when a function parameter isn't read\n */\n noUnusedParameters?: boolean | null;\n /**\n * Disable including any library files, including the default lib.d.ts.\n */\n noLib?: boolean | null;\n /**\n * Disallow `import`s, `require`s or `<reference>`s from expanding the number of files TypeScript should add to a project.\n */\n noResolve?: boolean | null;\n /**\n * Disable strict checking of generic signatures in function types.\n */\n noStrictGenericChecks?: boolean | null;\n /**\n * DEPRECATED. Specify an output for the build. It is recommended to use `outFile` instead.\n */\n out?: string | null;\n /**\n * Skip type checking .d.ts files that are included with TypeScript.\n */\n skipDefaultLibCheck?: boolean | null;\n /**\n * Skip type checking all .d.ts files.\n */\n skipLibCheck?: boolean | null;\n /**\n * Specify a file that bundles all outputs into one JavaScript file. If `declaration` is true, also designates a file that bundles all .d.ts output.\n */\n outFile?: string | null;\n /**\n * Specify an output folder for all emitted files.\n */\n outDir?: string | null;\n /**\n * Disable erasing `const enum` declarations in generated code.\n */\n preserveConstEnums?: boolean | null;\n /**\n * Disable resolving symlinks to their realpath. This correlates to the same flag in node.\n */\n preserveSymlinks?: boolean | null;\n /**\n * Preserve unused imported values in the JavaScript output that would otherwise be removed\n */\n preserveValueImports?: boolean | null;\n /**\n * Disable wiping the console in watch mode\n */\n preserveWatchOutput?: boolean | null;\n /**\n * Enable color and formatting in output to make compiler errors easier to read\n */\n pretty?: boolean | null;\n /**\n * Disable emitting comments.\n */\n removeComments?: boolean | null;\n /**\n * Rewrite '.ts', '.tsx', '.mts', and '.cts' file extensions in relative import paths to their JavaScript equivalent in output files.\n */\n rewriteRelativeImportExtensions?: boolean | null;\n /**\n * Specify the root folder within your source files.\n */\n rootDir?: string | null;\n /**\n * Ensure that each file can be safely transpiled without relying on other imports.\n */\n isolatedModules?: boolean | null;\n /**\n * Create source map files for emitted JavaScript files.\n */\n sourceMap?: boolean | null;\n /**\n * Specify the root path for debuggers to find the reference source code.\n */\n sourceRoot?: string | null;\n /**\n * Disable reporting of excess property errors during the creation of object literals.\n */\n suppressExcessPropertyErrors?: boolean | null;\n /**\n * Suppress `noImplicitAny` errors when indexing objects that lack index signatures.\n */\n suppressImplicitAnyIndexErrors?: boolean | null;\n /**\n * Disable emitting declarations that have `@internal` in their JSDoc comments.\n */\n stripInternal?: boolean | null;\n target?: (\n | ('es3' | 'es5' | 'es6' | 'es2015' | 'es2016' | 'es2017' | 'es2018' | 'es2019' | 'es2020' | 'es2021' | 'es2022' | 'es2023' | 'es2024' | 'esnext')\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | ('es3' | 'es5' | 'es6' | 'es2015' | 'es2016' | 'es2017' | 'es2018' | 'es2019' | 'es2020' | 'es2021' | 'es2022' | 'es2023' | 'es2024' | 'esnext')\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | ('es3' | 'es5' | 'es6' | 'es2015' | 'es2016' | 'es2017' | 'es2018' | 'es2019' | 'es2020' | 'es2021' | 'es2022' | 'es2023' | 'es2024' | 'esnext')\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n );\n /**\n * Default catch clause variables as `unknown` instead of `any`.\n */\n useUnknownInCatchVariables?: boolean | null;\n /**\n * Watch input files.\n */\n watch?: boolean | null;\n /**\n * Specify the polling strategy to use when the system runs out of or doesn't support native file watchers. Requires TypeScript version 3.8 or later.\n */\n fallbackPolling?: 'fixedPollingInterval' | 'priorityPollingInterval' | 'dynamicPriorityPolling' | 'fixedInterval' | 'priorityInterval' | 'dynamicPriority' | 'fixedChunkSize';\n /**\n * Specify the strategy for watching directories under systems that lack recursive file-watching functionality. Requires TypeScript version 3.8 or later.\n */\n watchDirectory?: 'useFsEvents' | 'fixedPollingInterval' | 'dynamicPriorityPolling' | 'fixedChunkSizePolling';\n /**\n * Specify the strategy for watching individual files. Requires TypeScript version 3.8 or later.\n */\n watchFile?: 'fixedPollingInterval' | 'priorityPollingInterval' | 'dynamicPriorityPolling' | 'useFsEvents' | 'useFsEventsOnParentDirectory' | 'fixedChunkSizePolling';\n /**\n * Enable experimental support for TC39 stage 2 draft decorators.\n */\n experimentalDecorators?: boolean | null;\n /**\n * Emit design-type metadata for decorated declarations in source files.\n */\n emitDecoratorMetadata?: boolean | null;\n /**\n * Disable error reporting for unused labels.\n */\n allowUnusedLabels?: boolean | null;\n /**\n * Enable error reporting for codepaths that do not explicitly return in a function.\n */\n noImplicitReturns?: boolean | null;\n /**\n * Add `undefined` to a type when accessed using an index.\n */\n noUncheckedIndexedAccess?: boolean | null;\n /**\n * Enable error reporting for fallthrough cases in switch statements.\n */\n noFallthroughCasesInSwitch?: boolean | null;\n /**\n * Ensure overriding members in derived classes are marked with an override modifier.\n */\n noImplicitOverride?: boolean | null;\n /**\n * Disable error reporting for unreachable code.\n */\n allowUnreachableCode?: boolean | null;\n /**\n * Ensure that casing is correct in imports.\n */\n forceConsistentCasingInFileNames?: boolean | null;\n /**\n * Emit a v8 CPU profile of the compiler run for debugging.\n */\n generateCpuProfile?: string | null;\n /**\n * Specify the base directory to resolve non-relative module names.\n */\n baseUrl?: string | null;\n /**\n * Specify a set of entries that re-map imports to additional lookup locations.\n */\n paths?: {\n [k: string]: (string | null)[] | null;\n } | null;\n /**\n * Specify a list of language service plugins to include.\n */\n plugins?:\n | ({\n /**\n * Plugin name.\n */\n name?: string | null;\n [k: string]: unknown;\n } | null)[]\n | null;\n /**\n * Allow multiple folders to be treated as one when resolving modules.\n */\n rootDirs?: (string | null)[] | null;\n /**\n * Specify multiple folders that act like `./node_modules/@types`.\n */\n typeRoots?: (string | null)[] | null;\n /**\n * Specify type package names to be included without being referenced in a source file.\n */\n types?: (string | null)[] | null;\n /**\n * Enable tracing of the name resolution process. Requires TypeScript version 2.0 or later.\n */\n traceResolution?: boolean | null;\n /**\n * Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files.\n */\n allowJs?: boolean | null;\n /**\n * Disable truncating types in error messages.\n */\n noErrorTruncation?: boolean | null;\n /**\n * Allow 'import x from y' when a module doesn't have a default export.\n */\n allowSyntheticDefaultImports?: boolean | null;\n /**\n * Disable adding 'use strict' directives in emitted JavaScript files.\n */\n noImplicitUseStrict?: boolean | null;\n /**\n * Print the names of emitted files after a compilation.\n */\n listEmittedFiles?: boolean | null;\n /**\n * Remove the 20mb cap on total source code size for JavaScript files in the TypeScript language server.\n */\n disableSizeLimit?: boolean | null;\n /**\n * Specify a set of bundled library declaration files that describe the target runtime environment.\n */\n lib?:\n | ((\n | (\n | 'ES5'\n | 'ES6'\n | 'ES2015'\n | 'ES2015.Collection'\n | 'ES2015.Core'\n | 'ES2015.Generator'\n | 'ES2015.Iterable'\n | 'ES2015.Promise'\n | 'ES2015.Proxy'\n | 'ES2015.Reflect'\n | 'ES2015.Symbol.WellKnown'\n | 'ES2015.Symbol'\n | 'ES2016'\n | 'ES2016.Array.Include'\n | 'ES2017'\n | 'ES2017.Intl'\n | 'ES2017.Object'\n | 'ES2017.SharedMemory'\n | 'ES2017.String'\n | 'ES2017.TypedArrays'\n | 'ES2017.ArrayBuffer'\n | 'ES2018'\n | 'ES2018.AsyncGenerator'\n | 'ES2018.AsyncIterable'\n | 'ES2018.Intl'\n | 'ES2018.Promise'\n | 'ES2018.Regexp'\n | 'ES2019'\n | 'ES2019.Array'\n | 'ES2019.Intl'\n | 'ES2019.Object'\n | 'ES2019.String'\n | 'ES2019.Symbol'\n | 'ES2020'\n | 'ES2020.BigInt'\n | 'ES2020.Promise'\n | 'ES2020.String'\n | 'ES2020.Symbol.WellKnown'\n | 'ESNext'\n | 'ESNext.Array'\n | 'ESNext.AsyncIterable'\n | 'ESNext.BigInt'\n | 'ESNext.Collection'\n | 'ESNext.Intl'\n | 'ESNext.Iterator'\n | 'ESNext.Object'\n | 'ESNext.Promise'\n | 'ESNext.Regexp'\n | 'ESNext.String'\n | 'ESNext.Symbol'\n | 'DOM'\n | 'DOM.AsyncIterable'\n | 'DOM.Iterable'\n | 'ScriptHost'\n | 'WebWorker'\n | 'WebWorker.AsyncIterable'\n | 'WebWorker.ImportScripts'\n | 'Webworker.Iterable'\n | 'ES7'\n | 'ES2021'\n | 'ES2020.SharedMemory'\n | 'ES2020.Intl'\n | 'ES2020.Date'\n | 'ES2020.Number'\n | 'ES2021.Promise'\n | 'ES2021.String'\n | 'ES2021.WeakRef'\n | 'ESNext.WeakRef'\n | 'ES2021.Intl'\n | 'ES2022'\n | 'ES2022.Array'\n | 'ES2022.Error'\n | 'ES2022.Intl'\n | 'ES2022.Object'\n | 'ES2022.String'\n | 'ES2022.SharedMemory'\n | 'ES2022.RegExp'\n | 'ES2023'\n | 'ES2023.Array'\n | 'ES2024'\n | 'ES2024.ArrayBuffer'\n | 'ES2024.Collection'\n | 'ES2024.Object'\n | 'ES2024.Promise'\n | 'ES2024.Regexp'\n | 'ES2024.SharedMemory'\n | 'ES2024.String'\n | 'Decorators'\n | 'Decorators.Legacy'\n | 'ES2017.Date'\n | 'ES2023.Collection'\n | 'ESNext.Decorators'\n | 'ESNext.Disposable'\n )\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n ) &\n (\n | ((\n | (\n | 'ES5'\n | 'ES6'\n | 'ES2015'\n | 'ES2015.Collection'\n | 'ES2015.Core'\n | 'ES2015.Generator'\n | 'ES2015.Iterable'\n | 'ES2015.Promise'\n | 'ES2015.Proxy'\n | 'ES2015.Reflect'\n | 'ES2015.Symbol.WellKnown'\n | 'ES2015.Symbol'\n | 'ES2016'\n | 'ES2016.Array.Include'\n | 'ES2017'\n | 'ES2017.Intl'\n | 'ES2017.Object'\n | 'ES2017.SharedMemory'\n | 'ES2017.String'\n | 'ES2017.TypedArrays'\n | 'ES2017.ArrayBuffer'\n | 'ES2018'\n | 'ES2018.AsyncGenerator'\n | 'ES2018.AsyncIterable'\n | 'ES2018.Intl'\n | 'ES2018.Promise'\n | 'ES2018.Regexp'\n | 'ES2019'\n | 'ES2019.Array'\n | 'ES2019.Intl'\n | 'ES2019.Object'\n | 'ES2019.String'\n | 'ES2019.Symbol'\n | 'ES2020'\n | 'ES2020.BigInt'\n | 'ES2020.Promise'\n | 'ES2020.String'\n | 'ES2020.Symbol.WellKnown'\n | 'ESNext'\n | 'ESNext.Array'\n | 'ESNext.AsyncIterable'\n | 'ESNext.BigInt'\n | 'ESNext.Collection'\n | 'ESNext.Intl'\n | 'ESNext.Iterator'\n | 'ESNext.Object'\n | 'ESNext.Promise'\n | 'ESNext.Regexp'\n | 'ESNext.String'\n | 'ESNext.Symbol'\n | 'DOM'\n | 'DOM.AsyncIterable'\n | 'DOM.Iterable'\n | 'ScriptHost'\n | 'WebWorker'\n | 'WebWorker.AsyncIterable'\n | 'WebWorker.ImportScripts'\n | 'Webworker.Iterable'\n | 'ES7'\n | 'ES2021'\n | 'ES2020.SharedMemory'\n | 'ES2020.Intl'\n | 'ES2020.Date'\n | 'ES2020.Number'\n | 'ES2021.Promise'\n | 'ES2021.String'\n | 'ES2021.WeakRef'\n | 'ESNext.WeakRef'\n | 'ES2021.Intl'\n | 'ES2022'\n | 'ES2022.Array'\n | 'ES2022.Error'\n | 'ES2022.Intl'\n | 'ES2022.Object'\n | 'ES2022.String'\n | 'ES2022.SharedMemory'\n | 'ES2022.RegExp'\n | 'ES2023'\n | 'ES2023.Array'\n | 'ES2024'\n | 'ES2024.ArrayBuffer'\n | 'ES2024.Collection'\n | 'ES2024.Object'\n | 'ES2024.Promise'\n | 'ES2024.Regexp'\n | 'ES2024.SharedMemory'\n | 'ES2024.String'\n | 'Decorators'\n | 'Decorators.Legacy'\n | 'ES2017.Date'\n | 'ES2023.Collection'\n | 'ESNext.Decorators'\n | 'ESNext.Disposable'\n )\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n ) &\n string)\n | ((\n | (\n | 'ES5'\n | 'ES6'\n | 'ES2015'\n | 'ES2015.Collection'\n | 'ES2015.Core'\n | 'ES2015.Generator'\n | 'ES2015.Iterable'\n | 'ES2015.Promise'\n | 'ES2015.Proxy'\n | 'ES2015.Reflect'\n | 'ES2015.Symbol.WellKnown'\n | 'ES2015.Symbol'\n | 'ES2016'\n | 'ES2016.Array.Include'\n | 'ES2017'\n | 'ES2017.Intl'\n | 'ES2017.Object'\n | 'ES2017.SharedMemory'\n | 'ES2017.String'\n | 'ES2017.TypedArrays'\n | 'ES2017.ArrayBuffer'\n | 'ES2018'\n | 'ES2018.AsyncGenerator'\n | 'ES2018.AsyncIterable'\n | 'ES2018.Intl'\n | 'ES2018.Promise'\n | 'ES2018.Regexp'\n | 'ES2019'\n | 'ES2019.Array'\n | 'ES2019.Intl'\n | 'ES2019.Object'\n | 'ES2019.String'\n | 'ES2019.Symbol'\n | 'ES2020'\n | 'ES2020.BigInt'\n | 'ES2020.Promise'\n | 'ES2020.String'\n | 'ES2020.Symbol.WellKnown'\n | 'ESNext'\n | 'ESNext.Array'\n | 'ESNext.AsyncIterable'\n | 'ESNext.BigInt'\n | 'ESNext.Collection'\n | 'ESNext.Intl'\n | 'ESNext.Iterator'\n | 'ESNext.Object'\n | 'ESNext.Promise'\n | 'ESNext.Regexp'\n | 'ESNext.String'\n | 'ESNext.Symbol'\n | 'DOM'\n | 'DOM.AsyncIterable'\n | 'DOM.Iterable'\n | 'ScriptHost'\n | 'WebWorker'\n | 'WebWorker.AsyncIterable'\n | 'WebWorker.ImportScripts'\n | 'Webworker.Iterable'\n | 'ES7'\n | 'ES2021'\n | 'ES2020.SharedMemory'\n | 'ES2020.Intl'\n | 'ES2020.Date'\n | 'ES2020.Number'\n | 'ES2021.Promise'\n | 'ES2021.String'\n | 'ES2021.WeakRef'\n | 'ESNext.WeakRef'\n | 'ES2021.Intl'\n | 'ES2022'\n | 'ES2022.Array'\n | 'ES2022.Error'\n | 'ES2022.Intl'\n | 'ES2022.Object'\n | 'ES2022.String'\n | 'ES2022.SharedMemory'\n | 'ES2022.RegExp'\n | 'ES2023'\n | 'ES2023.Array'\n | 'ES2024'\n | 'ES2024.ArrayBuffer'\n | 'ES2024.Collection'\n | 'ES2024.Object'\n | 'ES2024.Promise'\n | 'ES2024.Regexp'\n | 'ES2024.SharedMemory'\n | 'ES2024.String'\n | 'Decorators'\n | 'Decorators.Legacy'\n | 'ES2017.Date'\n | 'ES2023.Collection'\n | 'ESNext.Decorators'\n | 'ESNext.Disposable'\n )\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n | {\n [k: string]: unknown;\n }\n ) &\n null)\n ))[]\n | null;\n /**\n * Enable lib replacement.\n */\n libReplacement?: boolean | null;\n /**\n * Specify how TypeScript determine a file as module.\n */\n moduleDetection?: 'auto' | 'legacy' | 'force';\n /**\n * When type checking, take into account `null` and `undefined`.\n */\n strictNullChecks?: boolean | null;\n /**\n * Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`.\n */\n maxNodeModuleJsDepth?: number | null;\n /**\n * Allow importing helper functions from tslib once per project, instead of including them per-file.\n */\n importHelpers?: boolean | null;\n /**\n * Specify emit/checking behavior for imports that are only used for types.\n */\n importsNotUsedAsValues?: 'remove' | 'preserve' | 'error';\n /**\n * Ensure 'use strict' is always emitted.\n */\n alwaysStrict?: boolean | null;\n /**\n * Enable all strict type checking options.\n */\n strict?: boolean | null;\n /**\n * Check that the arguments for `bind`, `call`, and `apply` methods match the original function.\n */\n strictBindCallApply?: boolean | null;\n /**\n * Emit more compliant, but verbose and less performant JavaScript for iteration.\n */\n downlevelIteration?: boolean | null;\n /**\n * Enable error reporting in type-checked JavaScript files.\n */\n checkJs?: boolean | null;\n /**\n * When assigning functions, check to ensure parameters and the return values are subtype-compatible.\n */\n strictFunctionTypes?: boolean | null;\n /**\n * Check for class properties that are declared but not set in the constructor.\n */\n strictPropertyInitialization?: boolean | null;\n /**\n * Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility.\n */\n esModuleInterop?: boolean | null;\n /**\n * Allow accessing UMD globals from modules.\n */\n allowUmdGlobalAccess?: boolean | null;\n /**\n * Make keyof only return strings instead of string, numbers or symbols. Legacy option.\n */\n keyofStringsOnly?: boolean | null;\n /**\n * Emit ECMAScript-standard-compliant class fields.\n */\n useDefineForClassFields?: boolean | null;\n /**\n * Create sourcemaps for d.ts files.\n */\n declarationMap?: boolean | null;\n /**\n * Enable importing .json files\n */\n resolveJsonModule?: boolean | null;\n /**\n * Use the package.json 'exports' field when resolving package imports.\n */\n resolvePackageJsonExports?: boolean | null;\n /**\n * Use the package.json 'imports' field when resolving imports.\n */\n resolvePackageJsonImports?: boolean | null;\n /**\n * Have recompiles in '--incremental' and '--watch' assume that changes within a file will only affect files directly depending on it. Requires TypeScript version 3.8 or later.\n */\n assumeChangesOnlyAffectDirectDependencies?: boolean | null;\n /**\n * Output more detailed compiler performance information after building.\n */\n extendedDiagnostics?: boolean | null;\n /**\n * Print names of files that are part of the compilation and then stop processing.\n */\n listFilesOnly?: boolean | null;\n /**\n * Disable preferring source files instead of declaration files when referencing composite projects\n */\n disableSourceOfProjectReferenceRedirect?: boolean | null;\n /**\n * Opt a project out of multi-project reference checking when editing.\n */\n disableSolutionSearching?: boolean | null;\n /**\n * Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting.\n */\n verbatimModuleSyntax?: boolean | null;\n /**\n * Disable full type checking (only critical parse and emit errors will be reported)\n */\n noCheck?: boolean | null;\n /**\n * Require sufficient annotation on exports so other tools can trivially generate declaration files.\n */\n isolatedDeclarations?: boolean | null;\n /**\n * Check side effect imports.\n */\n noUncheckedSideEffectImports?: boolean | null;\n /**\n * Built-in iterators are instantiated with a 'TReturn' type of 'undefined' instead of 'any'.\n */\n strictBuiltinIteratorReturn?: boolean | null;\n [k: string]: unknown;\n } | null) &\n null)\n );\n /**\n * Emit output files into `.ts-node` directory.\n */\n emit?: boolean | null;\n /**\n * Enable native ESM support.\n *\n * For details, see https://typestrong.org/ts-node/docs/imports#native-ecmascript-modules\n */\n esm?: boolean | null;\n /**\n * Allows the usage of top level await in REPL.\n *\n * Uses node's implementation which accomplishes this with an AST syntax transformation.\n *\n * Enabled by default when tsconfig target is es2018 or above. Set to false to disable.\n *\n * **Note**: setting to `true` when tsconfig target is too low will throw an Error. Leave as `undefined`\n * to get default, automatic behavior.\n */\n experimentalReplAwait?: boolean | null;\n /**\n * Enable experimental features that re-map imports and require calls to support:\n * `baseUrl`, `paths`, `rootDirs`, `.js` to `.ts` file extension mappings,\n * `outDir` to `rootDir` mappings for composite projects and monorepos.\n *\n * For details, see https://github.com/TypeStrong/ts-node/issues/1514\n */\n experimentalResolver?: boolean | null;\n /**\n * Like node's `--experimental-specifier-resolution`, , but can also be set in your `tsconfig.json` for convenience.\n *\n * For details, see https://nodejs.org/dist/latest-v18.x/docs/api/esm.html#customizing-esm-specifier-resolution-algorithm\n */\n experimentalSpecifierResolution?: ('explicit' | 'node') | null;\n /**\n * Load \"files\" and \"include\" from `tsconfig.json` on startup.\n *\n * Default is to override `tsconfig.json` \"files\" and \"include\" to only include the entrypoint script.\n */\n files?: boolean | null;\n /**\n * Paths which should not be compiled.\n *\n * Each string in the array is converted to a regular expression via `new RegExp()` and tested against source paths prior to compilation.\n *\n * Source paths are normalized to posix-style separators, relative to the directory containing `tsconfig.json` or to cwd if no `tsconfig.json` is loaded.\n *\n * Default is to ignore all node_modules subdirectories.\n */\n ignore?: (string | null)[] | null;\n /**\n * Ignore TypeScript warnings by diagnostic code.\n */\n ignoreDiagnostics?: (string | number)[] | null;\n /**\n * Logs TypeScript errors to stderr instead of throwing exceptions.\n */\n logError?: boolean | null;\n moduleTypes?: TsNodeModuleTypes;\n /**\n * Re-order file extensions so that TypeScript imports are preferred.\n *\n * For example, when both `index.js` and `index.ts` exist, enabling this option causes `require('./index')` to resolve to `index.ts` instead of `index.js`\n */\n preferTsExts?: boolean | null;\n /**\n * Use pretty diagnostic formatter.\n */\n pretty?: boolean | null;\n /**\n * Modules to require, like node's `--require` flag.\n *\n * If specified in `tsconfig.json`, the modules will be resolved relative to the `tsconfig.json` file.\n *\n * If specified programmatically, each input string should be pre-resolved to an absolute path for\n * best results.\n */\n require?: (string | null)[] | null;\n /**\n * Scope compiler to files within `scopeDir`.\n */\n scope?: boolean | null;\n scopeDir?: string | null;\n /**\n * Skip ignore check, so that compilation will be attempted for all files with matching extensions.\n */\n skipIgnore?: boolean | null;\n /**\n * Transpile with swc instead of the TypeScript compiler, and skip typechecking.\n *\n * Equivalent to setting both `transpileOnly: true` and `transpiler: 'ts-node/transpilers/swc'`\n *\n * For complete instructions: https://typestrong.org/ts-node/docs/transpilers\n */\n swc?: boolean | null;\n /**\n * Use TypeScript's faster `transpileModule`.\n */\n transpileOnly?: boolean | null;\n /**\n * Specify a custom transpiler for use with transpileOnly\n */\n transpiler?:\n | (\n | [\n string | null,\n {\n [k: string]: unknown;\n } | null,\n ]\n | null\n )\n | (string | null);\n /**\n * **DEPRECATED** Specify type-check is enabled (e.g. `transpileOnly == false`).\n */\n typeCheck?: boolean | null;\n [k: string]: unknown;\n } | null;\n [k: string]: unknown;\n}\nexport interface FilesDefinition {\n /**\n * If no 'files' or 'include' property is present in a tsconfig.json, the compiler defaults to including all files in the containing directory and subdirectories except those specified by 'exclude'. When a 'files' property is specified, only those files and those specified by 'include' are included.\n */\n files?: (string | null)[] | null;\n [k: string]: unknown;\n}\nexport interface ExcludeDefinition {\n /**\n * Specifies a list of files to be excluded from compilation. The 'exclude' property only affects the files included via the 'include' property and not the 'files' property. Glob patterns require TypeScript version 2.0 or later.\n */\n exclude?: (string | null)[] | null;\n [k: string]: unknown;\n}\nexport interface IncludeDefinition {\n /**\n * Specifies a list of glob patterns that match files to be included in compilation. If no 'files' or 'include' property is present in a tsconfig.json, the compiler defaults to including all files in the containing directory and subdirectories except those specified by 'exclude'. Requires TypeScript version 2.0 or later.\n */\n include?: (string | null)[] | null;\n [k: string]: unknown;\n}\nexport interface ReferencesDefinition {\n /**\n * Referenced projects. Requires TypeScript version 3.0 or later.\n */\n references?:\n | ({\n /**\n * Path to referenced tsconfig or to folder containing tsconfig.\n */\n path?: string | null;\n [k: string]: unknown;\n } | null)[]\n | null;\n [k: string]: unknown;\n}\n"],"names":[],"mappings":"AAAA,kEAAkE;AAClE,4DAA4D"}
@@ -1,2 +0,0 @@
1
- import type { TSConfig } from './types.ts';
2
- export default function loadConfigSync(dir: string, name?: string): TSConfig;
@@ -1,2 +0,0 @@
1
- import type { TSConfig } from './types.ts';
2
- export default function loadConfigSync(dir: string, name?: string): TSConfig;
@@ -1,15 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", {
3
- value: true
4
- });
5
- Object.defineProperty(exports, "default", {
6
- enumerable: true,
7
- get: function() {
8
- return loadConfigSync;
9
- }
10
- });
11
- var _gettsconfigcompat = require("get-tsconfig-compat");
12
- function loadConfigSync(dir, name) {
13
- return (0, _gettsconfigcompat.getTsconfig)(dir, name);
14
- }
15
- /* CJS INTEROP */ if (exports.__esModule && exports.default) { try { Object.defineProperty(exports.default, '__esModule', { value: true }); for (var key in exports) { exports.default[key] = exports[key]; } } catch (_) {}; module.exports = exports.default; }
@@ -1 +0,0 @@
1
- {"version":3,"sources":["/Users/kevin/Dev/OpenSource/typescript/ts-swc-transform/src/loadConfigSync.ts"],"sourcesContent":["import { getTsconfig } from 'get-tsconfig-compat';\nimport type { TSConfig } from './types.ts';\n\nexport default function loadConfigSync(dir: string, name?: string): TSConfig {\n return getTsconfig(dir, name) as TSConfig;\n}\n"],"names":["loadConfigSync","dir","name","getTsconfig"],"mappings":";;;;+BAGA;;;eAAwBA;;;iCAHI;AAGb,SAASA,eAAeC,GAAW,EAAEC,IAAa;IAC/D,OAAOC,IAAAA,8BAAW,EAACF,KAAKC;AAC1B"}