diff --git a/.env.example b/.env.example index f96bede..9fa4155 100644 --- a/.env.example +++ b/.env.example @@ -6,3 +6,6 @@ GH_TOKEN=github_pat_token # Algolia Credentials ALGOLIA_APP_ID=app_id ALGOLIA_ADMIN_KEY=admin_key + +# Deno Deploy +DENO_KV_ACCESS_TOKEN=access_token diff --git a/.vscode/settings.json b/.vscode/settings.json index c724bd2..3519eed 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,17 @@ { "deno.enable": true, "deno.lint": true, + "deno.unstable": true, + "deno.enablePaths": [ + "./commands", + "./components", + "./islands", + "./routes", + "./state", + "./util", + "./build.ts", + "./main.ts" + ], "cSpell.words": [ "algoliasearch", "preact" diff --git a/commands/docs.ts b/commands/docs.ts index 7716a4c..6fa7735 100644 --- a/commands/docs.ts +++ b/commands/docs.ts @@ -6,13 +6,13 @@ */ import { Command } from "cliffy/command"; +import { load } from "std/dotenv/mod.ts"; import { extract } from "std/encoding/front_matter/yaml.ts"; import { kia } from "$util/cli.ts"; +import { clear, setDiagnostic, TSWHY_PROD_KV } from "$util/kv.ts"; import { log } from "$util/log.ts"; -import { stringify } from "$util/strings.ts"; import type { - DiagnosticData, DiagnosticFixData, DocCodeFixFrontMatter, DocCodeFrontMatter, @@ -22,15 +22,17 @@ const CODE_RE = /^(\d{4,5})\.md$/; const FIX_RE = /^(\d{4,5})_fix_(\d{2})\.md$/; export default new Command() - .description("Build documentation content.") - .action(async () => { + .description("Parse diagnostics and load them into the KV store.") + .option("-p, --prod", "Connect to the production KV store.") + .action(async ({ prod }) => { + log.step("Analyzing /docs..."); + log.group(); + await load({ export: true }); + const docs = new Set(); const docFixes = new Map(); let fixCount = 0; - log.step("Analyzing /docs..."); - log.group(); - for await (const entry of Deno.readDir("./docs")) { const codeMatch = CODE_RE.exec(entry.name); const fixMatch = FIX_RE.exec(entry.name); @@ -54,12 +56,15 @@ export default new Command() log.light(`located ${docs.size} diagnostic docs and ${fixCount} fixes.`); log.groupEnd(); - const all: DiagnosticData[] = []; - const index: Record = {}; - const tagIndex: Record = {}; - const writePromises: Promise[] = []; + const kv = await Deno.openKv(prod && TSWHY_PROD_KV); - kia.start("parsing"); + log.step("Clearing KV store..."); + await clear(kv); + + let remaining = docs.size; + log.step(`Loading KV store with ${remaining} diagnostics...`); + + kia.start(`parsing and loading`); for (const code of docs) { const codeText = `TS${code}`; const md = await Deno.readTextFile(`./docs/${code}.md`); @@ -68,15 +73,6 @@ export default new Command() body: documentation, attrs: { title, category, tags, related }, } = extract(md); - index[code] = title; - if (tags) { - for (const tag of tags) { - if (!(tag in tagIndex)) { - tagIndex[tag] = []; - } - tagIndex[tag].push(code); - } - } const fixIds = docFixes.get(code); let fixes: DiagnosticFixData[] | undefined; if (fixIds) { @@ -105,26 +101,17 @@ export default new Command() related, fixes, }; - writePromises.push( - Deno.writeTextFile(`./db/${code}.json`, stringify(diagnostic)), + await setDiagnostic(kv, diagnostic); + kia.set( + `loaded diagnostic ${diagnostic.codeText} (${remaining}/${docs.size}) `, ); - all.push(diagnostic); + remaining--; } catch (e) { log.error(`Problem processing error ${code}.`, e); } } - all.sort(({ code: a }, { code: b }) => a - b); - - kia.succeed("parsed."); - - log.step("Writing document db..."); + kia.succeed("loaded."); - await Promise.all([ - ...writePromises, - Deno.writeTextFile("./db/_all.json", stringify(all)), - Deno.writeTextFile("./db/_index.json", stringify(index)), - Deno.writeTextFile("./db/_tags.json", stringify(tagIndex)), - ]); log.step("Done."); }); diff --git a/commands/upload.ts b/commands/upload.ts index 9b1c80d..422862b 100644 --- a/commands/upload.ts +++ b/commands/upload.ts @@ -12,7 +12,7 @@ import { kia } from "$util/cli.ts"; import { log } from "$util/log.ts"; export default new Command() - .description("") + .description("Upload search records to Algolia.") .action(async () => { log.step("Updating search index..."); log.group(); diff --git a/db/1002.json b/db/1002.json deleted file mode 100644 index d39e4db..0000000 --- a/db/1002.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "code": 1002, - "codeText": "TS1002", - "title": "Unterminated string literal.", - "category": "error", - "documentation": "Occurs when there is an unterminated string literal somewhere. String literals\nmust be enclosed by single (`'`) or double (`\"`) quotes.\n\nOften, it caused by an attempt to use a string literal over multiple lines:\n\n```ts\nconst str = \"Here is some text\n that I want to break\n across multiple lines.\";\n```\n", - "tags": [ - "syntax-error", - "incomplete-code", - "strings" - ], - "related": [ - 1003 - ], - "fixes": [ - { - "title": "Multiple Lines", - "body": "If you are trying to break a string across multiple lines, you can use template\nliterals using the backtick (`` ` ``) instead:\n\n```ts\nconst str = `Here is some text\n that I want to break\n across multiple lines.`;\n```\n\nOr you can use string concatenation:\n\n```ts\nconst str = \"Here is some text\" +\n \"that I want to break \" +\n \"across multiple lines.\";\n```\n\nOr you can use a backslash (`\\`) at the end of the line:\n\n```ts\nconst str = \"Here is some text \\\n that I want to break \\\n across multiple lines.\";\n```\n" - } - ] -} diff --git a/db/1003.json b/db/1003.json deleted file mode 100644 index 9d97171..0000000 --- a/db/1003.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "code": 1003, - "codeText": "TS1003", - "title": "Identifier expected.", - "category": "error", - "documentation": "", - "tags": [ - "syntax-error", - "incomplete-code" - ], - "related": [ - 1002 - ] -} diff --git a/db/1005.json b/db/1005.json deleted file mode 100644 index 9eac98d..0000000 --- a/db/1005.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "code": 1005, - "codeText": "TS1005", - "title": "'{0}' expected.", - "category": "error", - "documentation": "Occurs when various syntax characters are making the code invalid.\n", - "tags": [ - "syntax-error", - "incomplete-code" - ], - "related": [ - 1002 - ], - "fixes": [ - { - "title": "'=' expected with type aliases", - "body": "Unlike interfaces, type aliases must have a left hand side and right hand side\nof a statement, so code like this is invalid syntax:\n\n```ts\ntype Person {\n age: number;\n name: string;\n}\n```\n\nInstead it should look like this:\n\n```ts\ntype Person = {\n age: number;\n name: string;\n};\n```\n" - }, - { - "title": "';' expected with arrow functions", - "body": "Code like this is trying to implicitly return an object with the map function,\nbut is actually invalid syntax:\n\n```ts\nconst items = [[\"a\", 1], [\"b\", 2]];\nconst mapped = items.map(([key, value]) => { [key]: value });\n```\n\nInstead, use parenthesis (`()`) around the return value:\n\n```ts\nconst items = [[\"a\", 1], [\"b\", 2]];\nconst mapped = items.map(([key, value]) => ({ [key]: value }));\n```\n" - } - ] -} diff --git a/db/1006.json b/db/1006.json deleted file mode 100644 index b3e3054..0000000 --- a/db/1006.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "code": 1006, - "codeText": "TS1006", - "title": "A file cannot have a reference to itself.", - "category": "error", - "documentation": "When using\n[Triple-Slash Directives](https://www.typescriptlang.org/docs/handbook/triple-slash-directives.html),\nif a file references itself, this error will appear.\n\n**test.ts**\n\n```ts\n/// \n```\n", - "tags": [ - "triple-slash" - ], - "fixes": [ - { - "title": "Remove the reference", - "body": "To fix the issue, just remove the reference. It is unnecessary as you can\nalready access everything in the file.\n" - } - ] -} diff --git a/db/1007.json b/db/1007.json deleted file mode 100644 index fb2e665..0000000 --- a/db/1007.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1007, - "codeText": "TS1007", - "title": "The parser expected to find a '{1}' to match the '{0}' token here.", - "category": "error", - "documentation": "" -} diff --git a/db/1009.json b/db/1009.json deleted file mode 100644 index 168c7ee..0000000 --- a/db/1009.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "code": 1009, - "codeText": "TS1009", - "title": "Trailing comma not allowed.", - "category": "error", - "documentation": "If an inheritance clause (`extends` or `implements`) has a trailing comma, this\nerror is reported:\n\n```ts\ninterface A {}\n\nclass B implements A {\n}\n```\n", - "tags": [ - "trailing-comma", - "syntax-error" - ], - "fixes": [ - { - "title": "Remove trailing comma", - "body": "Remove the trailing comma:\n\n```ts\ninterface A {}\n\nclass B implements A {\n}\n```\n" - } - ] -} diff --git a/db/1010.json b/db/1010.json deleted file mode 100644 index 18425cf..0000000 --- a/db/1010.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "code": 1010, - "codeText": "TS1010", - "title": "'*/' expected.", - "category": "error", - "documentation": "Occurs when a block comment is not properly terminated before the end of the\nfile is reached:\n\n```ts\n/**\n * Comment text\n *\nfunction test() {}\n```\n", - "tags": [ - "syntax-error", - "incomplete-code" - ], - "fixes": [ - { - "title": "Terminate block comment", - "body": "Properly terminate the block comment:\n\n```ts\n/**\n * Comment text\n */\nfunction test() {}\n```\n" - } - ] -} diff --git a/db/1011.json b/db/1011.json deleted file mode 100644 index 2f3d0b1..0000000 --- a/db/1011.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "code": 1011, - "codeText": "TS1011", - "title": "An element access expression should take an argument.", - "category": "error", - "documentation": "When accessing a property of an array or object with bracket notation, you will\nget this error if no property is supplied.\n\n```ts\nconst a = [1, 2, 3]\nconst b = a[]\n\n// or\nconst c = { d: 4 }\nconst d = c[]\n```\n", - "tags": [ - "syntax-error", - "missing-code" - ], - "fixes": [ - { - "title": "Provide an index argument", - "body": "To fix the error, provide an index or property:\n\n```ts\nconst a = [1, 2, 3];\nconst b = a[1];\n\n// or\nconst c = { d: 4 };\nconst d = c[\"d\"];\n```\n" - } - ] -} diff --git a/db/1012.json b/db/1012.json deleted file mode 100644 index 933ac4f..0000000 --- a/db/1012.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1012, - "codeText": "TS1012", - "title": "Unexpected token.", - "category": "error", - "documentation": "" -} diff --git a/db/1013.json b/db/1013.json deleted file mode 100644 index 7003399..0000000 --- a/db/1013.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "code": 1013, - "codeText": "TS1013", - "title": "A rest parameter or binding pattern may not have a trailing comma.", - "category": "error", - "documentation": "If a function uses destructuring to consume the last argument in a function or\nhas a rest argument, the argument may not have a trailing comma.\n\n```ts\nfunction test(...args: any[]) {}\n```\n", - "tags": [ - "syntax-error", - "tailing-comma" - ], - "related": [ - 1014 - ], - "fixes": [ - { - "title": "Remove trailing comma", - "body": "To fix the error, remove the trailing comma:\n\n```ts\nfunction test(...args: any[]) {}\n```\n" - } - ] -} diff --git a/db/1014.json b/db/1014.json deleted file mode 100644 index 7571a86..0000000 --- a/db/1014.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "code": 1014, - "codeText": "TS1014", - "title": "A rest parameter must be last in a parameter list.", - "category": "error", - "documentation": "It is not possible to have multiple rest parameters, or have rest parameters\nbefore regular parameters since they consume all other arguments.\n\n```ts\nfunction printf(...args: any[], format: string) {}\n// or\nfunction callMany(\n ...functions: ((...args: T[]) => void)[],\n ...args: T\n) {}\n```\n", - "tags": [ - "syntax-error" - ], - "related": [ - 1013 - ], - "fixes": [ - { - "title": "Move rest parameter to the end", - "body": "Consider moving the rest parameter to the end:\n\n```ts\nfunction printf(format: string, ...args: any[]) {}\n```\n" - }, - { - "title": "Accept an array", - "body": "Consider accepting an array of arguments:\n\n```ts\nfunction printf(args: any[], format: string) {}\n\nfunction callMany(\n functions: ((...args: T[]) => void)[],\n ...args: T\n) {}\n```\n" - } - ] -} diff --git a/db/1015.json b/db/1015.json deleted file mode 100644 index 4424d14..0000000 --- a/db/1015.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "code": 1015, - "codeText": "TS1015", - "title": "Parameter cannot have question mark and initializer.", - "category": "error", - "documentation": "If a parameter is marked as optional with `?`, it means that passing `undefined`\nis acceptable. If a parameter is marked as optional by providing an initializer,\nit communicates to readers that if not provided (or set to `undefined`) the\ndefault will be used. It doesn't make sense to use both modifiers.\n\n```ts\nfunction test(a?: number = 0) {}\n```\n", - "tags": [ - "syntax-error" - ], - "related": [ - 1016 - ], - "fixes": [ - { - "title": "Remove the question mark or the initializer", - "body": "Remove the question mark if the default better communicates your intent, or\nremove the initializer:\n\n```ts\nfunction test(a: number = 0) {}\n// or\nfunction test(a?: number) {}\n```\n" - } - ] -} diff --git a/db/1016.json b/db/1016.json deleted file mode 100644 index d2f2ca6..0000000 --- a/db/1016.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "code": 1016, - "codeText": "TS1016", - "title": "A required parameter cannot follow an optional parameter.", - "category": "error", - "documentation": "When a parameter is marked as optional with ? it indicates that callers can omit\nthe argument when calling the function. If another parameter is required after\nthe optional parameter, the ? would be effectively invalidated since users must\npass the argument in order to provide the later required argument.\n\n```ts\nfunction test(a?: number, b: number) {}\n```\n", - "tags": [ - "syntax-error" - ], - "related": [ - 1015 - ], - "fixes": [ - { - "title": "Allow the argument to be undefined.", - "body": "Explicitly union the first argument with undefined and omit the question mark:\n\n```ts\nfunction test(a: number | undefined, b: number) {}\n```\n" - }, - { - "title": "Re-order parameters", - "body": "Reorder the parameters so that required parameters appear before the optional\nones:\n\n```ts\nfunction test(b: number, a?: number) {}\n```\n" - } - ] -} diff --git a/db/1017.json b/db/1017.json deleted file mode 100644 index 986f7a5..0000000 --- a/db/1017.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "code": 1017, - "codeText": "TS1017", - "title": "An index signature cannot have a rest parameter.", - "category": "error", - "documentation": "When writing an index signature, there must be exactly one parameter which is\nnot a rest parameter:\n\n```ts\ninterface A {\n [...index: string]: boolean;\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Remove the ellipsis.", - "body": "To fix the error, just remove the ellipsis token (`...`):\n\n```ts\ninterface A {\n [index: string]: boolean;\n}\n```\n\nIf you meant to state that the describes a function, use parenthesis rather than\nbrackets:\n\n```ts\ninterface A {\n (...args: string[]): boolean;\n}\n```\n" - } - ] -} diff --git a/db/1018.json b/db/1018.json deleted file mode 100644 index afa8eb3..0000000 --- a/db/1018.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "code": 1018, - "codeText": "TS1018", - "title": "An index signature parameter cannot have an accessibility modifier.", - "category": "error", - "documentation": "Unlike regular function parameters, index signature parameters cannot have an\naccessibility modifier:\n\n```ts\ninterface A {\n [private index: string]: boolean;\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Remove accessability modifier.", - "body": "To fix the error, just remove the accessibility modifier:\n\n```ts\ninterface A {\n [index: string]: boolean;\n}\n```\n" - } - ] -} diff --git a/db/1019.json b/db/1019.json deleted file mode 100644 index 4467452..0000000 --- a/db/1019.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "code": 1019, - "codeText": "TS1019", - "title": "An index signature parameter cannot have a question mark.", - "category": "error", - "documentation": "Unlike regular function parameters, index signature parameters cannot be marked\noptional. The parameter will always exist when determining the type:\n\n```ts\ninterface A {\n [index?: string]: boolean;\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Remove the question mark token.", - "body": "To fix the error, just remove the `?` token:\n\n```ts\ninterface A {\n [index: string]: boolean;\n}\n```\n" - } - ] -} diff --git a/db/1020.json b/db/1020.json deleted file mode 100644 index e73084b..0000000 --- a/db/1020.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1020, - "codeText": "TS1020", - "title": "An index signature parameter cannot have an initializer.", - "category": "error", - "documentation": "" -} diff --git a/db/1021.json b/db/1021.json deleted file mode 100644 index 242b154..0000000 --- a/db/1021.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "code": 1021, - "codeText": "TS1021", - "title": "An index signature must have a type annotation.", - "category": "error", - "documentation": "When defining an index signature, the signature must provide a type:\n\n```\ninterface A {\n [a: string]\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Provide a type.", - "body": "To fix the error, provide a type. All other properties on the object must be\nassignable to this type:\n\n```ts\ninterface A {\n [a: string]: string;\n}\n```\n" - } - ] -} diff --git a/db/1022.json b/db/1022.json deleted file mode 100644 index c5e06ee..0000000 --- a/db/1022.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1022, - "codeText": "TS1022", - "title": "An index signature parameter must have a type annotation.", - "category": "error", - "documentation": "" -} diff --git a/db/1024.json b/db/1024.json deleted file mode 100644 index c7d9116..0000000 --- a/db/1024.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "code": 1024, - "codeText": "TS1024", - "title": "'readonly' modifier can only appear on a property declaration or index signature.", - "category": "error", - "documentation": "It is not possible to mark all properties as `readonly` by marking the container\nas `readonly`:\n\n```ts\nreadonly class A {\n static x = 1;\n}\nreadonly const a = { a: 1 };\n```\n\n## See also\n\n- [TypeScript 3.4 release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-3-4/)\n- [`as const` proposal](https://github.com/Microsoft/TypeScript/issues/26979)\n", - "fixes": [ - { - "title": "Remove readonly keyword.", - "body": "To fix the error, move the `readonly` declaration into the object for classes:\n\n```ts\nclass A {\n static readonly x = 1;\n}\n```\n" - }, - { - "title": "Use const keyword.", - "body": "For objects, you can use const assertions to deeply mark the object as read\nonly.\n\n```ts\nconst a = { a: 1 } as const;\n```\n" - } - ] -} diff --git a/db/1025.json b/db/1025.json deleted file mode 100644 index fc8050f..0000000 --- a/db/1025.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1025, - "codeText": "TS1025", - "title": "An index signature cannot have a trailing comma.", - "category": "error", - "documentation": "" -} diff --git a/db/1028.json b/db/1028.json deleted file mode 100644 index 9d68435..0000000 --- a/db/1028.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "code": 1028, - "codeText": "TS1028", - "title": "Accessibility modifier already seen.", - "category": "error", - "documentation": "Members of a class can only have one accessibility modifier. If multiple are\nfound, this error will occur.\n\n```ts\nclass A {\n private public x!: number\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Remove duplicate modifier.", - "body": "To fix the error, remove one of the modifiers:\n\n```ts\nclass A {\n private x!: number;\n}\n```\n" - } - ] -} diff --git a/db/1029.json b/db/1029.json deleted file mode 100644 index 3e05784..0000000 --- a/db/1029.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "code": 1029, - "codeText": "TS1029", - "title": "'{0}' modifier must precede '{1}' modifier.", - "category": "error", - "documentation": "Some modifiers must be placed in a specific order. For example the following is\ninvalid:\n\n```ts\nasync export function test() {\n return 1;\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Swap the order of the modifiers.", - "body": "Swap the order of the indicated modifiers:\n\n```ts\nexport async function test() {\n return 1;\n}\n```\n" - } - ] -} diff --git a/db/1030.json b/db/1030.json deleted file mode 100644 index e4bd99f..0000000 --- a/db/1030.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "code": 1030, - "codeText": "TS1030", - "title": "'{0}' modifier already seen.", - "category": "error", - "documentation": "Modifiers can only appear once per property. If a modifier is repeated, an error\nwill be shown:\n\n```ts\nclass A {\n readonly readonly x: string;\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Remove duplicated modifier.", - "body": "Remove the duplicated modifier:\n\n```ts\nclass A {\n readonly x: string;\n}\n```\n" - } - ] -} diff --git a/db/1031.json b/db/1031.json deleted file mode 100644 index ac62676..0000000 --- a/db/1031.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "code": 1031, - "codeText": "TS1031", - "title": "'{0}' modifier cannot appear on class elements of this kind.", - "category": "error", - "documentation": "Some modifiers don't make sense when applied to class elements:\n\n```ts\nclass A {\n declare a!: string;\n export b!: string;\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Remove invalid modifiers.", - "body": "Remove the invalid modifiers:\n\n```ts\nclass A {\n a!: string;\n b!: string;\n}\n```\n" - } - ] -} diff --git a/db/1034.json b/db/1034.json deleted file mode 100644 index de086ab..0000000 --- a/db/1034.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "code": 1034, - "codeText": "TS1034", - "title": "'super' must be followed by an argument list or member access.", - "category": "error", - "documentation": "When super appears in a derived class, it must be used, not just left as an\nempty statement:\n\n```ts\nclass Base {\n method() {\n console.log(\"Base#method\");\n }\n}\n\nclass A extends Base {\n method() {\n super; // Error\n }\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Invoke super as a function.", - "body": "Utilize `super()` in the method:\n\n```ts\nclass Base {\n method() {\n console.log(\"Base#method\");\n }\n}\n\nclass A extends Base {\n method() {\n super();\n }\n}\n```\n" - }, - { - "title": "Access a property of super.", - "body": "Access some property of the ancestor:\n\n```ts\nclass Base {\n prop = \"prop\";\n}\n\nclass A extends Base {\n constructor() {\n console.log(super.prop);\n }\n}\n```\n" - } - ] -} diff --git a/db/1035.json b/db/1035.json deleted file mode 100644 index ba53ce4..0000000 --- a/db/1035.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "code": 1035, - "codeText": "TS1035", - "title": "Only ambient modules can use quoted names.", - "category": "error", - "documentation": "When defining a module that can be imported via the `module` keyword, it must be\ndeclared as an ambient module. The following is an error:\n\n```ts\nmodule \"some-npm-module\" {\n export function run();\n}\n```\n", - "tags": [ - "syntax-error", - "typescript-only", - "declarations" - ], - "related": [ - 1039 - ], - "fixes": [ - { - "title": "Use the declare keyword.", - "body": "Utilize the `declare` keyword before the `module` keyword:\n\n```ts\ndeclare module \"some-npm-module\" {\n export function run();\n}\n```\n" - } - ] -} diff --git a/db/1036.json b/db/1036.json deleted file mode 100644 index 619be53..0000000 --- a/db/1036.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "code": 1036, - "codeText": "TS1036", - "title": "Statements are not allowed in ambient contexts.", - "category": "error", - "documentation": "When defining the shape of a module that is just a declaration, statements\naren't allowed as the represent \"functional\" code versus the \"shape\" of the\nmodule. For example the following is an error:\n\n```ts\ndeclare module \"some-npm-module\" {\n export const a = 1;\n a; // Error\n}\n```\n", - "tags": [ - "syntax-error", - "typescript-only", - "declarations" - ], - "fixes": [ - { - "title": "Remove statements.", - "body": "Remove any statements:\n\n```ts\ndeclare module \"some-npm-module\" {\n export const a = 1;\n}\n```\n" - } - ] -} diff --git a/db/1038.json b/db/1038.json deleted file mode 100644 index 0701420..0000000 --- a/db/1038.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "code": 1038, - "codeText": "TS1038", - "title": "A 'declare' modifier cannot be used in an already ambient context.", - "category": "error", - "documentation": "When defining the shape of a module in a declaration file, all definitions\nwithin the declared module are already ambient, so they do not need the declare\nattribute:\n\n```ts\ndeclare module \"some-npm-module\" {\n export declare const a: number;\n}\n```\n", - "tags": [ - "syntax-error", - "typescript-only", - "declarations" - ], - "fixes": [ - { - "title": "Remove declare keyword.", - "body": "Remove the unnecessary `declare` keyword:\n\n```ts\ndeclare module \"some-npm-module\" {\n export const a: number;\n}\n```\n" - } - ] -} diff --git a/db/1039.json b/db/1039.json deleted file mode 100644 index aacc003..0000000 --- a/db/1039.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "code": 1039, - "codeText": "TS1039", - "title": "Initializers are not allowed in ambient contexts.", - "category": "error", - "documentation": "Initializers represent functional code and are invalid in declarations:\n\n```ts\ndeclare module \"some-npm-module\" {\n export let a = 1;\n // ^^^ Error\n}\n```\n", - "tags": [ - "syntax-error", - "typescript-only", - "declarations" - ], - "related": [ - 1035 - ], - "fixes": [ - { - "title": "Replace with type definition.", - "body": "Replace the initializer with an appropriate type definition:\n\n```ts\ndeclare module \"some-npm-module\" {\n export let a: number;\n}\n```\n" - } - ] -} diff --git a/db/1040.json b/db/1040.json deleted file mode 100644 index e1bbd11..0000000 --- a/db/1040.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "code": 1040, - "codeText": "TS1040", - "title": "'{0}' modifier cannot be used in an ambient context.", - "category": "error", - "documentation": "The `async` keyword only impacts implementation code and therefore isn't valid\nin an ambient/declaration context. Therefore the following is an error:\n\n```ts\ndeclare module \"some-npm-module\" {\n export async function test(): Promise;\n // ^^^^^ Error\n}\n```\n", - "tags": [ - "syntax-error", - "typescript-only", - "declarations" - ], - "related": [ - 1042 - ], - "fixes": [ - { - "title": "Remove async keyword.", - "body": "Remove the async keyword:\n\n```ts\ndeclare module \"some-npm-module\" {\n export function test(): Promise;\n}\n```\n" - } - ] -} diff --git a/db/1042.json b/db/1042.json deleted file mode 100644 index 2008265..0000000 --- a/db/1042.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "code": 1042, - "codeText": "TS1042", - "title": "'{0}' modifier cannot be used here.", - "category": "error", - "documentation": "Certain modifiers cannot be used in certain positions, for example, the `async`\nmodifier cannot be used in a leading space on a class field:\n\n```ts\nclass A {\n async prop!: () => Promise;\n async prop2 = () => \"string\";\n}\n```\n", - "tags": [ - "syntax-error" - ], - "related": [ - 1040 - ], - "fixes": [ - { - "title": "Move modifier to a valid location.", - "body": "Remove the `async` modifier, or move it to the value instead of the property:\n\n```ts\nclass A {\n prop!: () => Promise;\n prop2 = async () => \"string\";\n}\n```\n" - } - ] -} diff --git a/db/1044.json b/db/1044.json deleted file mode 100644 index cb7b9c4..0000000 --- a/db/1044.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "code": 1044, - "codeText": "TS1044", - "title": "'{0}' modifier cannot appear on a module or namespace element.", - "category": "error", - "documentation": "Most modifiers cannot be applied to members in a namespace or ambient module. If\nyou try to add them, you will get an error.\n\n```ts\nnamespace A {\n static const a = 1;\n private const b = 2;\n protected const c = 3;\n private const d = 4;\n}\n```\n", - "tags": [ - "syntax-error", - "typescript-only", - "declarations" - ], - "fixes": [ - { - "title": "Remove invalid modifiers.", - "body": "Remove invalid modifiers:\n\n```ts\nnamespace A {\n const a = 1;\n const b = 2;\n const c = 3;\n const d = 4;\n}\n```\n" - } - ] -} diff --git a/db/1046.json b/db/1046.json deleted file mode 100644 index 7528d2a..0000000 --- a/db/1046.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "code": 1046, - "codeText": "TS1046", - "title": "Top-level declarations in .d.ts files must start with either a 'declare' or 'export' modifier.", - "category": "error", - "documentation": "Declaration files (`.d.ts`) cannot contain implementation code, they can only\ndescribe the shape of a module. Therefore the following will cause this error:\n\n```ts\nconst a = 1;\n```\n", - "tags": [ - "syntax-error", - "typescript-only", - "declarations" - ], - "fixes": [ - { - "title": "Add 'declare' or 'export' to each top-level declaration.", - "body": "Ensure each top-level declaration uses the `declare` or `export` keyword:\n\n```ts\ndeclare const a: 1;\n```\n" - } - ] -} diff --git a/db/1047.json b/db/1047.json deleted file mode 100644 index 6f3b45d..0000000 --- a/db/1047.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "code": 1047, - "codeText": "TS1047", - "title": "A rest parameter cannot be optional.", - "category": "error", - "documentation": "Marking a parameter optional (`?`) indicates that it could be `undefined`, but\nwhen using the rest token (`...`) indicates that if there are no additional\narguments being passed, parameter will simply be set to an empty array.\nTherefore these tokens are incompatible:\n\n```ts\nfunction test(...args?: any[]) {}\n```\n", - "tags": [ - "syntax-error" - ], - "related": [ - 1048 - ], - "fixes": [ - { - "title": "Remove optional token.", - "body": "Remove the `?` token:\n\n```ts\nfunction test(...args: any[]) {}\n```\n" - } - ] -} diff --git a/db/1048.json b/db/1048.json deleted file mode 100644 index 9eeb9f3..0000000 --- a/db/1048.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "code": 1048, - "codeText": "TS1048", - "title": "A rest parameter cannot have an initializer.", - "category": "error", - "documentation": "Since rest parameters will always be defined, even if no arguments are passed to\nthe function or method, it doesn't make sense for them to have initializers:\n\n```ts\nfunction test(...args: number[] = [1, 2, 3]) {}\n```\n", - "tags": [ - "syntax-error" - ], - "related": [ - 1047 - ], - "fixes": [ - { - "title": "Move out or destructure with initializers.", - "body": "If you need the first few arguments to have initializers, you can move them out\nof the rest parameter or destructure the argument and default the first few\nmembers there.\n\n```ts\nfunction test(a = 1, b = 2, c = 3, ...rest: number[]) {}\n// or\nfunction test(...[a = 1, b = 2, c = 3, ...rest]: number[]) {}\n```\n" - } - ] -} diff --git a/db/1049.json b/db/1049.json deleted file mode 100644 index ba4f56b..0000000 --- a/db/1049.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "code": 1049, - "codeText": "TS1049", - "title": "A 'set' accessor must have exactly one parameter.", - "category": "error", - "documentation": "Since setter functions are called when assignment occurs, they can only accept\none value to set, so the following errors:\n\n```ts\nclass A {\n set value(a: number, b: number) {}\n}\n```\n", - "tags": [ - "accessors" - ], - "related": [ - 1051, - 1052, - 1053 - ], - "fixes": [ - { - "title": "Remove extra parameters.", - "body": "Remove any extra parameters:\n\n```ts\nclass A {\n set value(a: number) {}\n}\n```\n" - }, - { - "title": "Utilize a tuple.", - "body": "Utilize a tuple to combine values in a single parameter:\n\n```ts\nclass A {\n set value([a, b]: [number, number]) {}\n}\n```\n" - } - ] -} diff --git a/db/1051.json b/db/1051.json deleted file mode 100644 index 8a1fedd..0000000 --- a/db/1051.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "code": 1051, - "codeText": "TS1051", - "title": "A 'set' accessor cannot have an optional parameter.", - "category": "error", - "documentation": "A set accessor is only called when a value is being assigned and will always\nprovide a single value, which cannot be optional. Therefore the following is\ninvalid:\n\n```ts\nclass A {\n set value(a?: number) {}\n}\n```\n", - "tags": [ - "accessors" - ], - "related": [ - 1049, - 1052, - 1053 - ], - "fixes": [ - { - "title": "Remove the optional token.", - "body": "Remove the `?` token:\n\n```ts\nclass A {\n set value(a: number) {}\n}\n```\n\nIf you want to be able to be able to set the property to `undefined`, explicitly\nadd it to the type annotation:\n\n```ts\nclass A {\n set value(a: number | undefined) {}\n}\n```\n" - } - ] -} diff --git a/db/1052.json b/db/1052.json deleted file mode 100644 index 0220785..0000000 --- a/db/1052.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "code": 1052, - "codeText": "TS1052", - "title": "A 'set' accessor parameter cannot have an initializer.", - "category": "error", - "documentation": "A set accessor is only called when a value is being assigned and will always\nprovide a single value, which cannot be optional. Therefore the following is\ninvalid:\n\n```ts\nclass A {\n set value(a = 0) {}\n}\n```\n", - "tags": [ - "accessors" - ], - "related": [ - 1049, - 1051, - 1053 - ], - "fixes": [ - { - "title": "Remove the initializer.", - "body": "Remove the initializer:\n\n```ts\nclass A {\n set value(a: number) {}\n}\n```\n\nIf you want to be able to be able to have a default value when the property is\nset to `undefined`, add `undefined` to the type annotation and handle the\nbehavior in the implementation:\n\n```ts\nclass A {\n #a = 0;\n\n set value(a: number | undefined) {\n this.#a = a ?? 0;\n }\n}\n```\n" - } - ] -} diff --git a/db/1053.json b/db/1053.json deleted file mode 100644 index 847dd6f..0000000 --- a/db/1053.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "code": 1053, - "codeText": "TS1053", - "title": "A 'set' accessor cannot have rest parameter.", - "category": "error", - "documentation": "Set accessors only ever receive a single value when invoked, therefore a\nvariable number of arguments is not valid:\n\n```ts\nclass A {\n set value(...a: number[]) {}\n}\n```\n", - "tags": [ - "accessors" - ], - "related": [ - 1049, - 1051, - 1052 - ], - "fixes": [ - { - "title": "Remove the rest token.", - "body": "Remove the rest token (`...`):\n\n```ts\nclass A {\n set value(a: number) {}\n}\n```\n\nIf you are trying to accept multiple values, just use an array in the type\nannotation:\n\n```ts\nclass A {\n set value(a: number[]) {}\n}\n```\n" - } - ] -} diff --git a/db/1054.json b/db/1054.json deleted file mode 100644 index 38d2407..0000000 --- a/db/1054.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "code": 1054, - "codeText": "TS1054", - "title": "A 'get' accessor cannot have parameters.", - "category": "error", - "documentation": "Get accessors are called when a property is read, and therefore cannot take any\nparameters, so the following is invalid:\n\n```ts\nclass A {\n get value(cached: boolean) {}\n}\n```\n", - "tags": [ - "accessors" - ], - "fixes": [ - { - "title": "Remove parameters.", - "body": "Remove any parameters from the get accessor:\n\n```ts\nclass A {\n get value() {}\n}\n```\n\nIf you really need to provide additional information when getting a value, you\nshould just use a method:\n\n```ts\nclass A {\n getValue(cached: boolean) {}\n}\n```\n" - } - ] -} diff --git a/db/1055.json b/db/1055.json deleted file mode 100644 index 05d4a84..0000000 --- a/db/1055.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "code": 1055, - "codeText": "TS1055", - "title": "Type '{0}' is not a valid async function return type in ES5/ES3 because it does not refer to a Promise-compatible constructor value.", - "category": "error", - "documentation": "When targeting ES3 or ES5, async functions which try to declare a non-promise\nreturn type will throw this error:\n\n```ts\nclass A {\n async method(): number {\n return 1;\n }\n}\n```\n", - "tags": [ - "async" - ], - "related": [ - 1064 - ], - "fixes": [ - { - "title": "Use a promise return type.", - "body": "Change the return type to be a promise:\n\n```ts\nclass A {\n async method(): Promise {\n return 1;\n }\n}\n```\n" - } - ] -} diff --git a/db/1056.json b/db/1056.json deleted file mode 100644 index 772c58e..0000000 --- a/db/1056.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "code": 1056, - "codeText": "TS1056", - "title": "Accessors are only available when targeting ECMAScript 5 and higher.", - "category": "error", - "documentation": "When targeting ES3, `get` and `set` accessors were not supported and cannot be\ndown emitted, therefore they are unavailable and the follow will cause an error:\n\n```ts\nclass A {\n get value() {\n return 1;\n }\n}\n```\n", - "tags": [ - "down-emit" - ], - "fixes": [ - { - "title": "Target ES5 or later.", - "body": "Consider [targeting](https://www.typescriptlang.org/tsconfig#target) ES5 or\nlater.\n\nIf you still need to support older browsers (<= Internet Explorer 8) you will\nneed to rewrite your code to not use getters.\n" - } - ] -} diff --git a/db/1058.json b/db/1058.json deleted file mode 100644 index 508970b..0000000 --- a/db/1058.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1058, - "codeText": "TS1058", - "title": "The return type of an async function must either be a valid promise or must not contain a callable 'then' member.", - "category": "error", - "documentation": "" -} diff --git a/db/1059.json b/db/1059.json deleted file mode 100644 index 0dd1c4c..0000000 --- a/db/1059.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1059, - "codeText": "TS1059", - "title": "A promise must have a 'then' method.", - "category": "error", - "documentation": "" -} diff --git a/db/1060.json b/db/1060.json deleted file mode 100644 index 5795617..0000000 --- a/db/1060.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1060, - "codeText": "TS1060", - "title": "The first parameter of the 'then' method of a promise must be a callback.", - "category": "error", - "documentation": "" -} diff --git a/db/1061.json b/db/1061.json deleted file mode 100644 index da025c9..0000000 --- a/db/1061.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1061, - "codeText": "TS1061", - "title": "Enum member must have initializer.", - "category": "error", - "documentation": "" -} diff --git a/db/1062.json b/db/1062.json deleted file mode 100644 index 7f406b4..0000000 --- a/db/1062.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1062, - "codeText": "TS1062", - "title": "Type is referenced directly or indirectly in the fulfillment callback of its own 'then' method.", - "category": "error", - "documentation": "" -} diff --git a/db/1063.json b/db/1063.json deleted file mode 100644 index e2fc489..0000000 --- a/db/1063.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1063, - "codeText": "TS1063", - "title": "An export assignment cannot be used in a namespace.", - "category": "error", - "documentation": "" -} diff --git a/db/1064.json b/db/1064.json deleted file mode 100644 index 396d192..0000000 --- a/db/1064.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1064, - "codeText": "TS1064", - "title": "The return type of an async function or method must be the global Promise type. Did you mean to write 'Promise<{0}>'?", - "category": "error", - "documentation": "" -} diff --git a/db/1065.json b/db/1065.json deleted file mode 100644 index 6c3e2a8..0000000 --- a/db/1065.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1065, - "codeText": "TS1065", - "title": "The return type of an async function or method must be the global Promise type.", - "category": "error", - "documentation": "" -} diff --git a/db/1066.json b/db/1066.json deleted file mode 100644 index 39369a1..0000000 --- a/db/1066.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1066, - "codeText": "TS1066", - "title": "In ambient enum declarations member initializer must be constant expression.", - "category": "error", - "documentation": "" -} diff --git a/db/1068.json b/db/1068.json deleted file mode 100644 index f2624ce..0000000 --- a/db/1068.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1068, - "codeText": "TS1068", - "title": "Unexpected token. A constructor, method, accessor, or property was expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1069.json b/db/1069.json deleted file mode 100644 index df36078..0000000 --- a/db/1069.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1069, - "codeText": "TS1069", - "title": "Unexpected token. A type parameter name was expected without curly braces.", - "category": "error", - "documentation": "" -} diff --git a/db/1070.json b/db/1070.json deleted file mode 100644 index 940071c..0000000 --- a/db/1070.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1070, - "codeText": "TS1070", - "title": "'{0}' modifier cannot appear on a type member.", - "category": "error", - "documentation": "" -} diff --git a/db/1071.json b/db/1071.json deleted file mode 100644 index 36a22c8..0000000 --- a/db/1071.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1071, - "codeText": "TS1071", - "title": "'{0}' modifier cannot appear on an index signature.", - "category": "error", - "documentation": "" -} diff --git a/db/1079.json b/db/1079.json deleted file mode 100644 index f3c1925..0000000 --- a/db/1079.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1079, - "codeText": "TS1079", - "title": "A '{0}' modifier cannot be used with an import declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/1084.json b/db/1084.json deleted file mode 100644 index a8f0c18..0000000 --- a/db/1084.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1084, - "codeText": "TS1084", - "title": "Invalid 'reference' directive syntax.", - "category": "error", - "documentation": "" -} diff --git a/db/1085.json b/db/1085.json deleted file mode 100644 index 2023237..0000000 --- a/db/1085.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1085, - "codeText": "TS1085", - "title": "Octal literals are not available when targeting ECMAScript 5 and higher. Use the syntax '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/1089.json b/db/1089.json deleted file mode 100644 index 2379439..0000000 --- a/db/1089.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1089, - "codeText": "TS1089", - "title": "'{0}' modifier cannot appear on a constructor declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/1090.json b/db/1090.json deleted file mode 100644 index 24854b7..0000000 --- a/db/1090.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1090, - "codeText": "TS1090", - "title": "'{0}' modifier cannot appear on a parameter.", - "category": "error", - "documentation": "" -} diff --git a/db/1091.json b/db/1091.json deleted file mode 100644 index 09ea51f..0000000 --- a/db/1091.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1091, - "codeText": "TS1091", - "title": "Only a single variable declaration is allowed in a 'for...in' statement.", - "category": "error", - "documentation": "" -} diff --git a/db/1092.json b/db/1092.json deleted file mode 100644 index c6b32a3..0000000 --- a/db/1092.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1092, - "codeText": "TS1092", - "title": "Type parameters cannot appear on a constructor declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/1093.json b/db/1093.json deleted file mode 100644 index 9fa2100..0000000 --- a/db/1093.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1093, - "codeText": "TS1093", - "title": "Type annotation cannot appear on a constructor declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/1094.json b/db/1094.json deleted file mode 100644 index 70c0a16..0000000 --- a/db/1094.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1094, - "codeText": "TS1094", - "title": "An accessor cannot have type parameters.", - "category": "error", - "documentation": "" -} diff --git a/db/1095.json b/db/1095.json deleted file mode 100644 index 3e649ac..0000000 --- a/db/1095.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1095, - "codeText": "TS1095", - "title": "A 'set' accessor cannot have a return type annotation.", - "category": "error", - "documentation": "" -} diff --git a/db/1096.json b/db/1096.json deleted file mode 100644 index 5192d66..0000000 --- a/db/1096.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1096, - "codeText": "TS1096", - "title": "An index signature must have exactly one parameter.", - "category": "error", - "documentation": "" -} diff --git a/db/1097.json b/db/1097.json deleted file mode 100644 index 987eeb8..0000000 --- a/db/1097.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1097, - "codeText": "TS1097", - "title": "'{0}' list cannot be empty.", - "category": "error", - "documentation": "" -} diff --git a/db/1098.json b/db/1098.json deleted file mode 100644 index ced25c7..0000000 --- a/db/1098.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1098, - "codeText": "TS1098", - "title": "Type parameter list cannot be empty.", - "category": "error", - "documentation": "" -} diff --git a/db/1099.json b/db/1099.json deleted file mode 100644 index 578288d..0000000 --- a/db/1099.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1099, - "codeText": "TS1099", - "title": "Type argument list cannot be empty.", - "category": "error", - "documentation": "" -} diff --git a/db/1100.json b/db/1100.json deleted file mode 100644 index 860ac36..0000000 --- a/db/1100.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1100, - "codeText": "TS1100", - "title": "Invalid use of '{0}' in strict mode.", - "category": "error", - "documentation": "" -} diff --git a/db/1101.json b/db/1101.json deleted file mode 100644 index cb028f3..0000000 --- a/db/1101.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1101, - "codeText": "TS1101", - "title": "'with' statements are not allowed in strict mode.", - "category": "error", - "documentation": "" -} diff --git a/db/1102.json b/db/1102.json deleted file mode 100644 index 1356384..0000000 --- a/db/1102.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1102, - "codeText": "TS1102", - "title": "'delete' cannot be called on an identifier in strict mode.", - "category": "error", - "documentation": "" -} diff --git a/db/1103.json b/db/1103.json deleted file mode 100644 index 2be95fe..0000000 --- a/db/1103.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1103, - "codeText": "TS1103", - "title": "'for await' loops are only allowed within async functions and at the top levels of modules.", - "category": "error", - "documentation": "" -} diff --git a/db/1104.json b/db/1104.json deleted file mode 100644 index 116562f..0000000 --- a/db/1104.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1104, - "codeText": "TS1104", - "title": "A 'continue' statement can only be used within an enclosing iteration statement.", - "category": "error", - "documentation": "" -} diff --git a/db/1105.json b/db/1105.json deleted file mode 100644 index d62a3f9..0000000 --- a/db/1105.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1105, - "codeText": "TS1105", - "title": "A 'break' statement can only be used within an enclosing iteration or switch statement.", - "category": "error", - "documentation": "" -} diff --git a/db/1106.json b/db/1106.json deleted file mode 100644 index 96d07df..0000000 --- a/db/1106.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1106, - "codeText": "TS1106", - "title": "The left-hand side of a 'for...of' statement may not be 'async'.", - "category": "error", - "documentation": "" -} diff --git a/db/1107.json b/db/1107.json deleted file mode 100644 index 4c20ae5..0000000 --- a/db/1107.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1107, - "codeText": "TS1107", - "title": "Jump target cannot cross function boundary.", - "category": "error", - "documentation": "" -} diff --git a/db/1108.json b/db/1108.json deleted file mode 100644 index 698360e..0000000 --- a/db/1108.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1108, - "codeText": "TS1108", - "title": "A 'return' statement can only be used within a function body.", - "category": "error", - "documentation": "" -} diff --git a/db/1109.json b/db/1109.json deleted file mode 100644 index 727257b..0000000 --- a/db/1109.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1109, - "codeText": "TS1109", - "title": "Expression expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1110.json b/db/1110.json deleted file mode 100644 index 75f267e..0000000 --- a/db/1110.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1110, - "codeText": "TS1110", - "title": "Type expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1111.json b/db/1111.json deleted file mode 100644 index 5cc2a00..0000000 --- a/db/1111.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1111, - "codeText": "TS1111", - "title": "Private field '{0}' must be declared in an enclosing class.", - "category": "error", - "documentation": "" -} diff --git a/db/1113.json b/db/1113.json deleted file mode 100644 index 2d5b491..0000000 --- a/db/1113.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1113, - "codeText": "TS1113", - "title": "A 'default' clause cannot appear more than once in a 'switch' statement.", - "category": "error", - "documentation": "" -} diff --git a/db/1114.json b/db/1114.json deleted file mode 100644 index 220ee41..0000000 --- a/db/1114.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1114, - "codeText": "TS1114", - "title": "Duplicate label '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/1115.json b/db/1115.json deleted file mode 100644 index 0871ae2..0000000 --- a/db/1115.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1115, - "codeText": "TS1115", - "title": "A 'continue' statement can only jump to a label of an enclosing iteration statement.", - "category": "error", - "documentation": "" -} diff --git a/db/1116.json b/db/1116.json deleted file mode 100644 index 3a9f484..0000000 --- a/db/1116.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1116, - "codeText": "TS1116", - "title": "A 'break' statement can only jump to a label of an enclosing statement.", - "category": "error", - "documentation": "" -} diff --git a/db/1117.json b/db/1117.json deleted file mode 100644 index 5a03c47..0000000 --- a/db/1117.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1117, - "codeText": "TS1117", - "title": "An object literal cannot have multiple properties with the same name.", - "category": "error", - "documentation": "" -} diff --git a/db/1118.json b/db/1118.json deleted file mode 100644 index 72abd40..0000000 --- a/db/1118.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1118, - "codeText": "TS1118", - "title": "An object literal cannot have multiple get/set accessors with the same name.", - "category": "error", - "documentation": "" -} diff --git a/db/1119.json b/db/1119.json deleted file mode 100644 index 115d6be..0000000 --- a/db/1119.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1119, - "codeText": "TS1119", - "title": "An object literal cannot have property and accessor with the same name.", - "category": "error", - "documentation": "" -} diff --git a/db/1120.json b/db/1120.json deleted file mode 100644 index 54ae457..0000000 --- a/db/1120.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1120, - "codeText": "TS1120", - "title": "An export assignment cannot have modifiers.", - "category": "error", - "documentation": "" -} diff --git a/db/1121.json b/db/1121.json deleted file mode 100644 index 36be0c2..0000000 --- a/db/1121.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1121, - "codeText": "TS1121", - "title": "Octal literals are not allowed in strict mode.", - "category": "error", - "documentation": "" -} diff --git a/db/1123.json b/db/1123.json deleted file mode 100644 index 5e72e14..0000000 --- a/db/1123.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1123, - "codeText": "TS1123", - "title": "Variable declaration list cannot be empty.", - "category": "error", - "documentation": "" -} diff --git a/db/1124.json b/db/1124.json deleted file mode 100644 index 6c28846..0000000 --- a/db/1124.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1124, - "codeText": "TS1124", - "title": "Digit expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1125.json b/db/1125.json deleted file mode 100644 index 453759a..0000000 --- a/db/1125.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1125, - "codeText": "TS1125", - "title": "Hexadecimal digit expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1126.json b/db/1126.json deleted file mode 100644 index bbec8f1..0000000 --- a/db/1126.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1126, - "codeText": "TS1126", - "title": "Unexpected end of text.", - "category": "error", - "documentation": "" -} diff --git a/db/1127.json b/db/1127.json deleted file mode 100644 index 715a996..0000000 --- a/db/1127.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1127, - "codeText": "TS1127", - "title": "Invalid character.", - "category": "error", - "documentation": "" -} diff --git a/db/1128.json b/db/1128.json deleted file mode 100644 index 9811d6c..0000000 --- a/db/1128.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1128, - "codeText": "TS1128", - "title": "Declaration or statement expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1129.json b/db/1129.json deleted file mode 100644 index 4368aa3..0000000 --- a/db/1129.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1129, - "codeText": "TS1129", - "title": "Statement expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1130.json b/db/1130.json deleted file mode 100644 index dda630c..0000000 --- a/db/1130.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1130, - "codeText": "TS1130", - "title": "'case' or 'default' expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1131.json b/db/1131.json deleted file mode 100644 index 59462ff..0000000 --- a/db/1131.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1131, - "codeText": "TS1131", - "title": "Property or signature expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1132.json b/db/1132.json deleted file mode 100644 index b5e3e55..0000000 --- a/db/1132.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1132, - "codeText": "TS1132", - "title": "Enum member expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1134.json b/db/1134.json deleted file mode 100644 index 16881d3..0000000 --- a/db/1134.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1134, - "codeText": "TS1134", - "title": "Variable declaration expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1135.json b/db/1135.json deleted file mode 100644 index e95ff21..0000000 --- a/db/1135.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1135, - "codeText": "TS1135", - "title": "Argument expression expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1136.json b/db/1136.json deleted file mode 100644 index d0c8c81..0000000 --- a/db/1136.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1136, - "codeText": "TS1136", - "title": "Property assignment expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1137.json b/db/1137.json deleted file mode 100644 index c2b4c91..0000000 --- a/db/1137.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1137, - "codeText": "TS1137", - "title": "Expression or comma expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1138.json b/db/1138.json deleted file mode 100644 index 897135d..0000000 --- a/db/1138.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1138, - "codeText": "TS1138", - "title": "Parameter declaration expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1139.json b/db/1139.json deleted file mode 100644 index 1e021a8..0000000 --- a/db/1139.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1139, - "codeText": "TS1139", - "title": "Type parameter declaration expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1140.json b/db/1140.json deleted file mode 100644 index 6fb2b11..0000000 --- a/db/1140.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1140, - "codeText": "TS1140", - "title": "Type argument expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1141.json b/db/1141.json deleted file mode 100644 index 36a3080..0000000 --- a/db/1141.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1141, - "codeText": "TS1141", - "title": "String literal expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1142.json b/db/1142.json deleted file mode 100644 index 84fd3b7..0000000 --- a/db/1142.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1142, - "codeText": "TS1142", - "title": "Line break not permitted here.", - "category": "error", - "documentation": "" -} diff --git a/db/1144.json b/db/1144.json deleted file mode 100644 index 31b4d6f..0000000 --- a/db/1144.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1144, - "codeText": "TS1144", - "title": "'{' or ';' expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1145.json b/db/1145.json deleted file mode 100644 index 76997c3..0000000 --- a/db/1145.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1145, - "codeText": "TS1145", - "title": "'{' or JSX element expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1146.json b/db/1146.json deleted file mode 100644 index 3eba2ee..0000000 --- a/db/1146.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1146, - "codeText": "TS1146", - "title": "Declaration expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1147.json b/db/1147.json deleted file mode 100644 index 1b84511..0000000 --- a/db/1147.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1147, - "codeText": "TS1147", - "title": "Import declarations in a namespace cannot reference a module.", - "category": "error", - "documentation": "" -} diff --git a/db/1148.json b/db/1148.json deleted file mode 100644 index 59d0d1b..0000000 --- a/db/1148.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1148, - "codeText": "TS1148", - "title": "Cannot use imports, exports, or module augmentations when '--module' is 'none'.", - "category": "error", - "documentation": "" -} diff --git a/db/1149.json b/db/1149.json deleted file mode 100644 index 1073af7..0000000 --- a/db/1149.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1149, - "codeText": "TS1149", - "title": "File name '{0}' differs from already included file name '{1}' only in casing.", - "category": "error", - "documentation": "" -} diff --git a/db/1155.json b/db/1155.json deleted file mode 100644 index f82e7ed..0000000 --- a/db/1155.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1155, - "codeText": "TS1155", - "title": "'const' declarations must be initialized.", - "category": "error", - "documentation": "" -} diff --git a/db/1156.json b/db/1156.json deleted file mode 100644 index cde88a0..0000000 --- a/db/1156.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1156, - "codeText": "TS1156", - "title": "'const' declarations can only be declared inside a block.", - "category": "error", - "documentation": "" -} diff --git a/db/1157.json b/db/1157.json deleted file mode 100644 index fa1bbbd..0000000 --- a/db/1157.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1157, - "codeText": "TS1157", - "title": "'let' declarations can only be declared inside a block.", - "category": "error", - "documentation": "" -} diff --git a/db/1160.json b/db/1160.json deleted file mode 100644 index d843bb7..0000000 --- a/db/1160.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1160, - "codeText": "TS1160", - "title": "Unterminated template literal.", - "category": "error", - "documentation": "" -} diff --git a/db/1161.json b/db/1161.json deleted file mode 100644 index 411b1cc..0000000 --- a/db/1161.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1161, - "codeText": "TS1161", - "title": "Unterminated regular expression literal.", - "category": "error", - "documentation": "" -} diff --git a/db/1162.json b/db/1162.json deleted file mode 100644 index e6331d7..0000000 --- a/db/1162.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1162, - "codeText": "TS1162", - "title": "An object member cannot be declared optional.", - "category": "error", - "documentation": "" -} diff --git a/db/1163.json b/db/1163.json deleted file mode 100644 index 4d318c8..0000000 --- a/db/1163.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1163, - "codeText": "TS1163", - "title": "A 'yield' expression is only allowed in a generator body.", - "category": "error", - "documentation": "" -} diff --git a/db/1164.json b/db/1164.json deleted file mode 100644 index cac9582..0000000 --- a/db/1164.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1164, - "codeText": "TS1164", - "title": "Computed property names are not allowed in enums.", - "category": "error", - "documentation": "" -} diff --git a/db/1165.json b/db/1165.json deleted file mode 100644 index c7b12b8..0000000 --- a/db/1165.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1165, - "codeText": "TS1165", - "title": "A computed property name in an ambient context must refer to an expression whose type is a literal type or a 'unique symbol' type.", - "category": "error", - "documentation": "" -} diff --git a/db/1166.json b/db/1166.json deleted file mode 100644 index f6cf6eb..0000000 --- a/db/1166.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1166, - "codeText": "TS1166", - "title": "A computed property name in a class property declaration must have a simple literal type or a 'unique symbol' type.", - "category": "error", - "documentation": "" -} diff --git a/db/1168.json b/db/1168.json deleted file mode 100644 index 77cf27d..0000000 --- a/db/1168.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1168, - "codeText": "TS1168", - "title": "A computed property name in a method overload must refer to an expression whose type is a literal type or a 'unique symbol' type.", - "category": "error", - "documentation": "" -} diff --git a/db/1169.json b/db/1169.json deleted file mode 100644 index 9f5db2d..0000000 --- a/db/1169.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1169, - "codeText": "TS1169", - "title": "A computed property name in an interface must refer to an expression whose type is a literal type or a 'unique symbol' type.", - "category": "error", - "documentation": "" -} diff --git a/db/1170.json b/db/1170.json deleted file mode 100644 index 6bdde6b..0000000 --- a/db/1170.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1170, - "codeText": "TS1170", - "title": "A computed property name in a type literal must refer to an expression whose type is a literal type or a 'unique symbol' type.", - "category": "error", - "documentation": "" -} diff --git a/db/1171.json b/db/1171.json deleted file mode 100644 index 27345d8..0000000 --- a/db/1171.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1171, - "codeText": "TS1171", - "title": "A comma expression is not allowed in a computed property name.", - "category": "error", - "documentation": "" -} diff --git a/db/1172.json b/db/1172.json deleted file mode 100644 index f3b0e46..0000000 --- a/db/1172.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1172, - "codeText": "TS1172", - "title": "'extends' clause already seen.", - "category": "error", - "documentation": "" -} diff --git a/db/1173.json b/db/1173.json deleted file mode 100644 index c8bc9c6..0000000 --- a/db/1173.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1173, - "codeText": "TS1173", - "title": "'extends' clause must precede 'implements' clause.", - "category": "error", - "documentation": "" -} diff --git a/db/1174.json b/db/1174.json deleted file mode 100644 index f35b8ac..0000000 --- a/db/1174.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1174, - "codeText": "TS1174", - "title": "Classes can only extend a single class.", - "category": "error", - "documentation": "" -} diff --git a/db/1175.json b/db/1175.json deleted file mode 100644 index 4e2c935..0000000 --- a/db/1175.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1175, - "codeText": "TS1175", - "title": "'implements' clause already seen.", - "category": "error", - "documentation": "" -} diff --git a/db/1176.json b/db/1176.json deleted file mode 100644 index 8b7e641..0000000 --- a/db/1176.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1176, - "codeText": "TS1176", - "title": "Interface declaration cannot have 'implements' clause.", - "category": "error", - "documentation": "" -} diff --git a/db/1177.json b/db/1177.json deleted file mode 100644 index d47fea6..0000000 --- a/db/1177.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1177, - "codeText": "TS1177", - "title": "Binary digit expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1178.json b/db/1178.json deleted file mode 100644 index b4f6904..0000000 --- a/db/1178.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1178, - "codeText": "TS1178", - "title": "Octal digit expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1179.json b/db/1179.json deleted file mode 100644 index 264cab6..0000000 --- a/db/1179.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1179, - "codeText": "TS1179", - "title": "Unexpected token. '{' expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1180.json b/db/1180.json deleted file mode 100644 index dbf2090..0000000 --- a/db/1180.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1180, - "codeText": "TS1180", - "title": "Property destructuring pattern expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1181.json b/db/1181.json deleted file mode 100644 index 29544bb..0000000 --- a/db/1181.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1181, - "codeText": "TS1181", - "title": "Array element destructuring pattern expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1182.json b/db/1182.json deleted file mode 100644 index 7838c8a..0000000 --- a/db/1182.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1182, - "codeText": "TS1182", - "title": "A destructuring declaration must have an initializer.", - "category": "error", - "documentation": "" -} diff --git a/db/1183.json b/db/1183.json deleted file mode 100644 index 594a1aa..0000000 --- a/db/1183.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1183, - "codeText": "TS1183", - "title": "An implementation cannot be declared in ambient contexts.", - "category": "error", - "documentation": "" -} diff --git a/db/1184.json b/db/1184.json deleted file mode 100644 index 09af9ec..0000000 --- a/db/1184.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1184, - "codeText": "TS1184", - "title": "Modifiers cannot appear here.", - "category": "error", - "documentation": "" -} diff --git a/db/1185.json b/db/1185.json deleted file mode 100644 index 14dfbc4..0000000 --- a/db/1185.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1185, - "codeText": "TS1185", - "title": "Merge conflict marker encountered.", - "category": "error", - "documentation": "" -} diff --git a/db/1186.json b/db/1186.json deleted file mode 100644 index e3f13cf..0000000 --- a/db/1186.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1186, - "codeText": "TS1186", - "title": "A rest element cannot have an initializer.", - "category": "error", - "documentation": "" -} diff --git a/db/1187.json b/db/1187.json deleted file mode 100644 index a98465d..0000000 --- a/db/1187.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1187, - "codeText": "TS1187", - "title": "A parameter property may not be declared using a binding pattern.", - "category": "error", - "documentation": "" -} diff --git a/db/1188.json b/db/1188.json deleted file mode 100644 index 25c1fc6..0000000 --- a/db/1188.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1188, - "codeText": "TS1188", - "title": "Only a single variable declaration is allowed in a 'for...of' statement.", - "category": "error", - "documentation": "" -} diff --git a/db/1189.json b/db/1189.json deleted file mode 100644 index 6ad0cf4..0000000 --- a/db/1189.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1189, - "codeText": "TS1189", - "title": "The variable declaration of a 'for...in' statement cannot have an initializer.", - "category": "error", - "documentation": "" -} diff --git a/db/1190.json b/db/1190.json deleted file mode 100644 index 6c654dc..0000000 --- a/db/1190.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1190, - "codeText": "TS1190", - "title": "The variable declaration of a 'for...of' statement cannot have an initializer.", - "category": "error", - "documentation": "" -} diff --git a/db/1191.json b/db/1191.json deleted file mode 100644 index 0861e97..0000000 --- a/db/1191.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1191, - "codeText": "TS1191", - "title": "An import declaration cannot have modifiers.", - "category": "error", - "documentation": "" -} diff --git a/db/1192.json b/db/1192.json deleted file mode 100644 index 8058062..0000000 --- a/db/1192.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1192, - "codeText": "TS1192", - "title": "Module '{0}' has no default export.", - "category": "error", - "documentation": "" -} diff --git a/db/1193.json b/db/1193.json deleted file mode 100644 index 12247d9..0000000 --- a/db/1193.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1193, - "codeText": "TS1193", - "title": "An export declaration cannot have modifiers.", - "category": "error", - "documentation": "" -} diff --git a/db/1194.json b/db/1194.json deleted file mode 100644 index d576f20..0000000 --- a/db/1194.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1194, - "codeText": "TS1194", - "title": "Export declarations are not permitted in a namespace.", - "category": "error", - "documentation": "" -} diff --git a/db/1195.json b/db/1195.json deleted file mode 100644 index ae720eb..0000000 --- a/db/1195.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1195, - "codeText": "TS1195", - "title": "'export *' does not re-export a default.", - "category": "error", - "documentation": "" -} diff --git a/db/1196.json b/db/1196.json deleted file mode 100644 index d581a78..0000000 --- a/db/1196.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1196, - "codeText": "TS1196", - "title": "Catch clause variable type annotation must be 'any' or 'unknown' if specified.", - "category": "error", - "documentation": "" -} diff --git a/db/1197.json b/db/1197.json deleted file mode 100644 index b507349..0000000 --- a/db/1197.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1197, - "codeText": "TS1197", - "title": "Catch clause variable cannot have an initializer.", - "category": "error", - "documentation": "" -} diff --git a/db/1198.json b/db/1198.json deleted file mode 100644 index 6e2200b..0000000 --- a/db/1198.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1198, - "codeText": "TS1198", - "title": "An extended Unicode escape value must be between 0x0 and 0x10FFFF inclusive.", - "category": "error", - "documentation": "" -} diff --git a/db/1199.json b/db/1199.json deleted file mode 100644 index 31fb640..0000000 --- a/db/1199.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1199, - "codeText": "TS1199", - "title": "Unterminated Unicode escape sequence.", - "category": "error", - "documentation": "" -} diff --git a/db/1200.json b/db/1200.json deleted file mode 100644 index c1ffe4a..0000000 --- a/db/1200.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1200, - "codeText": "TS1200", - "title": "Line terminator not permitted before arrow.", - "category": "error", - "documentation": "" -} diff --git a/db/1202.json b/db/1202.json deleted file mode 100644 index 5ede40e..0000000 --- a/db/1202.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1202, - "codeText": "TS1202", - "title": "Import assignment cannot be used when targeting ECMAScript modules. Consider using 'import * as ns from \"mod\"', 'import {a} from \"mod\"', 'import d from \"mod\"', or another module format instead.", - "category": "error", - "documentation": "" -} diff --git a/db/1203.json b/db/1203.json deleted file mode 100644 index 096055f..0000000 --- a/db/1203.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1203, - "codeText": "TS1203", - "title": "Export assignment cannot be used when targeting ECMAScript modules. Consider using 'export default' or another module format instead.", - "category": "error", - "documentation": "" -} diff --git a/db/1205.json b/db/1205.json deleted file mode 100644 index 21bd787..0000000 --- a/db/1205.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1205, - "codeText": "TS1205", - "title": "Re-exporting a type when the '--isolatedModules' flag is provided requires using 'export type'.", - "category": "error", - "documentation": "" -} diff --git a/db/1206.json b/db/1206.json deleted file mode 100644 index 923af57..0000000 --- a/db/1206.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1206, - "codeText": "TS1206", - "title": "Decorators are not valid here.", - "category": "error", - "documentation": "" -} diff --git a/db/1207.json b/db/1207.json deleted file mode 100644 index 6a2ba67..0000000 --- a/db/1207.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1207, - "codeText": "TS1207", - "title": "Decorators cannot be applied to multiple get/set accessors of the same name.", - "category": "error", - "documentation": "" -} diff --git a/db/1208.json b/db/1208.json deleted file mode 100644 index 246a295..0000000 --- a/db/1208.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1208, - "codeText": "TS1208", - "title": "'{0}' cannot be compiled under '--isolatedModules' because it is considered a global script file. Add an import, export, or an empty 'export {}' statement to make it a module.", - "category": "error", - "documentation": "" -} diff --git a/db/1209.json b/db/1209.json deleted file mode 100644 index a0e958c..0000000 --- a/db/1209.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1209, - "codeText": "TS1209", - "title": "Invalid optional chain from new expression. Did you mean to call '{0}()'?", - "category": "error", - "documentation": "" -} diff --git a/db/1210.json b/db/1210.json deleted file mode 100644 index f3dc3fe..0000000 --- a/db/1210.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1210, - "codeText": "TS1210", - "title": "Code contained in a class is evaluated in JavaScript's strict mode which does not allow this use of '{0}'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.", - "category": "error", - "documentation": "" -} diff --git a/db/1211.json b/db/1211.json deleted file mode 100644 index e91f8d7..0000000 --- a/db/1211.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1211, - "codeText": "TS1211", - "title": "A class declaration without the 'default' modifier must have a name.", - "category": "error", - "documentation": "" -} diff --git a/db/1212.json b/db/1212.json deleted file mode 100644 index 7472f5f..0000000 --- a/db/1212.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1212, - "codeText": "TS1212", - "title": "Identifier expected. '{0}' is a reserved word in strict mode.", - "category": "error", - "documentation": "" -} diff --git a/db/1213.json b/db/1213.json deleted file mode 100644 index 2f7e95e..0000000 --- a/db/1213.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1213, - "codeText": "TS1213", - "title": "Identifier expected. '{0}' is a reserved word in strict mode. Class definitions are automatically in strict mode.", - "category": "error", - "documentation": "" -} diff --git a/db/1214.json b/db/1214.json deleted file mode 100644 index 941b9a7..0000000 --- a/db/1214.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1214, - "codeText": "TS1214", - "title": "Identifier expected. '{0}' is a reserved word in strict mode. Modules are automatically in strict mode.", - "category": "error", - "documentation": "" -} diff --git a/db/1215.json b/db/1215.json deleted file mode 100644 index 0cb6943..0000000 --- a/db/1215.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1215, - "codeText": "TS1215", - "title": "Invalid use of '{0}'. Modules are automatically in strict mode.", - "category": "error", - "documentation": "" -} diff --git a/db/1216.json b/db/1216.json deleted file mode 100644 index 6a0854e..0000000 --- a/db/1216.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1216, - "codeText": "TS1216", - "title": "Identifier expected. '__esModule' is reserved as an exported marker when transforming ECMAScript modules.", - "category": "error", - "documentation": "" -} diff --git a/db/1218.json b/db/1218.json deleted file mode 100644 index 9691ce4..0000000 --- a/db/1218.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1218, - "codeText": "TS1218", - "title": "Export assignment is not supported when '--module' flag is 'system'.", - "category": "error", - "documentation": "" -} diff --git a/db/1219.json b/db/1219.json deleted file mode 100644 index 5d48460..0000000 --- a/db/1219.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1219, - "codeText": "TS1219", - "title": "Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option in your 'tsconfig' or 'jsconfig' to remove this warning.", - "category": "error", - "documentation": "" -} diff --git a/db/1221.json b/db/1221.json deleted file mode 100644 index be49513..0000000 --- a/db/1221.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1221, - "codeText": "TS1221", - "title": "Generators are not allowed in an ambient context.", - "category": "error", - "documentation": "" -} diff --git a/db/1222.json b/db/1222.json deleted file mode 100644 index 0672b3a..0000000 --- a/db/1222.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1222, - "codeText": "TS1222", - "title": "An overload signature cannot be declared as a generator.", - "category": "error", - "documentation": "" -} diff --git a/db/1223.json b/db/1223.json deleted file mode 100644 index a8722c9..0000000 --- a/db/1223.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1223, - "codeText": "TS1223", - "title": "'{0}' tag already specified.", - "category": "error", - "documentation": "" -} diff --git a/db/1224.json b/db/1224.json deleted file mode 100644 index ebd144b..0000000 --- a/db/1224.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1224, - "codeText": "TS1224", - "title": "Signature '{0}' must be a type predicate.", - "category": "error", - "documentation": "" -} diff --git a/db/1225.json b/db/1225.json deleted file mode 100644 index eb0780d..0000000 --- a/db/1225.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1225, - "codeText": "TS1225", - "title": "Cannot find parameter '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/1226.json b/db/1226.json deleted file mode 100644 index f5036fe..0000000 --- a/db/1226.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1226, - "codeText": "TS1226", - "title": "Type predicate '{0}' is not assignable to '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/1227.json b/db/1227.json deleted file mode 100644 index 78b54b0..0000000 --- a/db/1227.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1227, - "codeText": "TS1227", - "title": "Parameter '{0}' is not in the same position as parameter '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/1228.json b/db/1228.json deleted file mode 100644 index f63be20..0000000 --- a/db/1228.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1228, - "codeText": "TS1228", - "title": "A type predicate is only allowed in return type position for functions and methods.", - "category": "error", - "documentation": "" -} diff --git a/db/1229.json b/db/1229.json deleted file mode 100644 index 8caedd1..0000000 --- a/db/1229.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1229, - "codeText": "TS1229", - "title": "A type predicate cannot reference a rest parameter.", - "category": "error", - "documentation": "" -} diff --git a/db/1230.json b/db/1230.json deleted file mode 100644 index cf2ae31..0000000 --- a/db/1230.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1230, - "codeText": "TS1230", - "title": "A type predicate cannot reference element '{0}' in a binding pattern.", - "category": "error", - "documentation": "" -} diff --git a/db/1231.json b/db/1231.json deleted file mode 100644 index cf61eec..0000000 --- a/db/1231.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1231, - "codeText": "TS1231", - "title": "An export assignment must be at the top level of a file or module declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/1232.json b/db/1232.json deleted file mode 100644 index 4856752..0000000 --- a/db/1232.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1232, - "codeText": "TS1232", - "title": "An import declaration can only be used at the top level of a namespace or module.", - "category": "error", - "documentation": "" -} diff --git a/db/1233.json b/db/1233.json deleted file mode 100644 index 0b2ef55..0000000 --- a/db/1233.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1233, - "codeText": "TS1233", - "title": "An export declaration can only be used at the top level of a namespace or module.", - "category": "error", - "documentation": "" -} diff --git a/db/1234.json b/db/1234.json deleted file mode 100644 index 0778ba5..0000000 --- a/db/1234.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1234, - "codeText": "TS1234", - "title": "An ambient module declaration is only allowed at the top level in a file.", - "category": "error", - "documentation": "" -} diff --git a/db/1235.json b/db/1235.json deleted file mode 100644 index 10bb112..0000000 --- a/db/1235.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1235, - "codeText": "TS1235", - "title": "A namespace declaration is only allowed at the top level of a namespace or module.", - "category": "error", - "documentation": "" -} diff --git a/db/1236.json b/db/1236.json deleted file mode 100644 index 6616305..0000000 --- a/db/1236.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1236, - "codeText": "TS1236", - "title": "The return type of a property decorator function must be either 'void' or 'any'.", - "category": "error", - "documentation": "" -} diff --git a/db/1237.json b/db/1237.json deleted file mode 100644 index 171532d..0000000 --- a/db/1237.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1237, - "codeText": "TS1237", - "title": "The return type of a parameter decorator function must be either 'void' or 'any'.", - "category": "error", - "documentation": "" -} diff --git a/db/1238.json b/db/1238.json deleted file mode 100644 index ce358c7..0000000 --- a/db/1238.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1238, - "codeText": "TS1238", - "title": "Unable to resolve signature of class decorator when called as an expression.", - "category": "error", - "documentation": "" -} diff --git a/db/1239.json b/db/1239.json deleted file mode 100644 index 925b394..0000000 --- a/db/1239.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1239, - "codeText": "TS1239", - "title": "Unable to resolve signature of parameter decorator when called as an expression.", - "category": "error", - "documentation": "" -} diff --git a/db/1240.json b/db/1240.json deleted file mode 100644 index 3b255e7..0000000 --- a/db/1240.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1240, - "codeText": "TS1240", - "title": "Unable to resolve signature of property decorator when called as an expression.", - "category": "error", - "documentation": "" -} diff --git a/db/1241.json b/db/1241.json deleted file mode 100644 index a5d3cb4..0000000 --- a/db/1241.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1241, - "codeText": "TS1241", - "title": "Unable to resolve signature of method decorator when called as an expression.", - "category": "error", - "documentation": "" -} diff --git a/db/1242.json b/db/1242.json deleted file mode 100644 index abaf222..0000000 --- a/db/1242.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1242, - "codeText": "TS1242", - "title": "'abstract' modifier can only appear on a class, method, or property declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/1243.json b/db/1243.json deleted file mode 100644 index 4f3e18f..0000000 --- a/db/1243.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1243, - "codeText": "TS1243", - "title": "'{0}' modifier cannot be used with '{1}' modifier.", - "category": "error", - "documentation": "" -} diff --git a/db/1244.json b/db/1244.json deleted file mode 100644 index 6261f45..0000000 --- a/db/1244.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1244, - "codeText": "TS1244", - "title": "Abstract methods can only appear within an abstract class.", - "category": "error", - "documentation": "" -} diff --git a/db/1245.json b/db/1245.json deleted file mode 100644 index 1418df9..0000000 --- a/db/1245.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1245, - "codeText": "TS1245", - "title": "Method '{0}' cannot have an implementation because it is marked abstract.", - "category": "error", - "documentation": "" -} diff --git a/db/1246.json b/db/1246.json deleted file mode 100644 index 5d53bb9..0000000 --- a/db/1246.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1246, - "codeText": "TS1246", - "title": "An interface property cannot have an initializer.", - "category": "error", - "documentation": "" -} diff --git a/db/1247.json b/db/1247.json deleted file mode 100644 index d402ff5..0000000 --- a/db/1247.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1247, - "codeText": "TS1247", - "title": "A type literal property cannot have an initializer.", - "category": "error", - "documentation": "" -} diff --git a/db/1248.json b/db/1248.json deleted file mode 100644 index 85627ae..0000000 --- a/db/1248.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1248, - "codeText": "TS1248", - "title": "A class member cannot have the '{0}' keyword.", - "category": "error", - "documentation": "" -} diff --git a/db/1249.json b/db/1249.json deleted file mode 100644 index 0d9a462..0000000 --- a/db/1249.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1249, - "codeText": "TS1249", - "title": "A decorator can only decorate a method implementation, not an overload.", - "category": "error", - "documentation": "" -} diff --git a/db/1250.json b/db/1250.json deleted file mode 100644 index 84b8daa..0000000 --- a/db/1250.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1250, - "codeText": "TS1250", - "title": "Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'.", - "category": "error", - "documentation": "" -} diff --git a/db/1251.json b/db/1251.json deleted file mode 100644 index f07910f..0000000 --- a/db/1251.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1251, - "codeText": "TS1251", - "title": "Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'. Class definitions are automatically in strict mode.", - "category": "error", - "documentation": "" -} diff --git a/db/1252.json b/db/1252.json deleted file mode 100644 index 515b102..0000000 --- a/db/1252.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1252, - "codeText": "TS1252", - "title": "Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'. Modules are automatically in strict mode.", - "category": "error", - "documentation": "" -} diff --git a/db/1253.json b/db/1253.json deleted file mode 100644 index 7b7289f..0000000 --- a/db/1253.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1253, - "codeText": "TS1253", - "title": "Abstract properties can only appear within an abstract class.", - "category": "error", - "documentation": "" -} diff --git a/db/1254.json b/db/1254.json deleted file mode 100644 index 2df49f4..0000000 --- a/db/1254.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1254, - "codeText": "TS1254", - "title": "A 'const' initializer in an ambient context must be a string or numeric literal or literal enum reference.", - "category": "error", - "documentation": "" -} diff --git a/db/1255.json b/db/1255.json deleted file mode 100644 index 8794944..0000000 --- a/db/1255.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1255, - "codeText": "TS1255", - "title": "A definite assignment assertion '!' is not permitted in this context.", - "category": "error", - "documentation": "" -} diff --git a/db/1257.json b/db/1257.json deleted file mode 100644 index d0102d1..0000000 --- a/db/1257.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1257, - "codeText": "TS1257", - "title": "A required element cannot follow an optional element.", - "category": "error", - "documentation": "" -} diff --git a/db/1258.json b/db/1258.json deleted file mode 100644 index 9d61fa7..0000000 --- a/db/1258.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1258, - "codeText": "TS1258", - "title": "A default export must be at the top level of a file or module declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/1259.json b/db/1259.json deleted file mode 100644 index 39aa8ad..0000000 --- a/db/1259.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1259, - "codeText": "TS1259", - "title": "Module '{0}' can only be default-imported using the '{1}' flag", - "category": "error", - "documentation": "" -} diff --git a/db/1260.json b/db/1260.json deleted file mode 100644 index c2d8148..0000000 --- a/db/1260.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1260, - "codeText": "TS1260", - "title": "Keywords cannot contain escape characters.", - "category": "error", - "documentation": "" -} diff --git a/db/1261.json b/db/1261.json deleted file mode 100644 index f5fa744..0000000 --- a/db/1261.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1261, - "codeText": "TS1261", - "title": "Already included file name '{0}' differs from file name '{1}' only in casing.", - "category": "error", - "documentation": "" -} diff --git a/db/1262.json b/db/1262.json deleted file mode 100644 index 473f8c2..0000000 --- a/db/1262.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1262, - "codeText": "TS1262", - "title": "Identifier expected. '{0}' is a reserved word at the top-level of a module.", - "category": "error", - "documentation": "" -} diff --git a/db/1263.json b/db/1263.json deleted file mode 100644 index 2e450c7..0000000 --- a/db/1263.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1263, - "codeText": "TS1263", - "title": "Declarations with initializers cannot also have definite assignment assertions.", - "category": "error", - "documentation": "" -} diff --git a/db/1264.json b/db/1264.json deleted file mode 100644 index 5d2ea32..0000000 --- a/db/1264.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1264, - "codeText": "TS1264", - "title": "Declarations with definite assignment assertions must also have type annotations.", - "category": "error", - "documentation": "" -} diff --git a/db/1265.json b/db/1265.json deleted file mode 100644 index 4c3e5b8..0000000 --- a/db/1265.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1265, - "codeText": "TS1265", - "title": "A rest element cannot follow another rest element.", - "category": "error", - "documentation": "" -} diff --git a/db/1266.json b/db/1266.json deleted file mode 100644 index 7975a64..0000000 --- a/db/1266.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1266, - "codeText": "TS1266", - "title": "An optional element cannot follow a rest element.", - "category": "error", - "documentation": "" -} diff --git a/db/1267.json b/db/1267.json deleted file mode 100644 index 64e9753..0000000 --- a/db/1267.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1267, - "codeText": "TS1267", - "title": "Property '{0}' cannot have an initializer because it is marked abstract.", - "category": "error", - "documentation": "" -} diff --git a/db/1268.json b/db/1268.json deleted file mode 100644 index 5f26975..0000000 --- a/db/1268.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1268, - "codeText": "TS1268", - "title": "An index signature parameter type must be 'string', 'number', 'symbol', or a template literal type.", - "category": "error", - "documentation": "" -} diff --git a/db/1269.json b/db/1269.json deleted file mode 100644 index 85da6e5..0000000 --- a/db/1269.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1269, - "codeText": "TS1269", - "title": "Cannot use 'export import' on a type or type-only namespace when the '--isolatedModules' flag is provided.", - "category": "error", - "documentation": "" -} diff --git a/db/1270.json b/db/1270.json deleted file mode 100644 index 9889e3a..0000000 --- a/db/1270.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1270, - "codeText": "TS1270", - "title": "Decorator function return type '{0}' is not assignable to type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/1271.json b/db/1271.json deleted file mode 100644 index ece4322..0000000 --- a/db/1271.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1271, - "codeText": "TS1271", - "title": "Decorator function return type is '{0}' but is expected to be 'void' or 'any'.", - "category": "error", - "documentation": "" -} diff --git a/db/1272.json b/db/1272.json deleted file mode 100644 index bf0abf6..0000000 --- a/db/1272.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1272, - "codeText": "TS1272", - "title": "A type referenced in a decorated signature must be imported with 'import type' or a namespace import when 'isolatedModules' and 'emitDecoratorMetadata' are enabled.", - "category": "error", - "documentation": "" -} diff --git a/db/1273.json b/db/1273.json deleted file mode 100644 index c1f3c63..0000000 --- a/db/1273.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1273, - "codeText": "TS1273", - "title": "'{0}' modifier cannot appear on a type parameter", - "category": "error", - "documentation": "" -} diff --git a/db/1274.json b/db/1274.json deleted file mode 100644 index bca5a3d..0000000 --- a/db/1274.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1274, - "codeText": "TS1274", - "title": "'{0}' modifier can only appear on a type parameter of a class, interface or type alias", - "category": "error", - "documentation": "" -} diff --git a/db/1275.json b/db/1275.json deleted file mode 100644 index 04805c5..0000000 --- a/db/1275.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1275, - "codeText": "TS1275", - "title": "'accessor' modifier can only appear on a property declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/1276.json b/db/1276.json deleted file mode 100644 index 424f188..0000000 --- a/db/1276.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1276, - "codeText": "TS1276", - "title": "An 'accessor' property cannot be declared optional.", - "category": "error", - "documentation": "" -} diff --git a/db/1277.json b/db/1277.json deleted file mode 100644 index cdc20a7..0000000 --- a/db/1277.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1277, - "codeText": "TS1277", - "title": "'{0}' modifier can only appear on a type parameter of a function, method or class", - "category": "error", - "documentation": "" -} diff --git a/db/1278.json b/db/1278.json deleted file mode 100644 index b382519..0000000 --- a/db/1278.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1278, - "codeText": "TS1278", - "title": "The runtime will invoke the decorator with {1} arguments, but the decorator expects {0}.", - "category": "error", - "documentation": "" -} diff --git a/db/1279.json b/db/1279.json deleted file mode 100644 index f0905bf..0000000 --- a/db/1279.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1279, - "codeText": "TS1279", - "title": "The runtime will invoke the decorator with {1} arguments, but the decorator expects at least {0}.", - "category": "error", - "documentation": "" -} diff --git a/db/1280.json b/db/1280.json deleted file mode 100644 index a39d527..0000000 --- a/db/1280.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1280, - "codeText": "TS1280", - "title": "Namespaces are not allowed in global script files when '{0}' is enabled. If this file is not intended to be a global script, set 'moduleDetection' to 'force' or add an empty 'export {}' statement.", - "category": "error", - "documentation": "" -} diff --git a/db/1281.json b/db/1281.json deleted file mode 100644 index 686c448..0000000 --- a/db/1281.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1281, - "codeText": "TS1281", - "title": "Cannot access '{0}' from another file without qualification when '{1}' is enabled. Use '{2}' instead.", - "category": "error", - "documentation": "" -} diff --git a/db/1282.json b/db/1282.json deleted file mode 100644 index 62ca3f0..0000000 --- a/db/1282.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1282, - "codeText": "TS1282", - "title": "An 'export =' declaration must reference a value when 'verbatimModuleSyntax' is enabled, but '{0}' only refers to a type.", - "category": "error", - "documentation": "" -} diff --git a/db/1283.json b/db/1283.json deleted file mode 100644 index c88cbe4..0000000 --- a/db/1283.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1283, - "codeText": "TS1283", - "title": "An 'export =' declaration must reference a real value when 'verbatimModuleSyntax' is enabled, but '{0}' resolves to a type-only declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/1284.json b/db/1284.json deleted file mode 100644 index f047d24..0000000 --- a/db/1284.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1284, - "codeText": "TS1284", - "title": "An 'export default' must reference a value when 'verbatimModuleSyntax' is enabled, but '{0}' only refers to a type.", - "category": "error", - "documentation": "" -} diff --git a/db/1285.json b/db/1285.json deleted file mode 100644 index c6ed191..0000000 --- a/db/1285.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1285, - "codeText": "TS1285", - "title": "An 'export default' must reference a real value when 'verbatimModuleSyntax' is enabled, but '{0}' resolves to a type-only declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/1286.json b/db/1286.json deleted file mode 100644 index e75fc28..0000000 --- a/db/1286.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1286, - "codeText": "TS1286", - "title": "ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.", - "category": "error", - "documentation": "" -} diff --git a/db/1287.json b/db/1287.json deleted file mode 100644 index 9739898..0000000 --- a/db/1287.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1287, - "codeText": "TS1287", - "title": "A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.", - "category": "error", - "documentation": "" -} diff --git a/db/1288.json b/db/1288.json deleted file mode 100644 index 7412419..0000000 --- a/db/1288.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1288, - "codeText": "TS1288", - "title": "An import alias cannot resolve to a type or type-only declaration when 'verbatimModuleSyntax' is enabled.", - "category": "error", - "documentation": "" -} diff --git a/db/1300.json b/db/1300.json deleted file mode 100644 index 38f7a43..0000000 --- a/db/1300.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1300, - "codeText": "TS1300", - "title": "'with' statements are not allowed in an async function block.", - "category": "error", - "documentation": "" -} diff --git a/db/1308.json b/db/1308.json deleted file mode 100644 index aa2b730..0000000 --- a/db/1308.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1308, - "codeText": "TS1308", - "title": "'await' expressions are only allowed within async functions and at the top levels of modules.", - "category": "error", - "documentation": "" -} diff --git a/db/1309.json b/db/1309.json deleted file mode 100644 index 1ddd56e..0000000 --- a/db/1309.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1309, - "codeText": "TS1309", - "title": "The current file is a CommonJS module and cannot use 'await' at the top level.", - "category": "error", - "documentation": "" -} diff --git a/db/1312.json b/db/1312.json deleted file mode 100644 index 0a1e91a..0000000 --- a/db/1312.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1312, - "codeText": "TS1312", - "title": "Did you mean to use a ':'? An '=' can only follow a property name when the containing object literal is part of a destructuring pattern.", - "category": "error", - "documentation": "" -} diff --git a/db/1313.json b/db/1313.json deleted file mode 100644 index b2b3f57..0000000 --- a/db/1313.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1313, - "codeText": "TS1313", - "title": "The body of an 'if' statement cannot be the empty statement.", - "category": "error", - "documentation": "" -} diff --git a/db/1314.json b/db/1314.json deleted file mode 100644 index a5ebfe2..0000000 --- a/db/1314.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1314, - "codeText": "TS1314", - "title": "Global module exports may only appear in module files.", - "category": "error", - "documentation": "" -} diff --git a/db/1315.json b/db/1315.json deleted file mode 100644 index 76a95d5..0000000 --- a/db/1315.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1315, - "codeText": "TS1315", - "title": "Global module exports may only appear in declaration files.", - "category": "error", - "documentation": "" -} diff --git a/db/1316.json b/db/1316.json deleted file mode 100644 index 723e54b..0000000 --- a/db/1316.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1316, - "codeText": "TS1316", - "title": "Global module exports may only appear at top level.", - "category": "error", - "documentation": "" -} diff --git a/db/1317.json b/db/1317.json deleted file mode 100644 index 2873fad..0000000 --- a/db/1317.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1317, - "codeText": "TS1317", - "title": "A parameter property cannot be declared using a rest parameter.", - "category": "error", - "documentation": "" -} diff --git a/db/1318.json b/db/1318.json deleted file mode 100644 index c2b3b68..0000000 --- a/db/1318.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1318, - "codeText": "TS1318", - "title": "An abstract accessor cannot have an implementation.", - "category": "error", - "documentation": "" -} diff --git a/db/1319.json b/db/1319.json deleted file mode 100644 index 7580892..0000000 --- a/db/1319.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1319, - "codeText": "TS1319", - "title": "A default export can only be used in an ECMAScript-style module.", - "category": "error", - "documentation": "" -} diff --git a/db/1320.json b/db/1320.json deleted file mode 100644 index b4a4b9a..0000000 --- a/db/1320.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1320, - "codeText": "TS1320", - "title": "Type of 'await' operand must either be a valid promise or must not contain a callable 'then' member.", - "category": "error", - "documentation": "" -} diff --git a/db/1321.json b/db/1321.json deleted file mode 100644 index e9f70ce..0000000 --- a/db/1321.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1321, - "codeText": "TS1321", - "title": "Type of 'yield' operand in an async generator must either be a valid promise or must not contain a callable 'then' member.", - "category": "error", - "documentation": "" -} diff --git a/db/1322.json b/db/1322.json deleted file mode 100644 index 11cf94d..0000000 --- a/db/1322.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1322, - "codeText": "TS1322", - "title": "Type of iterated elements of a 'yield*' operand must either be a valid promise or must not contain a callable 'then' member.", - "category": "error", - "documentation": "" -} diff --git a/db/1323.json b/db/1323.json deleted file mode 100644 index 5ac6e8a..0000000 --- a/db/1323.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1323, - "codeText": "TS1323", - "title": "Dynamic imports are only supported when the '--module' flag is set to 'es2020', 'es2022', 'esnext', 'commonjs', 'amd', 'system', 'umd', 'node16', or 'nodenext'.", - "category": "error", - "documentation": "" -} diff --git a/db/1324.json b/db/1324.json deleted file mode 100644 index f0cec83..0000000 --- a/db/1324.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1324, - "codeText": "TS1324", - "title": "Dynamic imports only support a second argument when the '--module' option is set to 'esnext', 'node16', or 'nodenext'.", - "category": "error", - "documentation": "" -} diff --git a/db/1325.json b/db/1325.json deleted file mode 100644 index 21cbfda..0000000 --- a/db/1325.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1325, - "codeText": "TS1325", - "title": "Argument of dynamic import cannot be spread element.", - "category": "error", - "documentation": "" -} diff --git a/db/1326.json b/db/1326.json deleted file mode 100644 index b74ffcf..0000000 --- a/db/1326.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1326, - "codeText": "TS1326", - "title": "This use of 'import' is invalid. 'import()' calls can be written, but they must have parentheses and cannot have type arguments.", - "category": "error", - "documentation": "" -} diff --git a/db/1327.json b/db/1327.json deleted file mode 100644 index c5af6a3..0000000 --- a/db/1327.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1327, - "codeText": "TS1327", - "title": "String literal with double quotes expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1328.json b/db/1328.json deleted file mode 100644 index 133d733..0000000 --- a/db/1328.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1328, - "codeText": "TS1328", - "title": "Property value can only be string literal, numeric literal, 'true', 'false', 'null', object literal or array literal.", - "category": "error", - "documentation": "" -} diff --git a/db/1329.json b/db/1329.json deleted file mode 100644 index 68a815e..0000000 --- a/db/1329.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1329, - "codeText": "TS1329", - "title": "'{0}' accepts too few arguments to be used as a decorator here. Did you mean to call it first and write '@{0}()'?", - "category": "error", - "documentation": "" -} diff --git a/db/1330.json b/db/1330.json deleted file mode 100644 index c0e1e56..0000000 --- a/db/1330.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1330, - "codeText": "TS1330", - "title": "A property of an interface or type literal whose type is a 'unique symbol' type must be 'readonly'.", - "category": "error", - "documentation": "" -} diff --git a/db/1331.json b/db/1331.json deleted file mode 100644 index ccba645..0000000 --- a/db/1331.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1331, - "codeText": "TS1331", - "title": "A property of a class whose type is a 'unique symbol' type must be both 'static' and 'readonly'.", - "category": "error", - "documentation": "" -} diff --git a/db/1332.json b/db/1332.json deleted file mode 100644 index 02aba09..0000000 --- a/db/1332.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1332, - "codeText": "TS1332", - "title": "A variable whose type is a 'unique symbol' type must be 'const'.", - "category": "error", - "documentation": "" -} diff --git a/db/1333.json b/db/1333.json deleted file mode 100644 index 86f604a..0000000 --- a/db/1333.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1333, - "codeText": "TS1333", - "title": "'unique symbol' types may not be used on a variable declaration with a binding name.", - "category": "error", - "documentation": "" -} diff --git a/db/1334.json b/db/1334.json deleted file mode 100644 index b9b25b7..0000000 --- a/db/1334.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1334, - "codeText": "TS1334", - "title": "'unique symbol' types are only allowed on variables in a variable statement.", - "category": "error", - "documentation": "" -} diff --git a/db/1335.json b/db/1335.json deleted file mode 100644 index 74df4e3..0000000 --- a/db/1335.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1335, - "codeText": "TS1335", - "title": "'unique symbol' types are not allowed here.", - "category": "error", - "documentation": "" -} diff --git a/db/1337.json b/db/1337.json deleted file mode 100644 index 08ca493..0000000 --- a/db/1337.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1337, - "codeText": "TS1337", - "title": "An index signature parameter type cannot be a literal type or generic type. Consider using a mapped object type instead.", - "category": "error", - "documentation": "" -} diff --git a/db/1338.json b/db/1338.json deleted file mode 100644 index 2bae65f..0000000 --- a/db/1338.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1338, - "codeText": "TS1338", - "title": "'infer' declarations are only permitted in the 'extends' clause of a conditional type.", - "category": "error", - "documentation": "" -} diff --git a/db/1339.json b/db/1339.json deleted file mode 100644 index 2f36f01..0000000 --- a/db/1339.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1339, - "codeText": "TS1339", - "title": "Module '{0}' does not refer to a value, but is used as a value here.", - "category": "error", - "documentation": "" -} diff --git a/db/1340.json b/db/1340.json deleted file mode 100644 index 7f0c607..0000000 --- a/db/1340.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1340, - "codeText": "TS1340", - "title": "Module '{0}' does not refer to a type, but is used as a type here. Did you mean 'typeof import('{0}')'?", - "category": "error", - "documentation": "" -} diff --git a/db/1341.json b/db/1341.json deleted file mode 100644 index 0b2fb15..0000000 --- a/db/1341.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1341, - "codeText": "TS1341", - "title": "Class constructor may not be an accessor.", - "category": "error", - "documentation": "" -} diff --git a/db/1342.json b/db/1342.json deleted file mode 100644 index b32bdab..0000000 --- a/db/1342.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1342, - "codeText": "TS1342", - "title": "Type arguments cannot be used here.", - "category": "error", - "documentation": "" -} diff --git a/db/1343.json b/db/1343.json deleted file mode 100644 index 61c6cff..0000000 --- a/db/1343.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1343, - "codeText": "TS1343", - "title": "The 'import.meta' meta-property is only allowed when the '--module' option is 'es2020', 'es2022', 'esnext', 'system', 'node16', or 'nodenext'.", - "category": "error", - "documentation": "" -} diff --git a/db/1344.json b/db/1344.json deleted file mode 100644 index eebaf4d..0000000 --- a/db/1344.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1344, - "codeText": "TS1344", - "title": "'A label is not allowed here.", - "category": "error", - "documentation": "" -} diff --git a/db/1345.json b/db/1345.json deleted file mode 100644 index 22ff750..0000000 --- a/db/1345.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1345, - "codeText": "TS1345", - "title": "An expression of type 'void' cannot be tested for truthiness.", - "category": "error", - "documentation": "" -} diff --git a/db/1346.json b/db/1346.json deleted file mode 100644 index 6fdfe3a..0000000 --- a/db/1346.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1346, - "codeText": "TS1346", - "title": "This parameter is not allowed with 'use strict' directive.", - "category": "error", - "documentation": "" -} diff --git a/db/1347.json b/db/1347.json deleted file mode 100644 index 61935ee..0000000 --- a/db/1347.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1347, - "codeText": "TS1347", - "title": "'use strict' directive cannot be used with non-simple parameter list.", - "category": "error", - "documentation": "" -} diff --git a/db/1348.json b/db/1348.json deleted file mode 100644 index 311708d..0000000 --- a/db/1348.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1348, - "codeText": "TS1348", - "title": "Non-simple parameter declared here.", - "category": "error", - "documentation": "" -} diff --git a/db/1349.json b/db/1349.json deleted file mode 100644 index 63b7c4d..0000000 --- a/db/1349.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1349, - "codeText": "TS1349", - "title": "'use strict' directive used here.", - "category": "error", - "documentation": "" -} diff --git a/db/1350.json b/db/1350.json deleted file mode 100644 index eae7125..0000000 --- a/db/1350.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1350, - "codeText": "TS1350", - "title": "Print the final configuration instead of building.", - "category": "message", - "documentation": "" -} diff --git a/db/1351.json b/db/1351.json deleted file mode 100644 index 2d51266..0000000 --- a/db/1351.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1351, - "codeText": "TS1351", - "title": "An identifier or keyword cannot immediately follow a numeric literal.", - "category": "error", - "documentation": "" -} diff --git a/db/1352.json b/db/1352.json deleted file mode 100644 index 9500de3..0000000 --- a/db/1352.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1352, - "codeText": "TS1352", - "title": "A bigint literal cannot use exponential notation.", - "category": "error", - "documentation": "" -} diff --git a/db/1353.json b/db/1353.json deleted file mode 100644 index d2eca4f..0000000 --- a/db/1353.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1353, - "codeText": "TS1353", - "title": "A bigint literal must be an integer.", - "category": "error", - "documentation": "" -} diff --git a/db/1354.json b/db/1354.json deleted file mode 100644 index b2e75c6..0000000 --- a/db/1354.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1354, - "codeText": "TS1354", - "title": "'readonly' type modifier is only permitted on array and tuple literal types.", - "category": "error", - "documentation": "" -} diff --git a/db/1355.json b/db/1355.json deleted file mode 100644 index f11f5b4..0000000 --- a/db/1355.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1355, - "codeText": "TS1355", - "title": "A 'const' assertions can only be applied to references to enum members, or string, number, boolean, array, or object literals.", - "category": "error", - "documentation": "" -} diff --git a/db/1356.json b/db/1356.json deleted file mode 100644 index f8c2036..0000000 --- a/db/1356.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1356, - "codeText": "TS1356", - "title": "Did you mean to mark this function as 'async'?", - "category": "error", - "documentation": "" -} diff --git a/db/1357.json b/db/1357.json deleted file mode 100644 index 07b6e0f..0000000 --- a/db/1357.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1357, - "codeText": "TS1357", - "title": "An enum member name must be followed by a ',', '=', or '}'.", - "category": "error", - "documentation": "" -} diff --git a/db/1358.json b/db/1358.json deleted file mode 100644 index fda0214..0000000 --- a/db/1358.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1358, - "codeText": "TS1358", - "title": "Tagged template expressions are not permitted in an optional chain.", - "category": "error", - "documentation": "" -} diff --git a/db/1359.json b/db/1359.json deleted file mode 100644 index e80c3e8..0000000 --- a/db/1359.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1359, - "codeText": "TS1359", - "title": "Identifier expected. '{0}' is a reserved word that cannot be used here.", - "category": "error", - "documentation": "" -} diff --git a/db/1360.json b/db/1360.json deleted file mode 100644 index 83470f1..0000000 --- a/db/1360.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1360, - "codeText": "TS1360", - "title": "Type '{0}' does not satisfy the expected type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/1361.json b/db/1361.json deleted file mode 100644 index 97eff86..0000000 --- a/db/1361.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1361, - "codeText": "TS1361", - "title": "'{0}' cannot be used as a value because it was imported using 'import type'.", - "category": "error", - "documentation": "" -} diff --git a/db/1362.json b/db/1362.json deleted file mode 100644 index 9f732ef..0000000 --- a/db/1362.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1362, - "codeText": "TS1362", - "title": "'{0}' cannot be used as a value because it was exported using 'export type'.", - "category": "error", - "documentation": "" -} diff --git a/db/1363.json b/db/1363.json deleted file mode 100644 index babb19f..0000000 --- a/db/1363.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1363, - "codeText": "TS1363", - "title": "A type-only import can specify a default import or named bindings, but not both.", - "category": "error", - "documentation": "" -} diff --git a/db/1364.json b/db/1364.json deleted file mode 100644 index 0f088b1..0000000 --- a/db/1364.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1364, - "codeText": "TS1364", - "title": "Convert to type-only export", - "category": "message", - "documentation": "" -} diff --git a/db/1365.json b/db/1365.json deleted file mode 100644 index fbb579d..0000000 --- a/db/1365.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1365, - "codeText": "TS1365", - "title": "Convert all re-exported types to type-only exports", - "category": "message", - "documentation": "" -} diff --git a/db/1366.json b/db/1366.json deleted file mode 100644 index 6cf4f72..0000000 --- a/db/1366.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1366, - "codeText": "TS1366", - "title": "Split into two separate import declarations", - "category": "message", - "documentation": "" -} diff --git a/db/1367.json b/db/1367.json deleted file mode 100644 index 30f6716..0000000 --- a/db/1367.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1367, - "codeText": "TS1367", - "title": "Split all invalid type-only imports", - "category": "message", - "documentation": "" -} diff --git a/db/1368.json b/db/1368.json deleted file mode 100644 index 863a259..0000000 --- a/db/1368.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1368, - "codeText": "TS1368", - "title": "Class constructor may not be a generator.", - "category": "error", - "documentation": "" -} diff --git a/db/1369.json b/db/1369.json deleted file mode 100644 index 1b93adb..0000000 --- a/db/1369.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1369, - "codeText": "TS1369", - "title": "Did you mean '{0}'?", - "category": "message", - "documentation": "" -} diff --git a/db/1371.json b/db/1371.json deleted file mode 100644 index 50e414a..0000000 --- a/db/1371.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1371, - "codeText": "TS1371", - "title": "This import is never used as a value and must use 'import type' because 'importsNotUsedAsValues' is set to 'error'.", - "category": "error", - "documentation": "" -} diff --git a/db/1373.json b/db/1373.json deleted file mode 100644 index fe4e190..0000000 --- a/db/1373.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1373, - "codeText": "TS1373", - "title": "Convert to type-only import", - "category": "message", - "documentation": "" -} diff --git a/db/1374.json b/db/1374.json deleted file mode 100644 index 655cc02..0000000 --- a/db/1374.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1374, - "codeText": "TS1374", - "title": "Convert all imports not used as a value to type-only imports", - "category": "message", - "documentation": "" -} diff --git a/db/1375.json b/db/1375.json deleted file mode 100644 index e107e11..0000000 --- a/db/1375.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1375, - "codeText": "TS1375", - "title": "'await' expressions are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module.", - "category": "error", - "documentation": "" -} diff --git a/db/1376.json b/db/1376.json deleted file mode 100644 index d7e2ef0..0000000 --- a/db/1376.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1376, - "codeText": "TS1376", - "title": "'{0}' was imported here.", - "category": "message", - "documentation": "" -} diff --git a/db/1377.json b/db/1377.json deleted file mode 100644 index 8784df2..0000000 --- a/db/1377.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1377, - "codeText": "TS1377", - "title": "'{0}' was exported here.", - "category": "message", - "documentation": "" -} diff --git a/db/1378.json b/db/1378.json deleted file mode 100644 index b8d6ca6..0000000 --- a/db/1378.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1378, - "codeText": "TS1378", - "title": "Top-level 'await' expressions are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher.", - "category": "error", - "documentation": "" -} diff --git a/db/1379.json b/db/1379.json deleted file mode 100644 index 3d8df43..0000000 --- a/db/1379.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1379, - "codeText": "TS1379", - "title": "An import alias cannot reference a declaration that was exported using 'export type'.", - "category": "error", - "documentation": "" -} diff --git a/db/1380.json b/db/1380.json deleted file mode 100644 index 71d2283..0000000 --- a/db/1380.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1380, - "codeText": "TS1380", - "title": "An import alias cannot reference a declaration that was imported using 'import type'.", - "category": "error", - "documentation": "" -} diff --git a/db/1381.json b/db/1381.json deleted file mode 100644 index b36b4aa..0000000 --- a/db/1381.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1381, - "codeText": "TS1381", - "title": "Unexpected token. Did you mean `{'}'}` or `}`?", - "category": "error", - "documentation": "" -} diff --git a/db/1382.json b/db/1382.json deleted file mode 100644 index 2c22ebc..0000000 --- a/db/1382.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1382, - "codeText": "TS1382", - "title": "Unexpected token. Did you mean `{'>'}` or `>`?", - "category": "error", - "documentation": "" -} diff --git a/db/1383.json b/db/1383.json deleted file mode 100644 index 763711d..0000000 --- a/db/1383.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1383, - "codeText": "TS1383", - "title": "Only named exports may use 'export type'.", - "category": "error", - "documentation": "" -} diff --git a/db/1385.json b/db/1385.json deleted file mode 100644 index aef9257..0000000 --- a/db/1385.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1385, - "codeText": "TS1385", - "title": "Function type notation must be parenthesized when used in a union type.", - "category": "error", - "documentation": "" -} diff --git a/db/1386.json b/db/1386.json deleted file mode 100644 index 703097d..0000000 --- a/db/1386.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1386, - "codeText": "TS1386", - "title": "Constructor type notation must be parenthesized when used in a union type.", - "category": "error", - "documentation": "" -} diff --git a/db/1387.json b/db/1387.json deleted file mode 100644 index ae5d037..0000000 --- a/db/1387.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1387, - "codeText": "TS1387", - "title": "Function type notation must be parenthesized when used in an intersection type.", - "category": "error", - "documentation": "" -} diff --git a/db/1388.json b/db/1388.json deleted file mode 100644 index bbf484a..0000000 --- a/db/1388.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1388, - "codeText": "TS1388", - "title": "Constructor type notation must be parenthesized when used in an intersection type.", - "category": "error", - "documentation": "" -} diff --git a/db/1389.json b/db/1389.json deleted file mode 100644 index 8eb4fd0..0000000 --- a/db/1389.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1389, - "codeText": "TS1389", - "title": "'{0}' is not allowed as a variable declaration name.", - "category": "error", - "documentation": "" -} diff --git a/db/1390.json b/db/1390.json deleted file mode 100644 index b001cae..0000000 --- a/db/1390.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1390, - "codeText": "TS1390", - "title": "'{0}' is not allowed as a parameter name.", - "category": "error", - "documentation": "" -} diff --git a/db/1392.json b/db/1392.json deleted file mode 100644 index 3f6e6c9..0000000 --- a/db/1392.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1392, - "codeText": "TS1392", - "title": "An import alias cannot use 'import type'", - "category": "error", - "documentation": "" -} diff --git a/db/1393.json b/db/1393.json deleted file mode 100644 index 10fb9a1..0000000 --- a/db/1393.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1393, - "codeText": "TS1393", - "title": "Imported via {0} from file '{1}'", - "category": "message", - "documentation": "" -} diff --git a/db/1394.json b/db/1394.json deleted file mode 100644 index 374be51..0000000 --- a/db/1394.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1394, - "codeText": "TS1394", - "title": "Imported via {0} from file '{1}' with packageId '{2}'", - "category": "message", - "documentation": "" -} diff --git a/db/1395.json b/db/1395.json deleted file mode 100644 index 07394e4..0000000 --- a/db/1395.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1395, - "codeText": "TS1395", - "title": "Imported via {0} from file '{1}' to import 'importHelpers' as specified in compilerOptions", - "category": "message", - "documentation": "" -} diff --git a/db/1396.json b/db/1396.json deleted file mode 100644 index 1a47491..0000000 --- a/db/1396.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1396, - "codeText": "TS1396", - "title": "Imported via {0} from file '{1}' with packageId '{2}' to import 'importHelpers' as specified in compilerOptions", - "category": "message", - "documentation": "" -} diff --git a/db/1397.json b/db/1397.json deleted file mode 100644 index 1637f1f..0000000 --- a/db/1397.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1397, - "codeText": "TS1397", - "title": "Imported via {0} from file '{1}' to import 'jsx' and 'jsxs' factory functions", - "category": "message", - "documentation": "" -} diff --git a/db/1398.json b/db/1398.json deleted file mode 100644 index 25bf858..0000000 --- a/db/1398.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1398, - "codeText": "TS1398", - "title": "Imported via {0} from file '{1}' with packageId '{2}' to import 'jsx' and 'jsxs' factory functions", - "category": "message", - "documentation": "" -} diff --git a/db/1399.json b/db/1399.json deleted file mode 100644 index aa6b8a0..0000000 --- a/db/1399.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1399, - "codeText": "TS1399", - "title": "File is included via import here.", - "category": "message", - "documentation": "" -} diff --git a/db/1400.json b/db/1400.json deleted file mode 100644 index ffc47dc..0000000 --- a/db/1400.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1400, - "codeText": "TS1400", - "title": "Referenced via '{0}' from file '{1}'", - "category": "message", - "documentation": "" -} diff --git a/db/1401.json b/db/1401.json deleted file mode 100644 index b9ad4fe..0000000 --- a/db/1401.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1401, - "codeText": "TS1401", - "title": "File is included via reference here.", - "category": "message", - "documentation": "" -} diff --git a/db/1402.json b/db/1402.json deleted file mode 100644 index 393d01b..0000000 --- a/db/1402.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1402, - "codeText": "TS1402", - "title": "Type library referenced via '{0}' from file '{1}'", - "category": "message", - "documentation": "" -} diff --git a/db/1403.json b/db/1403.json deleted file mode 100644 index 6d56c46..0000000 --- a/db/1403.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1403, - "codeText": "TS1403", - "title": "Type library referenced via '{0}' from file '{1}' with packageId '{2}'", - "category": "message", - "documentation": "" -} diff --git a/db/1404.json b/db/1404.json deleted file mode 100644 index de893a1..0000000 --- a/db/1404.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1404, - "codeText": "TS1404", - "title": "File is included via type library reference here.", - "category": "message", - "documentation": "" -} diff --git a/db/1405.json b/db/1405.json deleted file mode 100644 index 31cadb1..0000000 --- a/db/1405.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1405, - "codeText": "TS1405", - "title": "Library referenced via '{0}' from file '{1}'", - "category": "message", - "documentation": "" -} diff --git a/db/1406.json b/db/1406.json deleted file mode 100644 index 2c14f0d..0000000 --- a/db/1406.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1406, - "codeText": "TS1406", - "title": "File is included via library reference here.", - "category": "message", - "documentation": "" -} diff --git a/db/1407.json b/db/1407.json deleted file mode 100644 index 948f0be..0000000 --- a/db/1407.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1407, - "codeText": "TS1407", - "title": "Matched by include pattern '{0}' in '{1}'", - "category": "message", - "documentation": "" -} diff --git a/db/1408.json b/db/1408.json deleted file mode 100644 index 8dd3201..0000000 --- a/db/1408.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1408, - "codeText": "TS1408", - "title": "File is matched by include pattern specified here.", - "category": "message", - "documentation": "" -} diff --git a/db/1409.json b/db/1409.json deleted file mode 100644 index 86a8657..0000000 --- a/db/1409.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1409, - "codeText": "TS1409", - "title": "Part of 'files' list in tsconfig.json", - "category": "message", - "documentation": "" -} diff --git a/db/1410.json b/db/1410.json deleted file mode 100644 index 77ad59d..0000000 --- a/db/1410.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1410, - "codeText": "TS1410", - "title": "File is matched by 'files' list specified here.", - "category": "message", - "documentation": "" -} diff --git a/db/1411.json b/db/1411.json deleted file mode 100644 index d6564e8..0000000 --- a/db/1411.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1411, - "codeText": "TS1411", - "title": "Output from referenced project '{0}' included because '{1}' specified", - "category": "message", - "documentation": "" -} diff --git a/db/1412.json b/db/1412.json deleted file mode 100644 index 4e3d9f8..0000000 --- a/db/1412.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1412, - "codeText": "TS1412", - "title": "Output from referenced project '{0}' included because '--module' is specified as 'none'", - "category": "message", - "documentation": "" -} diff --git a/db/1413.json b/db/1413.json deleted file mode 100644 index 108a115..0000000 --- a/db/1413.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1413, - "codeText": "TS1413", - "title": "File is output from referenced project specified here.", - "category": "message", - "documentation": "" -} diff --git a/db/1414.json b/db/1414.json deleted file mode 100644 index b02c0f7..0000000 --- a/db/1414.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1414, - "codeText": "TS1414", - "title": "Source from referenced project '{0}' included because '{1}' specified", - "category": "message", - "documentation": "" -} diff --git a/db/1415.json b/db/1415.json deleted file mode 100644 index 99ce881..0000000 --- a/db/1415.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1415, - "codeText": "TS1415", - "title": "Source from referenced project '{0}' included because '--module' is specified as 'none'", - "category": "message", - "documentation": "" -} diff --git a/db/1416.json b/db/1416.json deleted file mode 100644 index 9990ff1..0000000 --- a/db/1416.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1416, - "codeText": "TS1416", - "title": "File is source from referenced project specified here.", - "category": "message", - "documentation": "" -} diff --git a/db/1417.json b/db/1417.json deleted file mode 100644 index 6cb8d4d..0000000 --- a/db/1417.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1417, - "codeText": "TS1417", - "title": "Entry point of type library '{0}' specified in compilerOptions", - "category": "message", - "documentation": "" -} diff --git a/db/1418.json b/db/1418.json deleted file mode 100644 index b834e8c..0000000 --- a/db/1418.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1418, - "codeText": "TS1418", - "title": "Entry point of type library '{0}' specified in compilerOptions with packageId '{1}'", - "category": "message", - "documentation": "" -} diff --git a/db/1419.json b/db/1419.json deleted file mode 100644 index 768e086..0000000 --- a/db/1419.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1419, - "codeText": "TS1419", - "title": "File is entry point of type library specified here.", - "category": "message", - "documentation": "" -} diff --git a/db/1420.json b/db/1420.json deleted file mode 100644 index c0501aa..0000000 --- a/db/1420.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1420, - "codeText": "TS1420", - "title": "Entry point for implicit type library '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/1421.json b/db/1421.json deleted file mode 100644 index d50797b..0000000 --- a/db/1421.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1421, - "codeText": "TS1421", - "title": "Entry point for implicit type library '{0}' with packageId '{1}'", - "category": "message", - "documentation": "" -} diff --git a/db/1422.json b/db/1422.json deleted file mode 100644 index 16c7123..0000000 --- a/db/1422.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1422, - "codeText": "TS1422", - "title": "Library '{0}' specified in compilerOptions", - "category": "message", - "documentation": "" -} diff --git a/db/1423.json b/db/1423.json deleted file mode 100644 index ab31d12..0000000 --- a/db/1423.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1423, - "codeText": "TS1423", - "title": "File is library specified here.", - "category": "message", - "documentation": "" -} diff --git a/db/1424.json b/db/1424.json deleted file mode 100644 index 4e0ca4c..0000000 --- a/db/1424.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1424, - "codeText": "TS1424", - "title": "Default library", - "category": "message", - "documentation": "" -} diff --git a/db/1425.json b/db/1425.json deleted file mode 100644 index a18fe23..0000000 --- a/db/1425.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1425, - "codeText": "TS1425", - "title": "Default library for target '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/1426.json b/db/1426.json deleted file mode 100644 index b767c88..0000000 --- a/db/1426.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1426, - "codeText": "TS1426", - "title": "File is default library for target specified here.", - "category": "message", - "documentation": "" -} diff --git a/db/1427.json b/db/1427.json deleted file mode 100644 index 337d375..0000000 --- a/db/1427.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1427, - "codeText": "TS1427", - "title": "Root file specified for compilation", - "category": "message", - "documentation": "" -} diff --git a/db/1428.json b/db/1428.json deleted file mode 100644 index c5bff62..0000000 --- a/db/1428.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1428, - "codeText": "TS1428", - "title": "File is output of project reference source '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/1429.json b/db/1429.json deleted file mode 100644 index 73530e0..0000000 --- a/db/1429.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1429, - "codeText": "TS1429", - "title": "File redirects to file '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/1430.json b/db/1430.json deleted file mode 100644 index b56f517..0000000 --- a/db/1430.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1430, - "codeText": "TS1430", - "title": "The file is in the program because:", - "category": "message", - "documentation": "" -} diff --git a/db/1431.json b/db/1431.json deleted file mode 100644 index b88707c..0000000 --- a/db/1431.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1431, - "codeText": "TS1431", - "title": "'for await' loops are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module.", - "category": "error", - "documentation": "" -} diff --git a/db/1432.json b/db/1432.json deleted file mode 100644 index a70819f..0000000 --- a/db/1432.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1432, - "codeText": "TS1432", - "title": "Top-level 'for await' loops are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher.", - "category": "error", - "documentation": "" -} diff --git a/db/1433.json b/db/1433.json deleted file mode 100644 index 6abcab8..0000000 --- a/db/1433.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1433, - "codeText": "TS1433", - "title": "Decorators may not be applied to 'this' parameters.", - "category": "error", - "documentation": "" -} diff --git a/db/1434.json b/db/1434.json deleted file mode 100644 index ee70a39..0000000 --- a/db/1434.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1434, - "codeText": "TS1434", - "title": "Unexpected keyword or identifier.", - "category": "error", - "documentation": "" -} diff --git a/db/1435.json b/db/1435.json deleted file mode 100644 index 5da2a9b..0000000 --- a/db/1435.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1435, - "codeText": "TS1435", - "title": "Unknown keyword or identifier. Did you mean '{0}'?", - "category": "error", - "documentation": "" -} diff --git a/db/1436.json b/db/1436.json deleted file mode 100644 index 98a0887..0000000 --- a/db/1436.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1436, - "codeText": "TS1436", - "title": "Decorators must precede the name and all keywords of property declarations.", - "category": "error", - "documentation": "" -} diff --git a/db/1437.json b/db/1437.json deleted file mode 100644 index 828a878..0000000 --- a/db/1437.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1437, - "codeText": "TS1437", - "title": "Namespace must be given a name.", - "category": "error", - "documentation": "" -} diff --git a/db/1438.json b/db/1438.json deleted file mode 100644 index 1bce769..0000000 --- a/db/1438.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1438, - "codeText": "TS1438", - "title": "Interface must be given a name.", - "category": "error", - "documentation": "" -} diff --git a/db/1439.json b/db/1439.json deleted file mode 100644 index c00e7bb..0000000 --- a/db/1439.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1439, - "codeText": "TS1439", - "title": "Type alias must be given a name.", - "category": "error", - "documentation": "" -} diff --git a/db/1440.json b/db/1440.json deleted file mode 100644 index 80e1187..0000000 --- a/db/1440.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1440, - "codeText": "TS1440", - "title": "Variable declaration not allowed at this location.", - "category": "error", - "documentation": "" -} diff --git a/db/1441.json b/db/1441.json deleted file mode 100644 index becf46a..0000000 --- a/db/1441.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1441, - "codeText": "TS1441", - "title": "Cannot start a function call in a type annotation.", - "category": "error", - "documentation": "" -} diff --git a/db/1442.json b/db/1442.json deleted file mode 100644 index 04e4231..0000000 --- a/db/1442.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1442, - "codeText": "TS1442", - "title": "Expected '=' for property initializer.", - "category": "error", - "documentation": "" -} diff --git a/db/1443.json b/db/1443.json deleted file mode 100644 index dfa020a..0000000 --- a/db/1443.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1443, - "codeText": "TS1443", - "title": "Module declaration names may only use ' or \" quoted strings.", - "category": "error", - "documentation": "" -} diff --git a/db/1444.json b/db/1444.json deleted file mode 100644 index 1e6c63a..0000000 --- a/db/1444.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1444, - "codeText": "TS1444", - "title": "'{0}' is a type and must be imported using a type-only import when 'preserveValueImports' and 'isolatedModules' are both enabled.", - "category": "error", - "documentation": "" -} diff --git a/db/1446.json b/db/1446.json deleted file mode 100644 index 9b13ad5..0000000 --- a/db/1446.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1446, - "codeText": "TS1446", - "title": "'{0}' resolves to a type-only declaration and must be imported using a type-only import when 'preserveValueImports' and 'isolatedModules' are both enabled.", - "category": "error", - "documentation": "" -} diff --git a/db/1448.json b/db/1448.json deleted file mode 100644 index bbe3fce..0000000 --- a/db/1448.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1448, - "codeText": "TS1448", - "title": "'{0}' resolves to a type-only declaration and must be re-exported using a type-only re-export when 'isolatedModules' is enabled.", - "category": "error", - "documentation": "" -} diff --git a/db/1449.json b/db/1449.json deleted file mode 100644 index c5bb8bf..0000000 --- a/db/1449.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1449, - "codeText": "TS1449", - "title": "Preserve unused imported values in the JavaScript output that would otherwise be removed.", - "category": "message", - "documentation": "" -} diff --git a/db/1450.json b/db/1450.json deleted file mode 100644 index 11243b4..0000000 --- a/db/1450.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1450, - "codeText": "TS1450", - "title": "Dynamic imports can only accept a module specifier and an optional assertion as arguments", - "category": "message", - "documentation": "" -} diff --git a/db/1451.json b/db/1451.json deleted file mode 100644 index 64362b8..0000000 --- a/db/1451.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1451, - "codeText": "TS1451", - "title": "Private identifiers are only allowed in class bodies and may only be used as part of a class member declaration, property access, or on the left-hand-side of an 'in' expression", - "category": "error", - "documentation": "" -} diff --git a/db/1452.json b/db/1452.json deleted file mode 100644 index e38e246..0000000 --- a/db/1452.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1452, - "codeText": "TS1452", - "title": "'resolution-mode' assertions are only supported when `moduleResolution` is `node16` or `nodenext`.", - "category": "error", - "documentation": "" -} diff --git a/db/1453.json b/db/1453.json deleted file mode 100644 index 953664f..0000000 --- a/db/1453.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1453, - "codeText": "TS1453", - "title": "`resolution-mode` should be either `require` or `import`.", - "category": "error", - "documentation": "" -} diff --git a/db/1454.json b/db/1454.json deleted file mode 100644 index 72db0ec..0000000 --- a/db/1454.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1454, - "codeText": "TS1454", - "title": "`resolution-mode` can only be set for type-only imports.", - "category": "error", - "documentation": "" -} diff --git a/db/1455.json b/db/1455.json deleted file mode 100644 index cde62cb..0000000 --- a/db/1455.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1455, - "codeText": "TS1455", - "title": "`resolution-mode` is the only valid key for type import assertions.", - "category": "error", - "documentation": "" -} diff --git a/db/1456.json b/db/1456.json deleted file mode 100644 index 09a5f27..0000000 --- a/db/1456.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1456, - "codeText": "TS1456", - "title": "Type import assertions should have exactly one key - `resolution-mode` - with value `import` or `require`.", - "category": "error", - "documentation": "" -} diff --git a/db/1457.json b/db/1457.json deleted file mode 100644 index c46b956..0000000 --- a/db/1457.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1457, - "codeText": "TS1457", - "title": "Matched by default include pattern '**/*'", - "category": "message", - "documentation": "" -} diff --git a/db/1458.json b/db/1458.json deleted file mode 100644 index 13e08b7..0000000 --- a/db/1458.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1458, - "codeText": "TS1458", - "title": "File is ECMAScript module because '{0}' has field \"type\" with value \"module\"", - "category": "message", - "documentation": "" -} diff --git a/db/1459.json b/db/1459.json deleted file mode 100644 index b2641fc..0000000 --- a/db/1459.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1459, - "codeText": "TS1459", - "title": "File is CommonJS module because '{0}' has field \"type\" whose value is not \"module\"", - "category": "message", - "documentation": "" -} diff --git a/db/1460.json b/db/1460.json deleted file mode 100644 index cc8da40..0000000 --- a/db/1460.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1460, - "codeText": "TS1460", - "title": "File is CommonJS module because '{0}' does not have field \"type\"", - "category": "message", - "documentation": "" -} diff --git a/db/1461.json b/db/1461.json deleted file mode 100644 index 53dbace..0000000 --- a/db/1461.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1461, - "codeText": "TS1461", - "title": "File is CommonJS module because 'package.json' was not found", - "category": "message", - "documentation": "" -} diff --git a/db/1470.json b/db/1470.json deleted file mode 100644 index 5dc5b6d..0000000 --- a/db/1470.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1470, - "codeText": "TS1470", - "title": "The 'import.meta' meta-property is not allowed in files which will build into CommonJS output.", - "category": "error", - "documentation": "" -} diff --git a/db/1471.json b/db/1471.json deleted file mode 100644 index 505fe40..0000000 --- a/db/1471.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1471, - "codeText": "TS1471", - "title": "Module '{0}' cannot be imported using this construct. The specifier only resolves to an ES module, which cannot be imported with 'require'. Use an ECMAScript import instead.", - "category": "error", - "documentation": "" -} diff --git a/db/1472.json b/db/1472.json deleted file mode 100644 index ca1a6d0..0000000 --- a/db/1472.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1472, - "codeText": "TS1472", - "title": "'catch' or 'finally' expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1473.json b/db/1473.json deleted file mode 100644 index 62359fc..0000000 --- a/db/1473.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1473, - "codeText": "TS1473", - "title": "An import declaration can only be used at the top level of a module.", - "category": "error", - "documentation": "" -} diff --git a/db/1474.json b/db/1474.json deleted file mode 100644 index 1045ca6..0000000 --- a/db/1474.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1474, - "codeText": "TS1474", - "title": "An export declaration can only be used at the top level of a module.", - "category": "error", - "documentation": "" -} diff --git a/db/1475.json b/db/1475.json deleted file mode 100644 index 198f693..0000000 --- a/db/1475.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1475, - "codeText": "TS1475", - "title": "Control what method is used to detect module-format JS files.", - "category": "message", - "documentation": "" -} diff --git a/db/1476.json b/db/1476.json deleted file mode 100644 index a4ea9ab..0000000 --- a/db/1476.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1476, - "codeText": "TS1476", - "title": "\"auto\": Treat files with imports, exports, import.meta, jsx (with jsx: react-jsx), or esm format (with module: node16+) as modules.", - "category": "message", - "documentation": "" -} diff --git a/db/1477.json b/db/1477.json deleted file mode 100644 index b4cc7fa..0000000 --- a/db/1477.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1477, - "codeText": "TS1477", - "title": "An instantiation expression cannot be followed by a property access.", - "category": "error", - "documentation": "" -} diff --git a/db/1478.json b/db/1478.json deleted file mode 100644 index 1e48634..0000000 --- a/db/1478.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1478, - "codeText": "TS1478", - "title": "Identifier or string literal expected.", - "category": "error", - "documentation": "" -} diff --git a/db/1479.json b/db/1479.json deleted file mode 100644 index a73003b..0000000 --- a/db/1479.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1479, - "codeText": "TS1479", - "title": "The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"{0}\")' call instead.", - "category": "error", - "documentation": "" -} diff --git a/db/1480.json b/db/1480.json deleted file mode 100644 index 9481b5b..0000000 --- a/db/1480.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1480, - "codeText": "TS1480", - "title": "To convert this file to an ECMAScript module, change its file extension to '{0}' or create a local package.json file with `{ \"type\": \"module\" }`.", - "category": "message", - "documentation": "" -} diff --git a/db/1481.json b/db/1481.json deleted file mode 100644 index a819c76..0000000 --- a/db/1481.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1481, - "codeText": "TS1481", - "title": "To convert this file to an ECMAScript module, change its file extension to '{0}', or add the field `\"type\": \"module\"` to '{1}'.", - "category": "message", - "documentation": "" -} diff --git a/db/1482.json b/db/1482.json deleted file mode 100644 index 4e94e4d..0000000 --- a/db/1482.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1482, - "codeText": "TS1482", - "title": "To convert this file to an ECMAScript module, add the field `\"type\": \"module\"` to '{0}'.", - "category": "message", - "documentation": "" -} diff --git a/db/1483.json b/db/1483.json deleted file mode 100644 index 6a691ac..0000000 --- a/db/1483.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1483, - "codeText": "TS1483", - "title": "To convert this file to an ECMAScript module, create a local package.json file with `{ \"type\": \"module\" }`.", - "category": "message", - "documentation": "" -} diff --git a/db/1484.json b/db/1484.json deleted file mode 100644 index 7fe816c..0000000 --- a/db/1484.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1484, - "codeText": "TS1484", - "title": "'{0}' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.", - "category": "error", - "documentation": "" -} diff --git a/db/1485.json b/db/1485.json deleted file mode 100644 index dbd5dba..0000000 --- a/db/1485.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1485, - "codeText": "TS1485", - "title": "'{0}' resolves to a type-only declaration and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.", - "category": "error", - "documentation": "" -} diff --git a/db/1486.json b/db/1486.json deleted file mode 100644 index e90db08..0000000 --- a/db/1486.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1486, - "codeText": "TS1486", - "title": "Decorator used before 'export' here.", - "category": "error", - "documentation": "" -} diff --git a/db/1487.json b/db/1487.json deleted file mode 100644 index c13bd90..0000000 --- a/db/1487.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1487, - "codeText": "TS1487", - "title": "Octal escape sequences are not allowed. Use the syntax '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/1488.json b/db/1488.json deleted file mode 100644 index 1824c51..0000000 --- a/db/1488.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1488, - "codeText": "TS1488", - "title": "Escape sequence '{0}' is not allowed.", - "category": "error", - "documentation": "" -} diff --git a/db/1489.json b/db/1489.json deleted file mode 100644 index 660a931..0000000 --- a/db/1489.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1489, - "codeText": "TS1489", - "title": "Decimals with leading zeros are not allowed.", - "category": "error", - "documentation": "" -} diff --git a/db/1490.json b/db/1490.json deleted file mode 100644 index f4cad35..0000000 --- a/db/1490.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1490, - "codeText": "TS1490", - "title": "File appears to be binary.", - "category": "error", - "documentation": "" -} diff --git a/db/1491.json b/db/1491.json deleted file mode 100644 index 1ca62b6..0000000 --- a/db/1491.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1491, - "codeText": "TS1491", - "title": "'{0}' modifier cannot appear on a 'using' declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/1492.json b/db/1492.json deleted file mode 100644 index 3c2e1b2..0000000 --- a/db/1492.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1492, - "codeText": "TS1492", - "title": "'{0}' declarations may not have binding patterns.", - "category": "error", - "documentation": "" -} diff --git a/db/1493.json b/db/1493.json deleted file mode 100644 index 8c26842..0000000 --- a/db/1493.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1493, - "codeText": "TS1493", - "title": "The left-hand side of a 'for...in' statement cannot be a 'using' declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/1494.json b/db/1494.json deleted file mode 100644 index bc915a1..0000000 --- a/db/1494.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1494, - "codeText": "TS1494", - "title": "The left-hand side of a 'for...in' statement cannot be an 'await using' declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/1495.json b/db/1495.json deleted file mode 100644 index a40b941..0000000 --- a/db/1495.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 1495, - "codeText": "TS1495", - "title": "'{0}' modifier cannot appear on an 'await using' declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/17000.json b/db/17000.json deleted file mode 100644 index 3b86bfb..0000000 --- a/db/17000.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17000, - "codeText": "TS17000", - "title": "JSX attributes must only be assigned a non-empty 'expression'.", - "category": "error", - "documentation": "" -} diff --git a/db/17001.json b/db/17001.json deleted file mode 100644 index fb13971..0000000 --- a/db/17001.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17001, - "codeText": "TS17001", - "title": "JSX elements cannot have multiple attributes with the same name.", - "category": "error", - "documentation": "" -} diff --git a/db/17002.json b/db/17002.json deleted file mode 100644 index 6137e93..0000000 --- a/db/17002.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17002, - "codeText": "TS17002", - "title": "Expected corresponding JSX closing tag for '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/17004.json b/db/17004.json deleted file mode 100644 index afd8175..0000000 --- a/db/17004.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17004, - "codeText": "TS17004", - "title": "Cannot use JSX unless the '--jsx' flag is provided.", - "category": "error", - "documentation": "" -} diff --git a/db/17005.json b/db/17005.json deleted file mode 100644 index 02566a7..0000000 --- a/db/17005.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17005, - "codeText": "TS17005", - "title": "A constructor cannot contain a 'super' call when its class extends 'null'.", - "category": "error", - "documentation": "" -} diff --git a/db/17006.json b/db/17006.json deleted file mode 100644 index 8b5ba65..0000000 --- a/db/17006.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17006, - "codeText": "TS17006", - "title": "An unary expression with the '{0}' operator is not allowed in the left-hand side of an exponentiation expression. Consider enclosing the expression in parentheses.", - "category": "error", - "documentation": "" -} diff --git a/db/17007.json b/db/17007.json deleted file mode 100644 index db16194..0000000 --- a/db/17007.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17007, - "codeText": "TS17007", - "title": "A type assertion expression is not allowed in the left-hand side of an exponentiation expression. Consider enclosing the expression in parentheses.", - "category": "error", - "documentation": "" -} diff --git a/db/17008.json b/db/17008.json deleted file mode 100644 index 4885507..0000000 --- a/db/17008.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17008, - "codeText": "TS17008", - "title": "JSX element '{0}' has no corresponding closing tag.", - "category": "error", - "documentation": "" -} diff --git a/db/17009.json b/db/17009.json deleted file mode 100644 index 0bba48a..0000000 --- a/db/17009.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17009, - "codeText": "TS17009", - "title": "'super' must be called before accessing 'this' in the constructor of a derived class.", - "category": "error", - "documentation": "" -} diff --git a/db/17010.json b/db/17010.json deleted file mode 100644 index 2809a1e..0000000 --- a/db/17010.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17010, - "codeText": "TS17010", - "title": "Unknown type acquisition option '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/17011.json b/db/17011.json deleted file mode 100644 index e3c00c0..0000000 --- a/db/17011.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17011, - "codeText": "TS17011", - "title": "'super' must be called before accessing a property of 'super' in the constructor of a derived class.", - "category": "error", - "documentation": "" -} diff --git a/db/17012.json b/db/17012.json deleted file mode 100644 index 1ea5643..0000000 --- a/db/17012.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17012, - "codeText": "TS17012", - "title": "'{0}' is not a valid meta-property for keyword '{1}'. Did you mean '{2}'?", - "category": "error", - "documentation": "" -} diff --git a/db/17013.json b/db/17013.json deleted file mode 100644 index 5b02f72..0000000 --- a/db/17013.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17013, - "codeText": "TS17013", - "title": "Meta-property '{0}' is only allowed in the body of a function declaration, function expression, or constructor.", - "category": "error", - "documentation": "" -} diff --git a/db/17014.json b/db/17014.json deleted file mode 100644 index 40ac65e..0000000 --- a/db/17014.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17014, - "codeText": "TS17014", - "title": "JSX fragment has no corresponding closing tag.", - "category": "error", - "documentation": "" -} diff --git a/db/17015.json b/db/17015.json deleted file mode 100644 index 5ea63bd..0000000 --- a/db/17015.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17015, - "codeText": "TS17015", - "title": "Expected corresponding closing tag for JSX fragment.", - "category": "error", - "documentation": "" -} diff --git a/db/17016.json b/db/17016.json deleted file mode 100644 index 171983f..0000000 --- a/db/17016.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17016, - "codeText": "TS17016", - "title": "The 'jsxFragmentFactory' compiler option must be provided to use JSX fragments with the 'jsxFactory' compiler option.", - "category": "error", - "documentation": "" -} diff --git a/db/17017.json b/db/17017.json deleted file mode 100644 index 0d27f01..0000000 --- a/db/17017.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17017, - "codeText": "TS17017", - "title": "An @jsxFrag pragma is required when using an @jsx pragma with JSX fragments.", - "category": "error", - "documentation": "" -} diff --git a/db/17018.json b/db/17018.json deleted file mode 100644 index 415e798..0000000 --- a/db/17018.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17018, - "codeText": "TS17018", - "title": "Unknown type acquisition option '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" -} diff --git a/db/17019.json b/db/17019.json deleted file mode 100644 index 8366dbc..0000000 --- a/db/17019.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17019, - "codeText": "TS17019", - "title": "'{0}' at the end of a type is not valid TypeScript syntax. Did you mean to write '{1}'?", - "category": "error", - "documentation": "" -} diff --git a/db/17020.json b/db/17020.json deleted file mode 100644 index a2fc0e4..0000000 --- a/db/17020.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17020, - "codeText": "TS17020", - "title": "'{0}' at the start of a type is not valid TypeScript syntax. Did you mean to write '{1}'?", - "category": "error", - "documentation": "" -} diff --git a/db/17021.json b/db/17021.json deleted file mode 100644 index ada9f18..0000000 --- a/db/17021.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 17021, - "codeText": "TS17021", - "title": "Unicode escape sequence cannot appear here.", - "category": "error", - "documentation": "" -} diff --git a/db/18000.json b/db/18000.json deleted file mode 100644 index 0e4cb28..0000000 --- a/db/18000.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18000, - "codeText": "TS18000", - "title": "Circularity detected while resolving configuration: {0}", - "category": "error", - "documentation": "" -} diff --git a/db/18002.json b/db/18002.json deleted file mode 100644 index c485b52..0000000 --- a/db/18002.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18002, - "codeText": "TS18002", - "title": "The 'files' list in config file '{0}' is empty.", - "category": "error", - "documentation": "" -} diff --git a/db/18003.json b/db/18003.json deleted file mode 100644 index db13ea0..0000000 --- a/db/18003.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18003, - "codeText": "TS18003", - "title": "No inputs were found in config file '{0}'. Specified 'include' paths were '{1}' and 'exclude' paths were '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/18004.json b/db/18004.json deleted file mode 100644 index 0bcc862..0000000 --- a/db/18004.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18004, - "codeText": "TS18004", - "title": "No value exists in scope for the shorthand property '{0}'. Either declare one or provide an initializer.", - "category": "error", - "documentation": "" -} diff --git a/db/18006.json b/db/18006.json deleted file mode 100644 index 2d794aa..0000000 --- a/db/18006.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18006, - "codeText": "TS18006", - "title": "Classes may not have a field named 'constructor'.", - "category": "error", - "documentation": "" -} diff --git a/db/18007.json b/db/18007.json deleted file mode 100644 index f8140cc..0000000 --- a/db/18007.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18007, - "codeText": "TS18007", - "title": "JSX expressions may not use the comma operator. Did you mean to write an array?", - "category": "error", - "documentation": "" -} diff --git a/db/18009.json b/db/18009.json deleted file mode 100644 index 98573a7..0000000 --- a/db/18009.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18009, - "codeText": "TS18009", - "title": "Private identifiers cannot be used as parameters.", - "category": "error", - "documentation": "" -} diff --git a/db/18010.json b/db/18010.json deleted file mode 100644 index ea18929..0000000 --- a/db/18010.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18010, - "codeText": "TS18010", - "title": "An accessibility modifier cannot be used with a private identifier.", - "category": "error", - "documentation": "" -} diff --git a/db/18011.json b/db/18011.json deleted file mode 100644 index 18f9e1b..0000000 --- a/db/18011.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18011, - "codeText": "TS18011", - "title": "The operand of a 'delete' operator cannot be a private identifier.", - "category": "error", - "documentation": "" -} diff --git a/db/18012.json b/db/18012.json deleted file mode 100644 index b6f0008..0000000 --- a/db/18012.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18012, - "codeText": "TS18012", - "title": "'#constructor' is a reserved word.", - "category": "error", - "documentation": "" -} diff --git a/db/18013.json b/db/18013.json deleted file mode 100644 index 5fe59a7..0000000 --- a/db/18013.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18013, - "codeText": "TS18013", - "title": "Property '{0}' is not accessible outside class '{1}' because it has a private identifier.", - "category": "error", - "documentation": "" -} diff --git a/db/18014.json b/db/18014.json deleted file mode 100644 index 98fb16a..0000000 --- a/db/18014.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18014, - "codeText": "TS18014", - "title": "The property '{0}' cannot be accessed on type '{1}' within this class because it is shadowed by another private identifier with the same spelling.", - "category": "error", - "documentation": "" -} diff --git a/db/18015.json b/db/18015.json deleted file mode 100644 index b8dd476..0000000 --- a/db/18015.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18015, - "codeText": "TS18015", - "title": "Property '{0}' in type '{1}' refers to a different member that cannot be accessed from within type '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/18016.json b/db/18016.json deleted file mode 100644 index 2ed1a3c..0000000 --- a/db/18016.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18016, - "codeText": "TS18016", - "title": "Private identifiers are not allowed outside class bodies.", - "category": "error", - "documentation": "" -} diff --git a/db/18017.json b/db/18017.json deleted file mode 100644 index 88307b1..0000000 --- a/db/18017.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18017, - "codeText": "TS18017", - "title": "The shadowing declaration of '{0}' is defined here", - "category": "error", - "documentation": "" -} diff --git a/db/18018.json b/db/18018.json deleted file mode 100644 index 1f74cb8..0000000 --- a/db/18018.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18018, - "codeText": "TS18018", - "title": "The declaration of '{0}' that you probably intended to use is defined here", - "category": "error", - "documentation": "" -} diff --git a/db/18019.json b/db/18019.json deleted file mode 100644 index 21bf400..0000000 --- a/db/18019.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18019, - "codeText": "TS18019", - "title": "'{0}' modifier cannot be used with a private identifier.", - "category": "error", - "documentation": "" -} diff --git a/db/18024.json b/db/18024.json deleted file mode 100644 index 6773e88..0000000 --- a/db/18024.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18024, - "codeText": "TS18024", - "title": "An enum member cannot be named with a private identifier.", - "category": "error", - "documentation": "" -} diff --git a/db/18026.json b/db/18026.json deleted file mode 100644 index c291a66..0000000 --- a/db/18026.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18026, - "codeText": "TS18026", - "title": "'#!' can only be used at the start of a file.", - "category": "error", - "documentation": "" -} diff --git a/db/18027.json b/db/18027.json deleted file mode 100644 index 1d1dea1..0000000 --- a/db/18027.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18027, - "codeText": "TS18027", - "title": "Compiler reserves name '{0}' when emitting private identifier downlevel.", - "category": "error", - "documentation": "" -} diff --git a/db/18028.json b/db/18028.json deleted file mode 100644 index 1ed17d4..0000000 --- a/db/18028.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18028, - "codeText": "TS18028", - "title": "Private identifiers are only available when targeting ECMAScript 2015 and higher.", - "category": "error", - "documentation": "" -} diff --git a/db/18029.json b/db/18029.json deleted file mode 100644 index 791d119..0000000 --- a/db/18029.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18029, - "codeText": "TS18029", - "title": "Private identifiers are not allowed in variable declarations.", - "category": "error", - "documentation": "" -} diff --git a/db/18030.json b/db/18030.json deleted file mode 100644 index 20a2335..0000000 --- a/db/18030.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18030, - "codeText": "TS18030", - "title": "An optional chain cannot contain private identifiers.", - "category": "error", - "documentation": "" -} diff --git a/db/18031.json b/db/18031.json deleted file mode 100644 index 82d7ba4..0000000 --- a/db/18031.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18031, - "codeText": "TS18031", - "title": "The intersection '{0}' was reduced to 'never' because property '{1}' has conflicting types in some constituents.", - "category": "error", - "documentation": "" -} diff --git a/db/18032.json b/db/18032.json deleted file mode 100644 index e021ab5..0000000 --- a/db/18032.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18032, - "codeText": "TS18032", - "title": "The intersection '{0}' was reduced to 'never' because property '{1}' exists in multiple constituents and is private in some.", - "category": "error", - "documentation": "" -} diff --git a/db/18033.json b/db/18033.json deleted file mode 100644 index d0e3df0..0000000 --- a/db/18033.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18033, - "codeText": "TS18033", - "title": "Type '{0}' is not assignable to type '{1}' as required for computed enum member values.", - "category": "error", - "documentation": "" -} diff --git a/db/18034.json b/db/18034.json deleted file mode 100644 index f8ddcde..0000000 --- a/db/18034.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18034, - "codeText": "TS18034", - "title": "Specify the JSX fragment factory function to use when targeting 'react' JSX emit with 'jsxFactory' compiler option is specified, e.g. 'Fragment'.", - "category": "message", - "documentation": "" -} diff --git a/db/18035.json b/db/18035.json deleted file mode 100644 index ffcc086..0000000 --- a/db/18035.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18035, - "codeText": "TS18035", - "title": "Invalid value for 'jsxFragmentFactory'. '{0}' is not a valid identifier or qualified-name.", - "category": "error", - "documentation": "" -} diff --git a/db/18036.json b/db/18036.json deleted file mode 100644 index 65c55c5..0000000 --- a/db/18036.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18036, - "codeText": "TS18036", - "title": "Class decorators can't be used with static private identifier. Consider removing the experimental decorator.", - "category": "error", - "documentation": "" -} diff --git a/db/18037.json b/db/18037.json deleted file mode 100644 index 37d60f3..0000000 --- a/db/18037.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18037, - "codeText": "TS18037", - "title": "Await expression cannot be used inside a class static block.", - "category": "error", - "documentation": "" -} diff --git a/db/18038.json b/db/18038.json deleted file mode 100644 index ad14c9e..0000000 --- a/db/18038.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18038, - "codeText": "TS18038", - "title": "'For await' loops cannot be used inside a class static block.", - "category": "error", - "documentation": "" -} diff --git a/db/18039.json b/db/18039.json deleted file mode 100644 index 79b77a9..0000000 --- a/db/18039.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18039, - "codeText": "TS18039", - "title": "Invalid use of '{0}'. It cannot be used inside a class static block.", - "category": "error", - "documentation": "" -} diff --git a/db/18041.json b/db/18041.json deleted file mode 100644 index ca61355..0000000 --- a/db/18041.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18041, - "codeText": "TS18041", - "title": "A 'return' statement cannot be used inside a class static block.", - "category": "error", - "documentation": "" -} diff --git a/db/18042.json b/db/18042.json deleted file mode 100644 index 3585d75..0000000 --- a/db/18042.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18042, - "codeText": "TS18042", - "title": "'{0}' is a type and cannot be imported in JavaScript files. Use '{1}' in a JSDoc type annotation.", - "category": "error", - "documentation": "" -} diff --git a/db/18043.json b/db/18043.json deleted file mode 100644 index 40f2d76..0000000 --- a/db/18043.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18043, - "codeText": "TS18043", - "title": "Types cannot appear in export declarations in JavaScript files.", - "category": "error", - "documentation": "" -} diff --git a/db/18044.json b/db/18044.json deleted file mode 100644 index ad70f96..0000000 --- a/db/18044.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18044, - "codeText": "TS18044", - "title": "'{0}' is automatically exported here.", - "category": "message", - "documentation": "" -} diff --git a/db/18045.json b/db/18045.json deleted file mode 100644 index 2aa821a..0000000 --- a/db/18045.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18045, - "codeText": "TS18045", - "title": "Properties with the 'accessor' modifier are only available when targeting ECMAScript 2015 and higher.", - "category": "error", - "documentation": "" -} diff --git a/db/18046.json b/db/18046.json deleted file mode 100644 index 4ef6b21..0000000 --- a/db/18046.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18046, - "codeText": "TS18046", - "title": "'{0}' is of type 'unknown'.", - "category": "error", - "documentation": "" -} diff --git a/db/18047.json b/db/18047.json deleted file mode 100644 index 89d5ec2..0000000 --- a/db/18047.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18047, - "codeText": "TS18047", - "title": "'{0}' is possibly 'null'.", - "category": "error", - "documentation": "" -} diff --git a/db/18048.json b/db/18048.json deleted file mode 100644 index ada83f6..0000000 --- a/db/18048.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18048, - "codeText": "TS18048", - "title": "'{0}' is possibly 'undefined'.", - "category": "error", - "documentation": "" -} diff --git a/db/18049.json b/db/18049.json deleted file mode 100644 index 25d3eca..0000000 --- a/db/18049.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18049, - "codeText": "TS18049", - "title": "'{0}' is possibly 'null' or 'undefined'.", - "category": "error", - "documentation": "" -} diff --git a/db/18050.json b/db/18050.json deleted file mode 100644 index b470eaa..0000000 --- a/db/18050.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18050, - "codeText": "TS18050", - "title": "The value '{0}' cannot be used here.", - "category": "error", - "documentation": "" -} diff --git a/db/18051.json b/db/18051.json deleted file mode 100644 index 6f4d2b6..0000000 --- a/db/18051.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18051, - "codeText": "TS18051", - "title": "Compiler option '{0}' cannot be given an empty string.", - "category": "error", - "documentation": "" -} diff --git a/db/18052.json b/db/18052.json deleted file mode 100644 index 148aa96..0000000 --- a/db/18052.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18052, - "codeText": "TS18052", - "title": "Non-abstract class '{0}' does not implement all abstract members of '{1}'", - "category": "error", - "documentation": "" -} diff --git a/db/18053.json b/db/18053.json deleted file mode 100644 index 1e200f6..0000000 --- a/db/18053.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18053, - "codeText": "TS18053", - "title": "Its type '{0}' is not a valid JSX element type.", - "category": "error", - "documentation": "" -} diff --git a/db/18054.json b/db/18054.json deleted file mode 100644 index 3e1efd1..0000000 --- a/db/18054.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 18054, - "codeText": "TS18054", - "title": "'await using' statements cannot be used inside a class static block.", - "category": "error", - "documentation": "" -} diff --git a/db/2200.json b/db/2200.json deleted file mode 100644 index ea4bfec..0000000 --- a/db/2200.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2200, - "codeText": "TS2200", - "title": "The types of '{0}' are incompatible between these types.", - "category": "error", - "documentation": "" -} diff --git a/db/2201.json b/db/2201.json deleted file mode 100644 index 38f30f8..0000000 --- a/db/2201.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2201, - "codeText": "TS2201", - "title": "The types returned by '{0}' are incompatible between these types.", - "category": "error", - "documentation": "" -} diff --git a/db/2202.json b/db/2202.json deleted file mode 100644 index 5384d93..0000000 --- a/db/2202.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2202, - "codeText": "TS2202", - "title": "Call signature return types '{0}' and '{1}' are incompatible.", - "category": "error", - "documentation": "" -} diff --git a/db/2203.json b/db/2203.json deleted file mode 100644 index d56eeee..0000000 --- a/db/2203.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2203, - "codeText": "TS2203", - "title": "Construct signature return types '{0}' and '{1}' are incompatible.", - "category": "error", - "documentation": "" -} diff --git a/db/2204.json b/db/2204.json deleted file mode 100644 index 1625a35..0000000 --- a/db/2204.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2204, - "codeText": "TS2204", - "title": "Call signatures with no arguments have incompatible return types '{0}' and '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2205.json b/db/2205.json deleted file mode 100644 index be72342..0000000 --- a/db/2205.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2205, - "codeText": "TS2205", - "title": "Construct signatures with no arguments have incompatible return types '{0}' and '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2206.json b/db/2206.json deleted file mode 100644 index da69c62..0000000 --- a/db/2206.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2206, - "codeText": "TS2206", - "title": "The 'type' modifier cannot be used on a named import when 'import type' is used on its import statement.", - "category": "error", - "documentation": "" -} diff --git a/db/2207.json b/db/2207.json deleted file mode 100644 index a996702..0000000 --- a/db/2207.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2207, - "codeText": "TS2207", - "title": "The 'type' modifier cannot be used on a named export when 'export type' is used on its export statement.", - "category": "error", - "documentation": "" -} diff --git a/db/2208.json b/db/2208.json deleted file mode 100644 index 382cb19..0000000 --- a/db/2208.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2208, - "codeText": "TS2208", - "title": "This type parameter might need an `extends {0}` constraint.", - "category": "error", - "documentation": "" -} diff --git a/db/2209.json b/db/2209.json deleted file mode 100644 index f084e26..0000000 --- a/db/2209.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2209, - "codeText": "TS2209", - "title": "The project root is ambiguous, but is required to resolve export map entry '{0}' in file '{1}'. Supply the `rootDir` compiler option to disambiguate.", - "category": "error", - "documentation": "" -} diff --git a/db/2210.json b/db/2210.json deleted file mode 100644 index d1a1157..0000000 --- a/db/2210.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2210, - "codeText": "TS2210", - "title": "The project root is ambiguous, but is required to resolve import map entry '{0}' in file '{1}'. Supply the `rootDir` compiler option to disambiguate.", - "category": "error", - "documentation": "" -} diff --git a/db/2211.json b/db/2211.json deleted file mode 100644 index bff5653..0000000 --- a/db/2211.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2211, - "codeText": "TS2211", - "title": "Add `extends` constraint.", - "category": "message", - "documentation": "" -} diff --git a/db/2212.json b/db/2212.json deleted file mode 100644 index 9889245..0000000 --- a/db/2212.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2212, - "codeText": "TS2212", - "title": "Add `extends` constraint to all type parameters", - "category": "message", - "documentation": "" -} diff --git a/db/2300.json b/db/2300.json deleted file mode 100644 index 092de75..0000000 --- a/db/2300.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2300, - "codeText": "TS2300", - "title": "Duplicate identifier '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2301.json b/db/2301.json deleted file mode 100644 index 6a5827f..0000000 --- a/db/2301.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2301, - "codeText": "TS2301", - "title": "Initializer of instance member variable '{0}' cannot reference identifier '{1}' declared in the constructor.", - "category": "error", - "documentation": "" -} diff --git a/db/2302.json b/db/2302.json deleted file mode 100644 index 70d0202..0000000 --- a/db/2302.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2302, - "codeText": "TS2302", - "title": "Static members cannot reference class type parameters.", - "category": "error", - "documentation": "" -} diff --git a/db/2303.json b/db/2303.json deleted file mode 100644 index c76003e..0000000 --- a/db/2303.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2303, - "codeText": "TS2303", - "title": "Circular definition of import alias '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2304.json b/db/2304.json deleted file mode 100644 index c070ab1..0000000 --- a/db/2304.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2304, - "codeText": "TS2304", - "title": "Cannot find name '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2305.json b/db/2305.json deleted file mode 100644 index de891b2..0000000 --- a/db/2305.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2305, - "codeText": "TS2305", - "title": "Module '{0}' has no exported member '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2306.json b/db/2306.json deleted file mode 100644 index 74c302d..0000000 --- a/db/2306.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2306, - "codeText": "TS2306", - "title": "File '{0}' is not a module.", - "category": "error", - "documentation": "" -} diff --git a/db/2307.json b/db/2307.json deleted file mode 100644 index 0cf3ac2..0000000 --- a/db/2307.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2307, - "codeText": "TS2307", - "title": "Cannot find module '{0}' or its corresponding type declarations.", - "category": "error", - "documentation": "" -} diff --git a/db/2308.json b/db/2308.json deleted file mode 100644 index 2de504a..0000000 --- a/db/2308.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2308, - "codeText": "TS2308", - "title": "Module {0} has already exported a member named '{1}'. Consider explicitly re-exporting to resolve the ambiguity.", - "category": "error", - "documentation": "" -} diff --git a/db/2309.json b/db/2309.json deleted file mode 100644 index 54453ac..0000000 --- a/db/2309.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2309, - "codeText": "TS2309", - "title": "An export assignment cannot be used in a module with other exported elements.", - "category": "error", - "documentation": "" -} diff --git a/db/2310.json b/db/2310.json deleted file mode 100644 index 842f7a7..0000000 --- a/db/2310.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2310, - "codeText": "TS2310", - "title": "Type '{0}' recursively references itself as a base type.", - "category": "error", - "documentation": "" -} diff --git a/db/2311.json b/db/2311.json deleted file mode 100644 index 9f48244..0000000 --- a/db/2311.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2311, - "codeText": "TS2311", - "title": "Cannot find name '{0}'. Did you mean to write this in an async function?", - "category": "error", - "documentation": "" -} diff --git a/db/2312.json b/db/2312.json deleted file mode 100644 index f96e14d..0000000 --- a/db/2312.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2312, - "codeText": "TS2312", - "title": "An interface can only extend an object type or intersection of object types with statically known members.", - "category": "error", - "documentation": "" -} diff --git a/db/2313.json b/db/2313.json deleted file mode 100644 index 6ddc357..0000000 --- a/db/2313.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2313, - "codeText": "TS2313", - "title": "Type parameter '{0}' has a circular constraint.", - "category": "error", - "documentation": "" -} diff --git a/db/2314.json b/db/2314.json deleted file mode 100644 index 2f92df0..0000000 --- a/db/2314.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2314, - "codeText": "TS2314", - "title": "Generic type '{0}' requires {1} type argument(s).", - "category": "error", - "documentation": "" -} diff --git a/db/2315.json b/db/2315.json deleted file mode 100644 index 1e332b8..0000000 --- a/db/2315.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2315, - "codeText": "TS2315", - "title": "Type '{0}' is not generic.", - "category": "error", - "documentation": "" -} diff --git a/db/2316.json b/db/2316.json deleted file mode 100644 index 173c2a0..0000000 --- a/db/2316.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2316, - "codeText": "TS2316", - "title": "Global type '{0}' must be a class or interface type.", - "category": "error", - "documentation": "" -} diff --git a/db/2317.json b/db/2317.json deleted file mode 100644 index 4b0faa6..0000000 --- a/db/2317.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2317, - "codeText": "TS2317", - "title": "Global type '{0}' must have {1} type parameter(s).", - "category": "error", - "documentation": "" -} diff --git a/db/2318.json b/db/2318.json deleted file mode 100644 index d8ecd2c..0000000 --- a/db/2318.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2318, - "codeText": "TS2318", - "title": "Cannot find global type '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2319.json b/db/2319.json deleted file mode 100644 index 048d5ad..0000000 --- a/db/2319.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2319, - "codeText": "TS2319", - "title": "Named property '{0}' of types '{1}' and '{2}' are not identical.", - "category": "error", - "documentation": "" -} diff --git a/db/2320.json b/db/2320.json deleted file mode 100644 index dbecbc3..0000000 --- a/db/2320.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2320, - "codeText": "TS2320", - "title": "Interface '{0}' cannot simultaneously extend types '{1}' and '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2321.json b/db/2321.json deleted file mode 100644 index 49fc3e9..0000000 --- a/db/2321.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2321, - "codeText": "TS2321", - "title": "Excessive stack depth comparing types '{0}' and '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2322.json b/db/2322.json deleted file mode 100644 index cc94813..0000000 --- a/db/2322.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2322, - "codeText": "TS2322", - "title": "Type '{0}' is not assignable to type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2323.json b/db/2323.json deleted file mode 100644 index 36d13af..0000000 --- a/db/2323.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2323, - "codeText": "TS2323", - "title": "Cannot redeclare exported variable '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2324.json b/db/2324.json deleted file mode 100644 index 2066726..0000000 --- a/db/2324.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2324, - "codeText": "TS2324", - "title": "Property '{0}' is missing in type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2325.json b/db/2325.json deleted file mode 100644 index a695885..0000000 --- a/db/2325.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2325, - "codeText": "TS2325", - "title": "Property '{0}' is private in type '{1}' but not in type '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2326.json b/db/2326.json deleted file mode 100644 index c2a7cc5..0000000 --- a/db/2326.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2326, - "codeText": "TS2326", - "title": "Types of property '{0}' are incompatible.", - "category": "error", - "documentation": "" -} diff --git a/db/2327.json b/db/2327.json deleted file mode 100644 index 19a597e..0000000 --- a/db/2327.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2327, - "codeText": "TS2327", - "title": "Property '{0}' is optional in type '{1}' but required in type '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2328.json b/db/2328.json deleted file mode 100644 index 3f9cbc4..0000000 --- a/db/2328.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2328, - "codeText": "TS2328", - "title": "Types of parameters '{0}' and '{1}' are incompatible.", - "category": "error", - "documentation": "" -} diff --git a/db/2329.json b/db/2329.json deleted file mode 100644 index 6f17bd2..0000000 --- a/db/2329.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2329, - "codeText": "TS2329", - "title": "Index signature for type '{0}' is missing in type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2330.json b/db/2330.json deleted file mode 100644 index e4545ba..0000000 --- a/db/2330.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2330, - "codeText": "TS2330", - "title": "'{0}' and '{1}' index signatures are incompatible.", - "category": "error", - "documentation": "" -} diff --git a/db/2331.json b/db/2331.json deleted file mode 100644 index 54afa0b..0000000 --- a/db/2331.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2331, - "codeText": "TS2331", - "title": "'this' cannot be referenced in a module or namespace body.", - "category": "error", - "documentation": "" -} diff --git a/db/2332.json b/db/2332.json deleted file mode 100644 index 0bf3ed3..0000000 --- a/db/2332.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2332, - "codeText": "TS2332", - "title": "'this' cannot be referenced in current location.", - "category": "error", - "documentation": "" -} diff --git a/db/2333.json b/db/2333.json deleted file mode 100644 index 2bc8062..0000000 --- a/db/2333.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2333, - "codeText": "TS2333", - "title": "'this' cannot be referenced in constructor arguments.", - "category": "error", - "documentation": "" -} diff --git a/db/2334.json b/db/2334.json deleted file mode 100644 index f962bdc..0000000 --- a/db/2334.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2334, - "codeText": "TS2334", - "title": "'this' cannot be referenced in a static property initializer.", - "category": "error", - "documentation": "" -} diff --git a/db/2335.json b/db/2335.json deleted file mode 100644 index 2a025da..0000000 --- a/db/2335.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2335, - "codeText": "TS2335", - "title": "'super' can only be referenced in a derived class.", - "category": "error", - "documentation": "" -} diff --git a/db/2336.json b/db/2336.json deleted file mode 100644 index 082b9e9..0000000 --- a/db/2336.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2336, - "codeText": "TS2336", - "title": "'super' cannot be referenced in constructor arguments.", - "category": "error", - "documentation": "" -} diff --git a/db/2337.json b/db/2337.json deleted file mode 100644 index 6ee92ba..0000000 --- a/db/2337.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2337, - "codeText": "TS2337", - "title": "Super calls are not permitted outside constructors or in nested functions inside constructors.", - "category": "error", - "documentation": "" -} diff --git a/db/2338.json b/db/2338.json deleted file mode 100644 index 32894d4..0000000 --- a/db/2338.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2338, - "codeText": "TS2338", - "title": "'super' property access is permitted only in a constructor, member function, or member accessor of a derived class.", - "category": "error", - "documentation": "" -} diff --git a/db/2339.json b/db/2339.json deleted file mode 100644 index ef0f15a..0000000 --- a/db/2339.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2339, - "codeText": "TS2339", - "title": "Property '{0}' does not exist on type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2340.json b/db/2340.json deleted file mode 100644 index 256f781..0000000 --- a/db/2340.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2340, - "codeText": "TS2340", - "title": "Only public and protected methods of the base class are accessible via the 'super' keyword.", - "category": "error", - "documentation": "" -} diff --git a/db/2341.json b/db/2341.json deleted file mode 100644 index 5bbd1bc..0000000 --- a/db/2341.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2341, - "codeText": "TS2341", - "title": "Property '{0}' is private and only accessible within class '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2343.json b/db/2343.json deleted file mode 100644 index bf1a4a7..0000000 --- a/db/2343.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2343, - "codeText": "TS2343", - "title": "This syntax requires an imported helper named '{1}' which does not exist in '{0}'. Consider upgrading your version of '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2344.json b/db/2344.json deleted file mode 100644 index 5ffe190..0000000 --- a/db/2344.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2344, - "codeText": "TS2344", - "title": "Type '{0}' does not satisfy the constraint '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2345.json b/db/2345.json deleted file mode 100644 index 18796f2..0000000 --- a/db/2345.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2345, - "codeText": "TS2345", - "title": "Argument of type '{0}' is not assignable to parameter of type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2346.json b/db/2346.json deleted file mode 100644 index 19c005a..0000000 --- a/db/2346.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2346, - "codeText": "TS2346", - "title": "Call target does not contain any signatures.", - "category": "error", - "documentation": "" -} diff --git a/db/2347.json b/db/2347.json deleted file mode 100644 index 98f6b2b..0000000 --- a/db/2347.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2347, - "codeText": "TS2347", - "title": "Untyped function calls may not accept type arguments.", - "category": "error", - "documentation": "" -} diff --git a/db/2348.json b/db/2348.json deleted file mode 100644 index f93dc98..0000000 --- a/db/2348.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2348, - "codeText": "TS2348", - "title": "Value of type '{0}' is not callable. Did you mean to include 'new'?", - "category": "error", - "documentation": "" -} diff --git a/db/2349.json b/db/2349.json deleted file mode 100644 index 1e37f57..0000000 --- a/db/2349.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2349, - "codeText": "TS2349", - "title": "This expression is not callable.", - "category": "error", - "documentation": "" -} diff --git a/db/2350.json b/db/2350.json deleted file mode 100644 index 3355e9a..0000000 --- a/db/2350.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2350, - "codeText": "TS2350", - "title": "Only a void function can be called with the 'new' keyword.", - "category": "error", - "documentation": "" -} diff --git a/db/2351.json b/db/2351.json deleted file mode 100644 index 11ce182..0000000 --- a/db/2351.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2351, - "codeText": "TS2351", - "title": "This expression is not constructable.", - "category": "error", - "documentation": "" -} diff --git a/db/2352.json b/db/2352.json deleted file mode 100644 index 6b8d6a9..0000000 --- a/db/2352.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2352, - "codeText": "TS2352", - "title": "Conversion of type '{0}' to type '{1}' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.", - "category": "error", - "documentation": "" -} diff --git a/db/2353.json b/db/2353.json deleted file mode 100644 index 15d69a9..0000000 --- a/db/2353.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2353, - "codeText": "TS2353", - "title": "Object literal may only specify known properties, and '{0}' does not exist in type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2354.json b/db/2354.json deleted file mode 100644 index 1f53eaf..0000000 --- a/db/2354.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2354, - "codeText": "TS2354", - "title": "This syntax requires an imported helper but module '{0}' cannot be found.", - "category": "error", - "documentation": "" -} diff --git a/db/2355.json b/db/2355.json deleted file mode 100644 index ba1f20b..0000000 --- a/db/2355.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2355, - "codeText": "TS2355", - "title": "A function whose declared type is neither 'void' nor 'any' must return a value.", - "category": "error", - "documentation": "" -} diff --git a/db/2356.json b/db/2356.json deleted file mode 100644 index 5237d96..0000000 --- a/db/2356.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2356, - "codeText": "TS2356", - "title": "An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.", - "category": "error", - "documentation": "" -} diff --git a/db/2357.json b/db/2357.json deleted file mode 100644 index f305ae4..0000000 --- a/db/2357.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2357, - "codeText": "TS2357", - "title": "The operand of an increment or decrement operator must be a variable or a property access.", - "category": "error", - "documentation": "" -} diff --git a/db/2358.json b/db/2358.json deleted file mode 100644 index f70bd25..0000000 --- a/db/2358.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2358, - "codeText": "TS2358", - "title": "The left-hand side of an 'instanceof' expression must be of type 'any', an object type or a type parameter.", - "category": "error", - "documentation": "" -} diff --git a/db/2359.json b/db/2359.json deleted file mode 100644 index e583255..0000000 --- a/db/2359.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2359, - "codeText": "TS2359", - "title": "The right-hand side of an 'instanceof' expression must be of type 'any' or of a type assignable to the 'Function' interface type.", - "category": "error", - "documentation": "" -} diff --git a/db/2362.json b/db/2362.json deleted file mode 100644 index f359b1a..0000000 --- a/db/2362.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2362, - "codeText": "TS2362", - "title": "The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.", - "category": "error", - "documentation": "" -} diff --git a/db/2363.json b/db/2363.json deleted file mode 100644 index e06418b..0000000 --- a/db/2363.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2363, - "codeText": "TS2363", - "title": "The right-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.", - "category": "error", - "documentation": "" -} diff --git a/db/2364.json b/db/2364.json deleted file mode 100644 index 6d0e57a..0000000 --- a/db/2364.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2364, - "codeText": "TS2364", - "title": "The left-hand side of an assignment expression must be a variable or a property access.", - "category": "error", - "documentation": "" -} diff --git a/db/2365.json b/db/2365.json deleted file mode 100644 index 12de624..0000000 --- a/db/2365.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2365, - "codeText": "TS2365", - "title": "Operator '{0}' cannot be applied to types '{1}' and '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2366.json b/db/2366.json deleted file mode 100644 index 15c5c56..0000000 --- a/db/2366.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2366, - "codeText": "TS2366", - "title": "Function lacks ending return statement and return type does not include 'undefined'.", - "category": "error", - "documentation": "" -} diff --git a/db/2367.json b/db/2367.json deleted file mode 100644 index 6d07881..0000000 --- a/db/2367.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2367, - "codeText": "TS2367", - "title": "This comparison appears to be unintentional because the types '{0}' and '{1}' have no overlap.", - "category": "error", - "documentation": "" -} diff --git a/db/2368.json b/db/2368.json deleted file mode 100644 index ecd78cd..0000000 --- a/db/2368.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2368, - "codeText": "TS2368", - "title": "Type parameter name cannot be '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2369.json b/db/2369.json deleted file mode 100644 index a9dff25..0000000 --- a/db/2369.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2369, - "codeText": "TS2369", - "title": "A parameter property is only allowed in a constructor implementation.", - "category": "error", - "documentation": "" -} diff --git a/db/2370.json b/db/2370.json deleted file mode 100644 index 1db1d69..0000000 --- a/db/2370.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2370, - "codeText": "TS2370", - "title": "A rest parameter must be of an array type.", - "category": "error", - "documentation": "" -} diff --git a/db/2371.json b/db/2371.json deleted file mode 100644 index 8b2461c..0000000 --- a/db/2371.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2371, - "codeText": "TS2371", - "title": "A parameter initializer is only allowed in a function or constructor implementation.", - "category": "error", - "documentation": "" -} diff --git a/db/2372.json b/db/2372.json deleted file mode 100644 index 5e77c61..0000000 --- a/db/2372.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2372, - "codeText": "TS2372", - "title": "Parameter '{0}' cannot reference itself.", - "category": "error", - "documentation": "" -} diff --git a/db/2373.json b/db/2373.json deleted file mode 100644 index 7bc3586..0000000 --- a/db/2373.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2373, - "codeText": "TS2373", - "title": "Parameter '{0}' cannot reference identifier '{1}' declared after it.", - "category": "error", - "documentation": "" -} diff --git a/db/2374.json b/db/2374.json deleted file mode 100644 index 3a90801..0000000 --- a/db/2374.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2374, - "codeText": "TS2374", - "title": "Duplicate index signature for type '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2375.json b/db/2375.json deleted file mode 100644 index 1a1bee3..0000000 --- a/db/2375.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2375, - "codeText": "TS2375", - "title": "Type '{0}' is not assignable to type '{1}' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.", - "category": "error", - "documentation": "" -} diff --git a/db/2376.json b/db/2376.json deleted file mode 100644 index 1870698..0000000 --- a/db/2376.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2376, - "codeText": "TS2376", - "title": "A 'super' call must be the first statement in the constructor to refer to 'super' or 'this' when a derived class contains initialized properties, parameter properties, or private identifiers.", - "category": "error", - "documentation": "" -} diff --git a/db/2377.json b/db/2377.json deleted file mode 100644 index 6a8f5a9..0000000 --- a/db/2377.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2377, - "codeText": "TS2377", - "title": "Constructors for derived classes must contain a 'super' call.", - "category": "error", - "documentation": "" -} diff --git a/db/2378.json b/db/2378.json deleted file mode 100644 index 90349a4..0000000 --- a/db/2378.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2378, - "codeText": "TS2378", - "title": "A 'get' accessor must return a value.", - "category": "error", - "documentation": "" -} diff --git a/db/2379.json b/db/2379.json deleted file mode 100644 index 7eea089..0000000 --- a/db/2379.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2379, - "codeText": "TS2379", - "title": "Argument of type '{0}' is not assignable to parameter of type '{1}' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.", - "category": "error", - "documentation": "" -} diff --git a/db/2380.json b/db/2380.json deleted file mode 100644 index 9a97b5d..0000000 --- a/db/2380.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2380, - "codeText": "TS2380", - "title": "The return type of a 'get' accessor must be assignable to its 'set' accessor type", - "category": "error", - "documentation": "" -} diff --git a/db/2383.json b/db/2383.json deleted file mode 100644 index e3855cd..0000000 --- a/db/2383.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2383, - "codeText": "TS2383", - "title": "Overload signatures must all be exported or non-exported.", - "category": "error", - "documentation": "" -} diff --git a/db/2384.json b/db/2384.json deleted file mode 100644 index 11d737c..0000000 --- a/db/2384.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2384, - "codeText": "TS2384", - "title": "Overload signatures must all be ambient or non-ambient.", - "category": "error", - "documentation": "" -} diff --git a/db/2385.json b/db/2385.json deleted file mode 100644 index a2ca9fa..0000000 --- a/db/2385.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2385, - "codeText": "TS2385", - "title": "Overload signatures must all be public, private or protected.", - "category": "error", - "documentation": "" -} diff --git a/db/2386.json b/db/2386.json deleted file mode 100644 index 89545b5..0000000 --- a/db/2386.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2386, - "codeText": "TS2386", - "title": "Overload signatures must all be optional or required.", - "category": "error", - "documentation": "" -} diff --git a/db/2387.json b/db/2387.json deleted file mode 100644 index 2c117ee..0000000 --- a/db/2387.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2387, - "codeText": "TS2387", - "title": "Function overload must be static.", - "category": "error", - "documentation": "" -} diff --git a/db/2388.json b/db/2388.json deleted file mode 100644 index 3110e2f..0000000 --- a/db/2388.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2388, - "codeText": "TS2388", - "title": "Function overload must not be static.", - "category": "error", - "documentation": "" -} diff --git a/db/2389.json b/db/2389.json deleted file mode 100644 index c865280..0000000 --- a/db/2389.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2389, - "codeText": "TS2389", - "title": "Function implementation name must be '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2390.json b/db/2390.json deleted file mode 100644 index ed89848..0000000 --- a/db/2390.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2390, - "codeText": "TS2390", - "title": "Constructor implementation is missing.", - "category": "error", - "documentation": "" -} diff --git a/db/2391.json b/db/2391.json deleted file mode 100644 index 197b051..0000000 --- a/db/2391.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2391, - "codeText": "TS2391", - "title": "Function implementation is missing or not immediately following the declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/2392.json b/db/2392.json deleted file mode 100644 index 46117a2..0000000 --- a/db/2392.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2392, - "codeText": "TS2392", - "title": "Multiple constructor implementations are not allowed.", - "category": "error", - "documentation": "" -} diff --git a/db/2393.json b/db/2393.json deleted file mode 100644 index 9f9b0d8..0000000 --- a/db/2393.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2393, - "codeText": "TS2393", - "title": "Duplicate function implementation.", - "category": "error", - "documentation": "" -} diff --git a/db/2394.json b/db/2394.json deleted file mode 100644 index 7f94bbf..0000000 --- a/db/2394.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2394, - "codeText": "TS2394", - "title": "This overload signature is not compatible with its implementation signature.", - "category": "error", - "documentation": "" -} diff --git a/db/2395.json b/db/2395.json deleted file mode 100644 index cdf9e0e..0000000 --- a/db/2395.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2395, - "codeText": "TS2395", - "title": "Individual declarations in merged declaration '{0}' must be all exported or all local.", - "category": "error", - "documentation": "" -} diff --git a/db/2396.json b/db/2396.json deleted file mode 100644 index 45ad860..0000000 --- a/db/2396.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2396, - "codeText": "TS2396", - "title": "Duplicate identifier 'arguments'. Compiler uses 'arguments' to initialize rest parameters.", - "category": "error", - "documentation": "" -} diff --git a/db/2397.json b/db/2397.json deleted file mode 100644 index d8a733a..0000000 --- a/db/2397.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2397, - "codeText": "TS2397", - "title": "Declaration name conflicts with built-in global identifier '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2398.json b/db/2398.json deleted file mode 100644 index 05f5cfc..0000000 --- a/db/2398.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2398, - "codeText": "TS2398", - "title": "'constructor' cannot be used as a parameter property name.", - "category": "error", - "documentation": "" -} diff --git a/db/2399.json b/db/2399.json deleted file mode 100644 index fa96a16..0000000 --- a/db/2399.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2399, - "codeText": "TS2399", - "title": "Duplicate identifier '_this'. Compiler uses variable declaration '_this' to capture 'this' reference.", - "category": "error", - "documentation": "" -} diff --git a/db/2400.json b/db/2400.json deleted file mode 100644 index 0967062..0000000 --- a/db/2400.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2400, - "codeText": "TS2400", - "title": "Expression resolves to variable declaration '_this' that compiler uses to capture 'this' reference.", - "category": "error", - "documentation": "" -} diff --git a/db/2401.json b/db/2401.json deleted file mode 100644 index 353dfc5..0000000 --- a/db/2401.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2401, - "codeText": "TS2401", - "title": "A 'super' call must be a root-level statement within a constructor of a derived class that contains initialized properties, parameter properties, or private identifiers.", - "category": "error", - "documentation": "" -} diff --git a/db/2402.json b/db/2402.json deleted file mode 100644 index 09da1df..0000000 --- a/db/2402.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2402, - "codeText": "TS2402", - "title": "Expression resolves to '_super' that compiler uses to capture base class reference.", - "category": "error", - "documentation": "" -} diff --git a/db/2403.json b/db/2403.json deleted file mode 100644 index ee1da28..0000000 --- a/db/2403.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2403, - "codeText": "TS2403", - "title": "Subsequent variable declarations must have the same type. Variable '{0}' must be of type '{1}', but here has type '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2404.json b/db/2404.json deleted file mode 100644 index b5c3d8f..0000000 --- a/db/2404.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2404, - "codeText": "TS2404", - "title": "The left-hand side of a 'for...in' statement cannot use a type annotation.", - "category": "error", - "documentation": "" -} diff --git a/db/2405.json b/db/2405.json deleted file mode 100644 index 04f788a..0000000 --- a/db/2405.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2405, - "codeText": "TS2405", - "title": "The left-hand side of a 'for...in' statement must be of type 'string' or 'any'.", - "category": "error", - "documentation": "" -} diff --git a/db/2406.json b/db/2406.json deleted file mode 100644 index d0982ea..0000000 --- a/db/2406.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2406, - "codeText": "TS2406", - "title": "The left-hand side of a 'for...in' statement must be a variable or a property access.", - "category": "error", - "documentation": "" -} diff --git a/db/2407.json b/db/2407.json deleted file mode 100644 index 7f27c81..0000000 --- a/db/2407.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2407, - "codeText": "TS2407", - "title": "The right-hand side of a 'for...in' statement must be of type 'any', an object type or a type parameter, but here has type '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2408.json b/db/2408.json deleted file mode 100644 index aca2bb9..0000000 --- a/db/2408.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2408, - "codeText": "TS2408", - "title": "Setters cannot return a value.", - "category": "error", - "documentation": "" -} diff --git a/db/2409.json b/db/2409.json deleted file mode 100644 index 0273ab0..0000000 --- a/db/2409.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2409, - "codeText": "TS2409", - "title": "Return type of constructor signature must be assignable to the instance type of the class.", - "category": "error", - "documentation": "" -} diff --git a/db/2410.json b/db/2410.json deleted file mode 100644 index 06849e8..0000000 --- a/db/2410.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2410, - "codeText": "TS2410", - "title": "The 'with' statement is not supported. All symbols in a 'with' block will have type 'any'.", - "category": "error", - "documentation": "" -} diff --git a/db/2411.json b/db/2411.json deleted file mode 100644 index 2b7e488..0000000 --- a/db/2411.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2411, - "codeText": "TS2411", - "title": "Property '{0}' of type '{1}' is not assignable to '{2}' index type '{3}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2412.json b/db/2412.json deleted file mode 100644 index 0ad42c8..0000000 --- a/db/2412.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2412, - "codeText": "TS2412", - "title": "Type '{0}' is not assignable to type '{1}' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the type of the target.", - "category": "error", - "documentation": "" -} diff --git a/db/2413.json b/db/2413.json deleted file mode 100644 index a3dd872..0000000 --- a/db/2413.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2413, - "codeText": "TS2413", - "title": "'{0}' index type '{1}' is not assignable to '{2}' index type '{3}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2414.json b/db/2414.json deleted file mode 100644 index 0dba73b..0000000 --- a/db/2414.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2414, - "codeText": "TS2414", - "title": "Class name cannot be '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2415.json b/db/2415.json deleted file mode 100644 index de69910..0000000 --- a/db/2415.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2415, - "codeText": "TS2415", - "title": "Class '{0}' incorrectly extends base class '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2416.json b/db/2416.json deleted file mode 100644 index 3491bf0..0000000 --- a/db/2416.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2416, - "codeText": "TS2416", - "title": "Property '{0}' in type '{1}' is not assignable to the same property in base type '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2417.json b/db/2417.json deleted file mode 100644 index ec3e1c9..0000000 --- a/db/2417.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2417, - "codeText": "TS2417", - "title": "Class static side '{0}' incorrectly extends base class static side '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2418.json b/db/2418.json deleted file mode 100644 index fabc0b0..0000000 --- a/db/2418.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2418, - "codeText": "TS2418", - "title": "Type of computed property's value is '{0}', which is not assignable to type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2419.json b/db/2419.json deleted file mode 100644 index 8d5bf59..0000000 --- a/db/2419.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2419, - "codeText": "TS2419", - "title": "Types of construct signatures are incompatible.", - "category": "error", - "documentation": "" -} diff --git a/db/2420.json b/db/2420.json deleted file mode 100644 index 1578045..0000000 --- a/db/2420.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2420, - "codeText": "TS2420", - "title": "Class '{0}' incorrectly implements interface '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2422.json b/db/2422.json deleted file mode 100644 index 238cfd5..0000000 --- a/db/2422.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2422, - "codeText": "TS2422", - "title": "A class can only implement an object type or intersection of object types with statically known members.", - "category": "error", - "documentation": "" -} diff --git a/db/2423.json b/db/2423.json deleted file mode 100644 index b031853..0000000 --- a/db/2423.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2423, - "codeText": "TS2423", - "title": "Class '{0}' defines instance member function '{1}', but extended class '{2}' defines it as instance member accessor.", - "category": "error", - "documentation": "" -} diff --git a/db/2425.json b/db/2425.json deleted file mode 100644 index ebd213d..0000000 --- a/db/2425.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2425, - "codeText": "TS2425", - "title": "Class '{0}' defines instance member property '{1}', but extended class '{2}' defines it as instance member function.", - "category": "error", - "documentation": "" -} diff --git a/db/2426.json b/db/2426.json deleted file mode 100644 index d5c6245..0000000 --- a/db/2426.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2426, - "codeText": "TS2426", - "title": "Class '{0}' defines instance member accessor '{1}', but extended class '{2}' defines it as instance member function.", - "category": "error", - "documentation": "" -} diff --git a/db/2427.json b/db/2427.json deleted file mode 100644 index fa472f6..0000000 --- a/db/2427.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2427, - "codeText": "TS2427", - "title": "Interface name cannot be '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2428.json b/db/2428.json deleted file mode 100644 index ec543bf..0000000 --- a/db/2428.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2428, - "codeText": "TS2428", - "title": "All declarations of '{0}' must have identical type parameters.", - "category": "error", - "documentation": "" -} diff --git a/db/2430.json b/db/2430.json deleted file mode 100644 index 85ccda1..0000000 --- a/db/2430.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2430, - "codeText": "TS2430", - "title": "Interface '{0}' incorrectly extends interface '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2431.json b/db/2431.json deleted file mode 100644 index 88c9a68..0000000 --- a/db/2431.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2431, - "codeText": "TS2431", - "title": "Enum name cannot be '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2432.json b/db/2432.json deleted file mode 100644 index 9fd7abf..0000000 --- a/db/2432.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2432, - "codeText": "TS2432", - "title": "In an enum with multiple declarations, only one declaration can omit an initializer for its first enum element.", - "category": "error", - "documentation": "" -} diff --git a/db/2433.json b/db/2433.json deleted file mode 100644 index 2ce9850..0000000 --- a/db/2433.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2433, - "codeText": "TS2433", - "title": "A namespace declaration cannot be in a different file from a class or function with which it is merged.", - "category": "error", - "documentation": "" -} diff --git a/db/2434.json b/db/2434.json deleted file mode 100644 index 1b65c7d..0000000 --- a/db/2434.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2434, - "codeText": "TS2434", - "title": "A namespace declaration cannot be located prior to a class or function with which it is merged.", - "category": "error", - "documentation": "" -} diff --git a/db/2435.json b/db/2435.json deleted file mode 100644 index 53190a9..0000000 --- a/db/2435.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2435, - "codeText": "TS2435", - "title": "Ambient modules cannot be nested in other modules or namespaces.", - "category": "error", - "documentation": "" -} diff --git a/db/2436.json b/db/2436.json deleted file mode 100644 index 6320387..0000000 --- a/db/2436.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2436, - "codeText": "TS2436", - "title": "Ambient module declaration cannot specify relative module name.", - "category": "error", - "documentation": "" -} diff --git a/db/2437.json b/db/2437.json deleted file mode 100644 index a1af9be..0000000 --- a/db/2437.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2437, - "codeText": "TS2437", - "title": "Module '{0}' is hidden by a local declaration with the same name.", - "category": "error", - "documentation": "" -} diff --git a/db/2438.json b/db/2438.json deleted file mode 100644 index c8b995f..0000000 --- a/db/2438.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2438, - "codeText": "TS2438", - "title": "Import name cannot be '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2439.json b/db/2439.json deleted file mode 100644 index 3ea2000..0000000 --- a/db/2439.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2439, - "codeText": "TS2439", - "title": "Import or export declaration in an ambient module declaration cannot reference module through relative module name.", - "category": "error", - "documentation": "" -} diff --git a/db/2440.json b/db/2440.json deleted file mode 100644 index 8fa064c..0000000 --- a/db/2440.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2440, - "codeText": "TS2440", - "title": "Import declaration conflicts with local declaration of '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2441.json b/db/2441.json deleted file mode 100644 index 736de7c..0000000 --- a/db/2441.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2441, - "codeText": "TS2441", - "title": "Duplicate identifier '{0}'. Compiler reserves name '{1}' in top level scope of a module.", - "category": "error", - "documentation": "" -} diff --git a/db/2442.json b/db/2442.json deleted file mode 100644 index 031dbc8..0000000 --- a/db/2442.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2442, - "codeText": "TS2442", - "title": "Types have separate declarations of a private property '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2443.json b/db/2443.json deleted file mode 100644 index b11549e..0000000 --- a/db/2443.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2443, - "codeText": "TS2443", - "title": "Property '{0}' is protected but type '{1}' is not a class derived from '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2444.json b/db/2444.json deleted file mode 100644 index bbebf3a..0000000 --- a/db/2444.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2444, - "codeText": "TS2444", - "title": "Property '{0}' is protected in type '{1}' but public in type '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2445.json b/db/2445.json deleted file mode 100644 index b918125..0000000 --- a/db/2445.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2445, - "codeText": "TS2445", - "title": "Property '{0}' is protected and only accessible within class '{1}' and its subclasses.", - "category": "error", - "documentation": "" -} diff --git a/db/2446.json b/db/2446.json deleted file mode 100644 index 656121c..0000000 --- a/db/2446.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2446, - "codeText": "TS2446", - "title": "Property '{0}' is protected and only accessible through an instance of class '{1}'. This is an instance of class '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2447.json b/db/2447.json deleted file mode 100644 index 0b06984..0000000 --- a/db/2447.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2447, - "codeText": "TS2447", - "title": "The '{0}' operator is not allowed for boolean types. Consider using '{1}' instead.", - "category": "error", - "documentation": "" -} diff --git a/db/2448.json b/db/2448.json deleted file mode 100644 index b2822f9..0000000 --- a/db/2448.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2448, - "codeText": "TS2448", - "title": "Block-scoped variable '{0}' used before its declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/2449.json b/db/2449.json deleted file mode 100644 index 4476be6..0000000 --- a/db/2449.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2449, - "codeText": "TS2449", - "title": "Class '{0}' used before its declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/2450.json b/db/2450.json deleted file mode 100644 index 32297b2..0000000 --- a/db/2450.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2450, - "codeText": "TS2450", - "title": "Enum '{0}' used before its declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/2451.json b/db/2451.json deleted file mode 100644 index e2402ed..0000000 --- a/db/2451.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2451, - "codeText": "TS2451", - "title": "Cannot redeclare block-scoped variable '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2452.json b/db/2452.json deleted file mode 100644 index e7a7c06..0000000 --- a/db/2452.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2452, - "codeText": "TS2452", - "title": "An enum member cannot have a numeric name.", - "category": "error", - "documentation": "" -} diff --git a/db/2454.json b/db/2454.json deleted file mode 100644 index 054f3c2..0000000 --- a/db/2454.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2454, - "codeText": "TS2454", - "title": "Variable '{0}' is used before being assigned.", - "category": "error", - "documentation": "" -} diff --git a/db/2456.json b/db/2456.json deleted file mode 100644 index dbc1759..0000000 --- a/db/2456.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2456, - "codeText": "TS2456", - "title": "Type alias '{0}' circularly references itself.", - "category": "error", - "documentation": "" -} diff --git a/db/2457.json b/db/2457.json deleted file mode 100644 index f156056..0000000 --- a/db/2457.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2457, - "codeText": "TS2457", - "title": "Type alias name cannot be '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2458.json b/db/2458.json deleted file mode 100644 index 3842d0a..0000000 --- a/db/2458.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2458, - "codeText": "TS2458", - "title": "An AMD module cannot have multiple name assignments.", - "category": "error", - "documentation": "" -} diff --git a/db/2459.json b/db/2459.json deleted file mode 100644 index cf6befb..0000000 --- a/db/2459.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2459, - "codeText": "TS2459", - "title": "Module '{0}' declares '{1}' locally, but it is not exported.", - "category": "error", - "documentation": "" -} diff --git a/db/2460.json b/db/2460.json deleted file mode 100644 index 53ff996..0000000 --- a/db/2460.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2460, - "codeText": "TS2460", - "title": "Module '{0}' declares '{1}' locally, but it is exported as '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2461.json b/db/2461.json deleted file mode 100644 index e080c63..0000000 --- a/db/2461.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2461, - "codeText": "TS2461", - "title": "Type '{0}' is not an array type.", - "category": "error", - "documentation": "" -} diff --git a/db/2462.json b/db/2462.json deleted file mode 100644 index 4a8d978..0000000 --- a/db/2462.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2462, - "codeText": "TS2462", - "title": "A rest element must be last in a destructuring pattern.", - "category": "error", - "documentation": "" -} diff --git a/db/2463.json b/db/2463.json deleted file mode 100644 index 606656b..0000000 --- a/db/2463.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2463, - "codeText": "TS2463", - "title": "A binding pattern parameter cannot be optional in an implementation signature.", - "category": "error", - "documentation": "" -} diff --git a/db/2464.json b/db/2464.json deleted file mode 100644 index 21186eb..0000000 --- a/db/2464.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2464, - "codeText": "TS2464", - "title": "A computed property name must be of type 'string', 'number', 'symbol', or 'any'.", - "category": "error", - "documentation": "" -} diff --git a/db/2465.json b/db/2465.json deleted file mode 100644 index 530542e..0000000 --- a/db/2465.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2465, - "codeText": "TS2465", - "title": "'this' cannot be referenced in a computed property name.", - "category": "error", - "documentation": "" -} diff --git a/db/2466.json b/db/2466.json deleted file mode 100644 index e95eb58..0000000 --- a/db/2466.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2466, - "codeText": "TS2466", - "title": "'super' cannot be referenced in a computed property name.", - "category": "error", - "documentation": "" -} diff --git a/db/2467.json b/db/2467.json deleted file mode 100644 index e6700b5..0000000 --- a/db/2467.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2467, - "codeText": "TS2467", - "title": "A computed property name cannot reference a type parameter from its containing type.", - "category": "error", - "documentation": "" -} diff --git a/db/2468.json b/db/2468.json deleted file mode 100644 index 5769fe0..0000000 --- a/db/2468.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2468, - "codeText": "TS2468", - "title": "Cannot find global value '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2469.json b/db/2469.json deleted file mode 100644 index b3b2e20..0000000 --- a/db/2469.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2469, - "codeText": "TS2469", - "title": "The '{0}' operator cannot be applied to type 'symbol'.", - "category": "error", - "documentation": "" -} diff --git a/db/2472.json b/db/2472.json deleted file mode 100644 index a5a7c22..0000000 --- a/db/2472.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2472, - "codeText": "TS2472", - "title": "Spread operator in 'new' expressions is only available when targeting ECMAScript 5 and higher.", - "category": "error", - "documentation": "" -} diff --git a/db/2473.json b/db/2473.json deleted file mode 100644 index 496e68f..0000000 --- a/db/2473.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2473, - "codeText": "TS2473", - "title": "Enum declarations must all be const or non-const.", - "category": "error", - "documentation": "" -} diff --git a/db/2474.json b/db/2474.json deleted file mode 100644 index 8b3c11b..0000000 --- a/db/2474.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2474, - "codeText": "TS2474", - "title": "const enum member initializers must be constant expressions.", - "category": "error", - "documentation": "" -} diff --git a/db/2475.json b/db/2475.json deleted file mode 100644 index 6dc139c..0000000 --- a/db/2475.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2475, - "codeText": "TS2475", - "title": "'const' enums can only be used in property or index access expressions or the right hand side of an import declaration or export assignment or type query.", - "category": "error", - "documentation": "" -} diff --git a/db/2476.json b/db/2476.json deleted file mode 100644 index db58370..0000000 --- a/db/2476.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2476, - "codeText": "TS2476", - "title": "A const enum member can only be accessed using a string literal.", - "category": "error", - "documentation": "" -} diff --git a/db/2477.json b/db/2477.json deleted file mode 100644 index 293203a..0000000 --- a/db/2477.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2477, - "codeText": "TS2477", - "title": "'const' enum member initializer was evaluated to a non-finite value.", - "category": "error", - "documentation": "" -} diff --git a/db/2478.json b/db/2478.json deleted file mode 100644 index 5389835..0000000 --- a/db/2478.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2478, - "codeText": "TS2478", - "title": "'const' enum member initializer was evaluated to disallowed value 'NaN'.", - "category": "error", - "documentation": "" -} diff --git a/db/2480.json b/db/2480.json deleted file mode 100644 index ed9b293..0000000 --- a/db/2480.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2480, - "codeText": "TS2480", - "title": "'let' is not allowed to be used as a name in 'let' or 'const' declarations.", - "category": "error", - "documentation": "" -} diff --git a/db/2481.json b/db/2481.json deleted file mode 100644 index 8a56784..0000000 --- a/db/2481.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2481, - "codeText": "TS2481", - "title": "Cannot initialize outer scoped variable '{0}' in the same scope as block scoped declaration '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2483.json b/db/2483.json deleted file mode 100644 index 5b01393..0000000 --- a/db/2483.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2483, - "codeText": "TS2483", - "title": "The left-hand side of a 'for...of' statement cannot use a type annotation.", - "category": "error", - "documentation": "" -} diff --git a/db/2484.json b/db/2484.json deleted file mode 100644 index f196d7d..0000000 --- a/db/2484.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2484, - "codeText": "TS2484", - "title": "Export declaration conflicts with exported declaration of '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2487.json b/db/2487.json deleted file mode 100644 index 160ea8e..0000000 --- a/db/2487.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2487, - "codeText": "TS2487", - "title": "The left-hand side of a 'for...of' statement must be a variable or a property access.", - "category": "error", - "documentation": "" -} diff --git a/db/2488.json b/db/2488.json deleted file mode 100644 index fd13656..0000000 --- a/db/2488.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2488, - "codeText": "TS2488", - "title": "Type '{0}' must have a '[Symbol.iterator]()' method that returns an iterator.", - "category": "error", - "documentation": "" -} diff --git a/db/2489.json b/db/2489.json deleted file mode 100644 index 2caafa4..0000000 --- a/db/2489.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2489, - "codeText": "TS2489", - "title": "An iterator must have a 'next()' method.", - "category": "error", - "documentation": "" -} diff --git a/db/2490.json b/db/2490.json deleted file mode 100644 index 4bf80e0..0000000 --- a/db/2490.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2490, - "codeText": "TS2490", - "title": "The type returned by the '{0}()' method of an iterator must have a 'value' property.", - "category": "error", - "documentation": "" -} diff --git a/db/2491.json b/db/2491.json deleted file mode 100644 index 500c04c..0000000 --- a/db/2491.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2491, - "codeText": "TS2491", - "title": "The left-hand side of a 'for...in' statement cannot be a destructuring pattern.", - "category": "error", - "documentation": "" -} diff --git a/db/2492.json b/db/2492.json deleted file mode 100644 index c3951e4..0000000 --- a/db/2492.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2492, - "codeText": "TS2492", - "title": "Cannot redeclare identifier '{0}' in catch clause.", - "category": "error", - "documentation": "" -} diff --git a/db/2493.json b/db/2493.json deleted file mode 100644 index 1c91493..0000000 --- a/db/2493.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2493, - "codeText": "TS2493", - "title": "Tuple type '{0}' of length '{1}' has no element at index '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2494.json b/db/2494.json deleted file mode 100644 index 39a8691..0000000 --- a/db/2494.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2494, - "codeText": "TS2494", - "title": "Using a string in a 'for...of' statement is only supported in ECMAScript 5 and higher.", - "category": "error", - "documentation": "" -} diff --git a/db/2495.json b/db/2495.json deleted file mode 100644 index 0c3a22b..0000000 --- a/db/2495.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2495, - "codeText": "TS2495", - "title": "Type '{0}' is not an array type or a string type.", - "category": "error", - "documentation": "" -} diff --git a/db/2496.json b/db/2496.json deleted file mode 100644 index 630acfc..0000000 --- a/db/2496.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2496, - "codeText": "TS2496", - "title": "The 'arguments' object cannot be referenced in an arrow function in ES3 and ES5. Consider using a standard function expression.", - "category": "error", - "documentation": "" -} diff --git a/db/2497.json b/db/2497.json deleted file mode 100644 index 4d87d6f..0000000 --- a/db/2497.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2497, - "codeText": "TS2497", - "title": "This module can only be referenced with ECMAScript imports/exports by turning on the '{0}' flag and referencing its default export.", - "category": "error", - "documentation": "" -} diff --git a/db/2498.json b/db/2498.json deleted file mode 100644 index 8633bb6..0000000 --- a/db/2498.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2498, - "codeText": "TS2498", - "title": "Module '{0}' uses 'export =' and cannot be used with 'export *'.", - "category": "error", - "documentation": "" -} diff --git a/db/2499.json b/db/2499.json deleted file mode 100644 index c68ddb2..0000000 --- a/db/2499.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2499, - "codeText": "TS2499", - "title": "An interface can only extend an identifier/qualified-name with optional type arguments.", - "category": "error", - "documentation": "" -} diff --git a/db/2500.json b/db/2500.json deleted file mode 100644 index dfbdd40..0000000 --- a/db/2500.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2500, - "codeText": "TS2500", - "title": "A class can only implement an identifier/qualified-name with optional type arguments.", - "category": "error", - "documentation": "" -} diff --git a/db/2501.json b/db/2501.json deleted file mode 100644 index 65bdc62..0000000 --- a/db/2501.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2501, - "codeText": "TS2501", - "title": "A rest element cannot contain a binding pattern.", - "category": "error", - "documentation": "" -} diff --git a/db/2502.json b/db/2502.json deleted file mode 100644 index c7c52c7..0000000 --- a/db/2502.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2502, - "codeText": "TS2502", - "title": "'{0}' is referenced directly or indirectly in its own type annotation.", - "category": "error", - "documentation": "" -} diff --git a/db/2503.json b/db/2503.json deleted file mode 100644 index 5be97c5..0000000 --- a/db/2503.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2503, - "codeText": "TS2503", - "title": "Cannot find namespace '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2504.json b/db/2504.json deleted file mode 100644 index 9699c00..0000000 --- a/db/2504.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2504, - "codeText": "TS2504", - "title": "Type '{0}' must have a '[Symbol.asyncIterator]()' method that returns an async iterator.", - "category": "error", - "documentation": "" -} diff --git a/db/2505.json b/db/2505.json deleted file mode 100644 index a5ccb8b..0000000 --- a/db/2505.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2505, - "codeText": "TS2505", - "title": "A generator cannot have a 'void' type annotation.", - "category": "error", - "documentation": "" -} diff --git a/db/2506.json b/db/2506.json deleted file mode 100644 index a0dc38d..0000000 --- a/db/2506.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2506, - "codeText": "TS2506", - "title": "'{0}' is referenced directly or indirectly in its own base expression.", - "category": "error", - "documentation": "" -} diff --git a/db/2507.json b/db/2507.json deleted file mode 100644 index f24a120..0000000 --- a/db/2507.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2507, - "codeText": "TS2507", - "title": "Type '{0}' is not a constructor function type.", - "category": "error", - "documentation": "" -} diff --git a/db/2508.json b/db/2508.json deleted file mode 100644 index 8d8528e..0000000 --- a/db/2508.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2508, - "codeText": "TS2508", - "title": "No base constructor has the specified number of type arguments.", - "category": "error", - "documentation": "" -} diff --git a/db/2509.json b/db/2509.json deleted file mode 100644 index 9b111e8..0000000 --- a/db/2509.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2509, - "codeText": "TS2509", - "title": "Base constructor return type '{0}' is not an object type or intersection of object types with statically known members.", - "category": "error", - "documentation": "" -} diff --git a/db/2510.json b/db/2510.json deleted file mode 100644 index 185200b..0000000 --- a/db/2510.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2510, - "codeText": "TS2510", - "title": "Base constructors must all have the same return type.", - "category": "error", - "documentation": "" -} diff --git a/db/2511.json b/db/2511.json deleted file mode 100644 index c38e14c..0000000 --- a/db/2511.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2511, - "codeText": "TS2511", - "title": "Cannot create an instance of an abstract class.", - "category": "error", - "documentation": "" -} diff --git a/db/2512.json b/db/2512.json deleted file mode 100644 index 410d1a9..0000000 --- a/db/2512.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2512, - "codeText": "TS2512", - "title": "Overload signatures must all be abstract or non-abstract.", - "category": "error", - "documentation": "" -} diff --git a/db/2513.json b/db/2513.json deleted file mode 100644 index 551bb9c..0000000 --- a/db/2513.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2513, - "codeText": "TS2513", - "title": "Abstract method '{0}' in class '{1}' cannot be accessed via super expression.", - "category": "error", - "documentation": "" -} diff --git a/db/2514.json b/db/2514.json deleted file mode 100644 index ecca63b..0000000 --- a/db/2514.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2514, - "codeText": "TS2514", - "title": "A tuple type cannot be indexed with a negative value.", - "category": "error", - "documentation": "" -} diff --git a/db/2515.json b/db/2515.json deleted file mode 100644 index 22f59f6..0000000 --- a/db/2515.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2515, - "codeText": "TS2515", - "title": "Non-abstract class '{0}' does not implement inherited abstract member '{1}' from class '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2516.json b/db/2516.json deleted file mode 100644 index 3b49daf..0000000 --- a/db/2516.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2516, - "codeText": "TS2516", - "title": "All declarations of an abstract method must be consecutive.", - "category": "error", - "documentation": "" -} diff --git a/db/2517.json b/db/2517.json deleted file mode 100644 index fdaf448..0000000 --- a/db/2517.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2517, - "codeText": "TS2517", - "title": "Cannot assign an abstract constructor type to a non-abstract constructor type.", - "category": "error", - "documentation": "" -} diff --git a/db/2518.json b/db/2518.json deleted file mode 100644 index 5f03ecd..0000000 --- a/db/2518.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2518, - "codeText": "TS2518", - "title": "A 'this'-based type guard is not compatible with a parameter-based type guard.", - "category": "error", - "documentation": "" -} diff --git a/db/2519.json b/db/2519.json deleted file mode 100644 index 6403291..0000000 --- a/db/2519.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2519, - "codeText": "TS2519", - "title": "An async iterator must have a 'next()' method.", - "category": "error", - "documentation": "" -} diff --git a/db/2520.json b/db/2520.json deleted file mode 100644 index ac4c61d..0000000 --- a/db/2520.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2520, - "codeText": "TS2520", - "title": "Duplicate identifier '{0}'. Compiler uses declaration '{1}' to support async functions.", - "category": "error", - "documentation": "" -} diff --git a/db/2522.json b/db/2522.json deleted file mode 100644 index 508dc47..0000000 --- a/db/2522.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2522, - "codeText": "TS2522", - "title": "The 'arguments' object cannot be referenced in an async function or method in ES3 and ES5. Consider using a standard function or method.", - "category": "error", - "documentation": "" -} diff --git a/db/2523.json b/db/2523.json deleted file mode 100644 index 4c6fa81..0000000 --- a/db/2523.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2523, - "codeText": "TS2523", - "title": "'yield' expressions cannot be used in a parameter initializer.", - "category": "error", - "documentation": "" -} diff --git a/db/2524.json b/db/2524.json deleted file mode 100644 index a46987c..0000000 --- a/db/2524.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2524, - "codeText": "TS2524", - "title": "'await' expressions cannot be used in a parameter initializer.", - "category": "error", - "documentation": "" -} diff --git a/db/2525.json b/db/2525.json deleted file mode 100644 index 130615c..0000000 --- a/db/2525.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2525, - "codeText": "TS2525", - "title": "Initializer provides no value for this binding element and the binding element has no default value.", - "category": "error", - "documentation": "" -} diff --git a/db/2526.json b/db/2526.json deleted file mode 100644 index 7bc9cb7..0000000 --- a/db/2526.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2526, - "codeText": "TS2526", - "title": "A 'this' type is available only in a non-static member of a class or interface.", - "category": "error", - "documentation": "" -} diff --git a/db/2527.json b/db/2527.json deleted file mode 100644 index 2d573f4..0000000 --- a/db/2527.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2527, - "codeText": "TS2527", - "title": "The inferred type of '{0}' references an inaccessible '{1}' type. A type annotation is necessary.", - "category": "error", - "documentation": "" -} diff --git a/db/2528.json b/db/2528.json deleted file mode 100644 index 9066a30..0000000 --- a/db/2528.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2528, - "codeText": "TS2528", - "title": "A module cannot have multiple default exports.", - "category": "error", - "documentation": "" -} diff --git a/db/2529.json b/db/2529.json deleted file mode 100644 index d0abdc5..0000000 --- a/db/2529.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2529, - "codeText": "TS2529", - "title": "Duplicate identifier '{0}'. Compiler reserves name '{1}' in top level scope of a module containing async functions.", - "category": "error", - "documentation": "" -} diff --git a/db/2530.json b/db/2530.json deleted file mode 100644 index 001048e..0000000 --- a/db/2530.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2530, - "codeText": "TS2530", - "title": "Property '{0}' is incompatible with index signature.", - "category": "error", - "documentation": "" -} diff --git a/db/2531.json b/db/2531.json deleted file mode 100644 index 208dbae..0000000 --- a/db/2531.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2531, - "codeText": "TS2531", - "title": "Object is possibly 'null'.", - "category": "error", - "documentation": "" -} diff --git a/db/2532.json b/db/2532.json deleted file mode 100644 index 740423e..0000000 --- a/db/2532.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2532, - "codeText": "TS2532", - "title": "Object is possibly 'undefined'.", - "category": "error", - "documentation": "" -} diff --git a/db/2533.json b/db/2533.json deleted file mode 100644 index bc45dcf..0000000 --- a/db/2533.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2533, - "codeText": "TS2533", - "title": "Object is possibly 'null' or 'undefined'.", - "category": "error", - "documentation": "" -} diff --git a/db/2534.json b/db/2534.json deleted file mode 100644 index a8ba32b..0000000 --- a/db/2534.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2534, - "codeText": "TS2534", - "title": "A function returning 'never' cannot have a reachable end point.", - "category": "error", - "documentation": "" -} diff --git a/db/2536.json b/db/2536.json deleted file mode 100644 index 1c683cf..0000000 --- a/db/2536.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2536, - "codeText": "TS2536", - "title": "Type '{0}' cannot be used to index type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2537.json b/db/2537.json deleted file mode 100644 index ec94c73..0000000 --- a/db/2537.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2537, - "codeText": "TS2537", - "title": "Type '{0}' has no matching index signature for type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2538.json b/db/2538.json deleted file mode 100644 index 092fb5e..0000000 --- a/db/2538.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2538, - "codeText": "TS2538", - "title": "Type '{0}' cannot be used as an index type.", - "category": "error", - "documentation": "" -} diff --git a/db/2539.json b/db/2539.json deleted file mode 100644 index 12337a9..0000000 --- a/db/2539.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2539, - "codeText": "TS2539", - "title": "Cannot assign to '{0}' because it is not a variable.", - "category": "error", - "documentation": "" -} diff --git a/db/2540.json b/db/2540.json deleted file mode 100644 index 002893c..0000000 --- a/db/2540.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2540, - "codeText": "TS2540", - "title": "Cannot assign to '{0}' because it is a read-only property.", - "category": "error", - "documentation": "" -} diff --git a/db/2542.json b/db/2542.json deleted file mode 100644 index 1ec89bf..0000000 --- a/db/2542.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2542, - "codeText": "TS2542", - "title": "Index signature in type '{0}' only permits reading.", - "category": "error", - "documentation": "" -} diff --git a/db/2543.json b/db/2543.json deleted file mode 100644 index 4f01c38..0000000 --- a/db/2543.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2543, - "codeText": "TS2543", - "title": "Duplicate identifier '_newTarget'. Compiler uses variable declaration '_newTarget' to capture 'new.target' meta-property reference.", - "category": "error", - "documentation": "" -} diff --git a/db/2544.json b/db/2544.json deleted file mode 100644 index 9230eb8..0000000 --- a/db/2544.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2544, - "codeText": "TS2544", - "title": "Expression resolves to variable declaration '_newTarget' that compiler uses to capture 'new.target' meta-property reference.", - "category": "error", - "documentation": "" -} diff --git a/db/2545.json b/db/2545.json deleted file mode 100644 index f080b5f..0000000 --- a/db/2545.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2545, - "codeText": "TS2545", - "title": "A mixin class must have a constructor with a single rest parameter of type 'any[]'.", - "category": "error", - "documentation": "" -} diff --git a/db/2547.json b/db/2547.json deleted file mode 100644 index 5aa4141..0000000 --- a/db/2547.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2547, - "codeText": "TS2547", - "title": "The type returned by the '{0}()' method of an async iterator must be a promise for a type with a 'value' property.", - "category": "error", - "documentation": "" -} diff --git a/db/2548.json b/db/2548.json deleted file mode 100644 index 431d899..0000000 --- a/db/2548.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2548, - "codeText": "TS2548", - "title": "Type '{0}' is not an array type or does not have a '[Symbol.iterator]()' method that returns an iterator.", - "category": "error", - "documentation": "" -} diff --git a/db/2549.json b/db/2549.json deleted file mode 100644 index 562dad4..0000000 --- a/db/2549.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2549, - "codeText": "TS2549", - "title": "Type '{0}' is not an array type or a string type or does not have a '[Symbol.iterator]()' method that returns an iterator.", - "category": "error", - "documentation": "" -} diff --git a/db/2550.json b/db/2550.json deleted file mode 100644 index 4e4c4fb..0000000 --- a/db/2550.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2550, - "codeText": "TS2550", - "title": "Property '{0}' does not exist on type '{1}'. Do you need to change your target library? Try changing the 'lib' compiler option to '{2}' or later.", - "category": "error", - "documentation": "" -} diff --git a/db/2551.json b/db/2551.json deleted file mode 100644 index 845e00d..0000000 --- a/db/2551.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2551, - "codeText": "TS2551", - "title": "Property '{0}' does not exist on type '{1}'. Did you mean '{2}'?", - "category": "error", - "documentation": "" -} diff --git a/db/2552.json b/db/2552.json deleted file mode 100644 index b48d0c1..0000000 --- a/db/2552.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2552, - "codeText": "TS2552", - "title": "Cannot find name '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" -} diff --git a/db/2553.json b/db/2553.json deleted file mode 100644 index a541814..0000000 --- a/db/2553.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2553, - "codeText": "TS2553", - "title": "Computed values are not permitted in an enum with string valued members.", - "category": "error", - "documentation": "" -} diff --git a/db/2554.json b/db/2554.json deleted file mode 100644 index 9f61aca..0000000 --- a/db/2554.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2554, - "codeText": "TS2554", - "title": "Expected {0} arguments, but got {1}.", - "category": "error", - "documentation": "" -} diff --git a/db/2555.json b/db/2555.json deleted file mode 100644 index 46fda14..0000000 --- a/db/2555.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2555, - "codeText": "TS2555", - "title": "Expected at least {0} arguments, but got {1}.", - "category": "error", - "documentation": "" -} diff --git a/db/2556.json b/db/2556.json deleted file mode 100644 index 5ef30af..0000000 --- a/db/2556.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2556, - "codeText": "TS2556", - "title": "A spread argument must either have a tuple type or be passed to a rest parameter.", - "category": "error", - "documentation": "" -} diff --git a/db/2558.json b/db/2558.json deleted file mode 100644 index eaa65de..0000000 --- a/db/2558.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2558, - "codeText": "TS2558", - "title": "Expected {0} type arguments, but got {1}.", - "category": "error", - "documentation": "" -} diff --git a/db/2559.json b/db/2559.json deleted file mode 100644 index ea02275..0000000 --- a/db/2559.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2559, - "codeText": "TS2559", - "title": "Type '{0}' has no properties in common with type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2560.json b/db/2560.json deleted file mode 100644 index 13ccb90..0000000 --- a/db/2560.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2560, - "codeText": "TS2560", - "title": "Value of type '{0}' has no properties in common with type '{1}'. Did you mean to call it?", - "category": "error", - "documentation": "" -} diff --git a/db/2561.json b/db/2561.json deleted file mode 100644 index 67f7c38..0000000 --- a/db/2561.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2561, - "codeText": "TS2561", - "title": "Object literal may only specify known properties, but '{0}' does not exist in type '{1}'. Did you mean to write '{2}'?", - "category": "error", - "documentation": "" -} diff --git a/db/2562.json b/db/2562.json deleted file mode 100644 index 0656a8e..0000000 --- a/db/2562.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2562, - "codeText": "TS2562", - "title": "Base class expressions cannot reference class type parameters.", - "category": "error", - "documentation": "" -} diff --git a/db/2563.json b/db/2563.json deleted file mode 100644 index 3c11ed7..0000000 --- a/db/2563.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2563, - "codeText": "TS2563", - "title": "The containing function or module body is too large for control flow analysis.", - "category": "error", - "documentation": "" -} diff --git a/db/2564.json b/db/2564.json deleted file mode 100644 index 4d693af..0000000 --- a/db/2564.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2564, - "codeText": "TS2564", - "title": "Property '{0}' has no initializer and is not definitely assigned in the constructor.", - "category": "error", - "documentation": "" -} diff --git a/db/2565.json b/db/2565.json deleted file mode 100644 index 0568ab5..0000000 --- a/db/2565.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2565, - "codeText": "TS2565", - "title": "Property '{0}' is used before being assigned.", - "category": "error", - "documentation": "" -} diff --git a/db/2566.json b/db/2566.json deleted file mode 100644 index 7b3981d..0000000 --- a/db/2566.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2566, - "codeText": "TS2566", - "title": "A rest element cannot have a property name.", - "category": "error", - "documentation": "" -} diff --git a/db/2567.json b/db/2567.json deleted file mode 100644 index d662b77..0000000 --- a/db/2567.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2567, - "codeText": "TS2567", - "title": "Enum declarations can only merge with namespace or other enum declarations.", - "category": "error", - "documentation": "" -} diff --git a/db/2568.json b/db/2568.json deleted file mode 100644 index a551bee..0000000 --- a/db/2568.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2568, - "codeText": "TS2568", - "title": "Property '{0}' may not exist on type '{1}'. Did you mean '{2}'?", - "category": "error", - "documentation": "" -} diff --git a/db/2570.json b/db/2570.json deleted file mode 100644 index b77403b..0000000 --- a/db/2570.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2570, - "codeText": "TS2570", - "title": "Could not find name '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" -} diff --git a/db/2571.json b/db/2571.json deleted file mode 100644 index 27ebfc3..0000000 --- a/db/2571.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2571, - "codeText": "TS2571", - "title": "Object is of type 'unknown'.", - "category": "error", - "documentation": "" -} diff --git a/db/2574.json b/db/2574.json deleted file mode 100644 index b1eb3f2..0000000 --- a/db/2574.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2574, - "codeText": "TS2574", - "title": "A rest element type must be an array type.", - "category": "error", - "documentation": "" -} diff --git a/db/2575.json b/db/2575.json deleted file mode 100644 index 3af1465..0000000 --- a/db/2575.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2575, - "codeText": "TS2575", - "title": "No overload expects {0} arguments, but overloads do exist that expect either {1} or {2} arguments.", - "category": "error", - "documentation": "" -} diff --git a/db/2576.json b/db/2576.json deleted file mode 100644 index ee1211a..0000000 --- a/db/2576.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2576, - "codeText": "TS2576", - "title": "Property '{0}' does not exist on type '{1}'. Did you mean to access the static member '{2}' instead?", - "category": "error", - "documentation": "" -} diff --git a/db/2577.json b/db/2577.json deleted file mode 100644 index c9c407f..0000000 --- a/db/2577.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2577, - "codeText": "TS2577", - "title": "Return type annotation circularly references itself.", - "category": "error", - "documentation": "" -} diff --git a/db/2578.json b/db/2578.json deleted file mode 100644 index 97f5a15..0000000 --- a/db/2578.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2578, - "codeText": "TS2578", - "title": "Unused '@ts-expect-error' directive.", - "category": "error", - "documentation": "" -} diff --git a/db/2580.json b/db/2580.json deleted file mode 100644 index 046b994..0000000 --- a/db/2580.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2580, - "codeText": "TS2580", - "title": "Cannot find name '{0}'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.", - "category": "error", - "documentation": "" -} diff --git a/db/2581.json b/db/2581.json deleted file mode 100644 index ab86989..0000000 --- a/db/2581.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2581, - "codeText": "TS2581", - "title": "Cannot find name '{0}'. Do you need to install type definitions for jQuery? Try `npm i --save-dev @types/jquery`.", - "category": "error", - "documentation": "" -} diff --git a/db/2582.json b/db/2582.json deleted file mode 100644 index 75553ee..0000000 --- a/db/2582.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2582, - "codeText": "TS2582", - "title": "Cannot find name '{0}'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.", - "category": "error", - "documentation": "" -} diff --git a/db/2583.json b/db/2583.json deleted file mode 100644 index 4f56ee8..0000000 --- a/db/2583.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2583, - "codeText": "TS2583", - "title": "Cannot find name '{0}'. Do you need to change your target library? Try changing the 'lib' compiler option to '{1}' or later.", - "category": "error", - "documentation": "" -} diff --git a/db/2584.json b/db/2584.json deleted file mode 100644 index fe99e1b..0000000 --- a/db/2584.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2584, - "codeText": "TS2584", - "title": "Cannot find name '{0}'. Do you need to change your target library? Try changing the 'lib' compiler option to include 'dom'.", - "category": "error", - "documentation": "" -} diff --git a/db/2585.json b/db/2585.json deleted file mode 100644 index e2e4ffb..0000000 --- a/db/2585.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2585, - "codeText": "TS2585", - "title": "'{0}' only refers to a type, but is being used as a value here. Do you need to change your target library? Try changing the 'lib' compiler option to es2015 or later.", - "category": "error", - "documentation": "" -} diff --git a/db/2588.json b/db/2588.json deleted file mode 100644 index 0caf485..0000000 --- a/db/2588.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2588, - "codeText": "TS2588", - "title": "Cannot assign to '{0}' because it is a constant.", - "category": "error", - "documentation": "" -} diff --git a/db/2589.json b/db/2589.json deleted file mode 100644 index f73e34f..0000000 --- a/db/2589.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2589, - "codeText": "TS2589", - "title": "Type instantiation is excessively deep and possibly infinite.", - "category": "error", - "documentation": "" -} diff --git a/db/2590.json b/db/2590.json deleted file mode 100644 index 7483c94..0000000 --- a/db/2590.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2590, - "codeText": "TS2590", - "title": "Expression produces a union type that is too complex to represent.", - "category": "error", - "documentation": "" -} diff --git a/db/2591.json b/db/2591.json deleted file mode 100644 index 66d8739..0000000 --- a/db/2591.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2591, - "codeText": "TS2591", - "title": "Cannot find name '{0}'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node` and then add 'node' to the types field in your tsconfig.", - "category": "error", - "documentation": "" -} diff --git a/db/2592.json b/db/2592.json deleted file mode 100644 index 3713a59..0000000 --- a/db/2592.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2592, - "codeText": "TS2592", - "title": "Cannot find name '{0}'. Do you need to install type definitions for jQuery? Try `npm i --save-dev @types/jquery` and then add 'jquery' to the types field in your tsconfig.", - "category": "error", - "documentation": "" -} diff --git a/db/2593.json b/db/2593.json deleted file mode 100644 index 88124fd..0000000 --- a/db/2593.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2593, - "codeText": "TS2593", - "title": "Cannot find name '{0}'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig.", - "category": "error", - "documentation": "" -} diff --git a/db/2594.json b/db/2594.json deleted file mode 100644 index 2a491dd..0000000 --- a/db/2594.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2594, - "codeText": "TS2594", - "title": "This module is declared with 'export =', and can only be used with a default import when using the '{0}' flag.", - "category": "error", - "documentation": "" -} diff --git a/db/2595.json b/db/2595.json deleted file mode 100644 index c862048..0000000 --- a/db/2595.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2595, - "codeText": "TS2595", - "title": "'{0}' can only be imported by using a default import.", - "category": "error", - "documentation": "" -} diff --git a/db/2596.json b/db/2596.json deleted file mode 100644 index 9d79fb7..0000000 --- a/db/2596.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2596, - "codeText": "TS2596", - "title": "'{0}' can only be imported by turning on the 'esModuleInterop' flag and using a default import.", - "category": "error", - "documentation": "" -} diff --git a/db/2597.json b/db/2597.json deleted file mode 100644 index d4430e4..0000000 --- a/db/2597.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2597, - "codeText": "TS2597", - "title": "'{0}' can only be imported by using a 'require' call or by using a default import.", - "category": "error", - "documentation": "" -} diff --git a/db/2598.json b/db/2598.json deleted file mode 100644 index 0e2263e..0000000 --- a/db/2598.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2598, - "codeText": "TS2598", - "title": "'{0}' can only be imported by using a 'require' call or by turning on the 'esModuleInterop' flag and using a default import.", - "category": "error", - "documentation": "" -} diff --git a/db/2602.json b/db/2602.json deleted file mode 100644 index 5e65992..0000000 --- a/db/2602.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2602, - "codeText": "TS2602", - "title": "JSX element implicitly has type 'any' because the global type 'JSX.Element' does not exist.", - "category": "error", - "documentation": "" -} diff --git a/db/2603.json b/db/2603.json deleted file mode 100644 index 11af7b6..0000000 --- a/db/2603.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2603, - "codeText": "TS2603", - "title": "Property '{0}' in type '{1}' is not assignable to type '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2604.json b/db/2604.json deleted file mode 100644 index b3d58fe..0000000 --- a/db/2604.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2604, - "codeText": "TS2604", - "title": "JSX element type '{0}' does not have any construct or call signatures.", - "category": "error", - "documentation": "" -} diff --git a/db/2606.json b/db/2606.json deleted file mode 100644 index 9a25d6c..0000000 --- a/db/2606.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2606, - "codeText": "TS2606", - "title": "Property '{0}' of JSX spread attribute is not assignable to target property.", - "category": "error", - "documentation": "" -} diff --git a/db/2607.json b/db/2607.json deleted file mode 100644 index 6b4cde9..0000000 --- a/db/2607.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2607, - "codeText": "TS2607", - "title": "JSX element class does not support attributes because it does not have a '{0}' property.", - "category": "error", - "documentation": "" -} diff --git a/db/2608.json b/db/2608.json deleted file mode 100644 index a70335e..0000000 --- a/db/2608.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2608, - "codeText": "TS2608", - "title": "The global type 'JSX.{0}' may not have more than one property.", - "category": "error", - "documentation": "" -} diff --git a/db/2609.json b/db/2609.json deleted file mode 100644 index cb861e1..0000000 --- a/db/2609.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2609, - "codeText": "TS2609", - "title": "JSX spread child must be an array type.", - "category": "error", - "documentation": "" -} diff --git a/db/2610.json b/db/2610.json deleted file mode 100644 index 3047ed3..0000000 --- a/db/2610.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2610, - "codeText": "TS2610", - "title": "'{0}' is defined as an accessor in class '{1}', but is overridden here in '{2}' as an instance property.", - "category": "error", - "documentation": "" -} diff --git a/db/2611.json b/db/2611.json deleted file mode 100644 index 3cf1d17..0000000 --- a/db/2611.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2611, - "codeText": "TS2611", - "title": "'{0}' is defined as a property in class '{1}', but is overridden here in '{2}' as an accessor.", - "category": "error", - "documentation": "" -} diff --git a/db/2612.json b/db/2612.json deleted file mode 100644 index feb67d9..0000000 --- a/db/2612.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2612, - "codeText": "TS2612", - "title": "Property '{0}' will overwrite the base property in '{1}'. If this is intentional, add an initializer. Otherwise, add a 'declare' modifier or remove the redundant declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/2613.json b/db/2613.json deleted file mode 100644 index fc587be..0000000 --- a/db/2613.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2613, - "codeText": "TS2613", - "title": "Module '{0}' has no default export. Did you mean to use 'import { {1} } from {0}' instead?", - "category": "error", - "documentation": "" -} diff --git a/db/2614.json b/db/2614.json deleted file mode 100644 index fbb5837..0000000 --- a/db/2614.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2614, - "codeText": "TS2614", - "title": "Module '{0}' has no exported member '{1}'. Did you mean to use 'import {1} from {0}' instead?", - "category": "error", - "documentation": "" -} diff --git a/db/2615.json b/db/2615.json deleted file mode 100644 index 397189c..0000000 --- a/db/2615.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2615, - "codeText": "TS2615", - "title": "Type of property '{0}' circularly references itself in mapped type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2616.json b/db/2616.json deleted file mode 100644 index 5af08b8..0000000 --- a/db/2616.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2616, - "codeText": "TS2616", - "title": "'{0}' can only be imported by using 'import {1} = require({2})' or a default import.", - "category": "error", - "documentation": "" -} diff --git a/db/2617.json b/db/2617.json deleted file mode 100644 index 4d7ab5a..0000000 --- a/db/2617.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2617, - "codeText": "TS2617", - "title": "'{0}' can only be imported by using 'import {1} = require({2})' or by turning on the 'esModuleInterop' flag and using a default import.", - "category": "error", - "documentation": "" -} diff --git a/db/2618.json b/db/2618.json deleted file mode 100644 index 961d1c9..0000000 --- a/db/2618.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2618, - "codeText": "TS2618", - "title": "Source has {0} element(s) but target requires {1}.", - "category": "error", - "documentation": "" -} diff --git a/db/2619.json b/db/2619.json deleted file mode 100644 index 06c982d..0000000 --- a/db/2619.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2619, - "codeText": "TS2619", - "title": "Source has {0} element(s) but target allows only {1}.", - "category": "error", - "documentation": "" -} diff --git a/db/2620.json b/db/2620.json deleted file mode 100644 index bd8cefa..0000000 --- a/db/2620.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2620, - "codeText": "TS2620", - "title": "Target requires {0} element(s) but source may have fewer.", - "category": "error", - "documentation": "" -} diff --git a/db/2621.json b/db/2621.json deleted file mode 100644 index 1c21ec6..0000000 --- a/db/2621.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2621, - "codeText": "TS2621", - "title": "Target allows only {0} element(s) but source may have more.", - "category": "error", - "documentation": "" -} diff --git a/db/2623.json b/db/2623.json deleted file mode 100644 index b21b411..0000000 --- a/db/2623.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2623, - "codeText": "TS2623", - "title": "Source provides no match for required element at position {0} in target.", - "category": "error", - "documentation": "" -} diff --git a/db/2624.json b/db/2624.json deleted file mode 100644 index 1cff9bc..0000000 --- a/db/2624.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2624, - "codeText": "TS2624", - "title": "Source provides no match for variadic element at position {0} in target.", - "category": "error", - "documentation": "" -} diff --git a/db/2625.json b/db/2625.json deleted file mode 100644 index 6e6c105..0000000 --- a/db/2625.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2625, - "codeText": "TS2625", - "title": "Variadic element at position {0} in source does not match element at position {1} in target.", - "category": "error", - "documentation": "" -} diff --git a/db/2626.json b/db/2626.json deleted file mode 100644 index 594f26f..0000000 --- a/db/2626.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2626, - "codeText": "TS2626", - "title": "Type at position {0} in source is not compatible with type at position {1} in target.", - "category": "error", - "documentation": "" -} diff --git a/db/2627.json b/db/2627.json deleted file mode 100644 index dee8794..0000000 --- a/db/2627.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2627, - "codeText": "TS2627", - "title": "Type at positions {0} through {1} in source is not compatible with type at position {2} in target.", - "category": "error", - "documentation": "" -} diff --git a/db/2628.json b/db/2628.json deleted file mode 100644 index 390c4d6..0000000 --- a/db/2628.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2628, - "codeText": "TS2628", - "title": "Cannot assign to '{0}' because it is an enum.", - "category": "error", - "documentation": "" -} diff --git a/db/2629.json b/db/2629.json deleted file mode 100644 index b9b8599..0000000 --- a/db/2629.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2629, - "codeText": "TS2629", - "title": "Cannot assign to '{0}' because it is a class.", - "category": "error", - "documentation": "" -} diff --git a/db/2630.json b/db/2630.json deleted file mode 100644 index ddf2e29..0000000 --- a/db/2630.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2630, - "codeText": "TS2630", - "title": "Cannot assign to '{0}' because it is a function.", - "category": "error", - "documentation": "" -} diff --git a/db/2631.json b/db/2631.json deleted file mode 100644 index d90ed71..0000000 --- a/db/2631.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2631, - "codeText": "TS2631", - "title": "Cannot assign to '{0}' because it is a namespace.", - "category": "error", - "documentation": "" -} diff --git a/db/2632.json b/db/2632.json deleted file mode 100644 index 7e3389f..0000000 --- a/db/2632.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2632, - "codeText": "TS2632", - "title": "Cannot assign to '{0}' because it is an import.", - "category": "error", - "documentation": "" -} diff --git a/db/2633.json b/db/2633.json deleted file mode 100644 index 4d060b6..0000000 --- a/db/2633.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2633, - "codeText": "TS2633", - "title": "JSX property access expressions cannot include JSX namespace names", - "category": "error", - "documentation": "" -} diff --git a/db/2634.json b/db/2634.json deleted file mode 100644 index d91231c..0000000 --- a/db/2634.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2634, - "codeText": "TS2634", - "title": "'{0}' index signatures are incompatible.", - "category": "error", - "documentation": "" -} diff --git a/db/2635.json b/db/2635.json deleted file mode 100644 index 42bc269..0000000 --- a/db/2635.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2635, - "codeText": "TS2635", - "title": "Type '{0}' has no signatures for which the type argument list is applicable.", - "category": "error", - "documentation": "" -} diff --git a/db/2636.json b/db/2636.json deleted file mode 100644 index 9bba8cf..0000000 --- a/db/2636.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2636, - "codeText": "TS2636", - "title": "Type '{0}' is not assignable to type '{1}' as implied by variance annotation.", - "category": "error", - "documentation": "" -} diff --git a/db/2637.json b/db/2637.json deleted file mode 100644 index d77b2f6..0000000 --- a/db/2637.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2637, - "codeText": "TS2637", - "title": "Variance annotations are only supported in type aliases for object, function, constructor, and mapped types.", - "category": "error", - "documentation": "" -} diff --git a/db/2638.json b/db/2638.json deleted file mode 100644 index ac6ad6d..0000000 --- a/db/2638.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2638, - "codeText": "TS2638", - "title": "Type '{0}' may represent a primitive value, which is not permitted as the right operand of the 'in' operator.", - "category": "error", - "documentation": "" -} diff --git a/db/2639.json b/db/2639.json deleted file mode 100644 index 0c6778f..0000000 --- a/db/2639.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2639, - "codeText": "TS2639", - "title": "React components cannot include JSX namespace names", - "category": "error", - "documentation": "" -} diff --git a/db/2649.json b/db/2649.json deleted file mode 100644 index d06ccd4..0000000 --- a/db/2649.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2649, - "codeText": "TS2649", - "title": "Cannot augment module '{0}' with value exports because it resolves to a non-module entity.", - "category": "error", - "documentation": "" -} diff --git a/db/2651.json b/db/2651.json deleted file mode 100644 index 914d9bb..0000000 --- a/db/2651.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2651, - "codeText": "TS2651", - "title": "A member initializer in a enum declaration cannot reference members declared after it, including members defined in other enums.", - "category": "error", - "documentation": "" -} diff --git a/db/2652.json b/db/2652.json deleted file mode 100644 index 0ca13d5..0000000 --- a/db/2652.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2652, - "codeText": "TS2652", - "title": "Merged declaration '{0}' cannot include a default export declaration. Consider adding a separate 'export default {0}' declaration instead.", - "category": "error", - "documentation": "" -} diff --git a/db/2653.json b/db/2653.json deleted file mode 100644 index 388a9d6..0000000 --- a/db/2653.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2653, - "codeText": "TS2653", - "title": "Non-abstract class expression does not implement inherited abstract member '{0}' from class '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2657.json b/db/2657.json deleted file mode 100644 index 678b47a..0000000 --- a/db/2657.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2657, - "codeText": "TS2657", - "title": "JSX expressions must have one parent element.", - "category": "error", - "documentation": "" -} diff --git a/db/2658.json b/db/2658.json deleted file mode 100644 index b479632..0000000 --- a/db/2658.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2658, - "codeText": "TS2658", - "title": "Type '{0}' provides no match for the signature '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2659.json b/db/2659.json deleted file mode 100644 index 525aaea..0000000 --- a/db/2659.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2659, - "codeText": "TS2659", - "title": "'super' is only allowed in members of object literal expressions when option 'target' is 'ES2015' or higher.", - "category": "error", - "documentation": "" -} diff --git a/db/2660.json b/db/2660.json deleted file mode 100644 index 257ecac..0000000 --- a/db/2660.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2660, - "codeText": "TS2660", - "title": "'super' can only be referenced in members of derived classes or object literal expressions.", - "category": "error", - "documentation": "" -} diff --git a/db/2661.json b/db/2661.json deleted file mode 100644 index 69ffe4b..0000000 --- a/db/2661.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2661, - "codeText": "TS2661", - "title": "Cannot export '{0}'. Only local declarations can be exported from a module.", - "category": "error", - "documentation": "" -} diff --git a/db/2662.json b/db/2662.json deleted file mode 100644 index 0d87a14..0000000 --- a/db/2662.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2662, - "codeText": "TS2662", - "title": "Cannot find name '{0}'. Did you mean the static member '{1}.{0}'?", - "category": "error", - "documentation": "" -} diff --git a/db/2663.json b/db/2663.json deleted file mode 100644 index 91f64dd..0000000 --- a/db/2663.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2663, - "codeText": "TS2663", - "title": "Cannot find name '{0}'. Did you mean the instance member 'this.{0}'?", - "category": "error", - "documentation": "" -} diff --git a/db/2664.json b/db/2664.json deleted file mode 100644 index 0451257..0000000 --- a/db/2664.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2664, - "codeText": "TS2664", - "title": "Invalid module name in augmentation, module '{0}' cannot be found.", - "category": "error", - "documentation": "" -} diff --git a/db/2665.json b/db/2665.json deleted file mode 100644 index c29027b..0000000 --- a/db/2665.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2665, - "codeText": "TS2665", - "title": "Invalid module name in augmentation. Module '{0}' resolves to an untyped module at '{1}', which cannot be augmented.", - "category": "error", - "documentation": "" -} diff --git a/db/2666.json b/db/2666.json deleted file mode 100644 index 2f288bd..0000000 --- a/db/2666.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2666, - "codeText": "TS2666", - "title": "Exports and export assignments are not permitted in module augmentations.", - "category": "error", - "documentation": "" -} diff --git a/db/2667.json b/db/2667.json deleted file mode 100644 index 9239b06..0000000 --- a/db/2667.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2667, - "codeText": "TS2667", - "title": "Imports are not permitted in module augmentations. Consider moving them to the enclosing external module.", - "category": "error", - "documentation": "" -} diff --git a/db/2668.json b/db/2668.json deleted file mode 100644 index dad14a0..0000000 --- a/db/2668.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2668, - "codeText": "TS2668", - "title": "'export' modifier cannot be applied to ambient modules and module augmentations since they are always visible.", - "category": "error", - "documentation": "" -} diff --git a/db/2669.json b/db/2669.json deleted file mode 100644 index f7d9aa1..0000000 --- a/db/2669.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2669, - "codeText": "TS2669", - "title": "Augmentations for the global scope can only be directly nested in external modules or ambient module declarations.", - "category": "error", - "documentation": "" -} diff --git a/db/2670.json b/db/2670.json deleted file mode 100644 index ac91a72..0000000 --- a/db/2670.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2670, - "codeText": "TS2670", - "title": "Augmentations for the global scope should have 'declare' modifier unless they appear in already ambient context.", - "category": "error", - "documentation": "" -} diff --git a/db/2671.json b/db/2671.json deleted file mode 100644 index fdfe317..0000000 --- a/db/2671.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2671, - "codeText": "TS2671", - "title": "Cannot augment module '{0}' because it resolves to a non-module entity.", - "category": "error", - "documentation": "" -} diff --git a/db/2672.json b/db/2672.json deleted file mode 100644 index 34b3b6d..0000000 --- a/db/2672.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2672, - "codeText": "TS2672", - "title": "Cannot assign a '{0}' constructor type to a '{1}' constructor type.", - "category": "error", - "documentation": "" -} diff --git a/db/2673.json b/db/2673.json deleted file mode 100644 index b0b91b5..0000000 --- a/db/2673.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2673, - "codeText": "TS2673", - "title": "Constructor of class '{0}' is private and only accessible within the class declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/2674.json b/db/2674.json deleted file mode 100644 index ac9f07b..0000000 --- a/db/2674.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2674, - "codeText": "TS2674", - "title": "Constructor of class '{0}' is protected and only accessible within the class declaration.", - "category": "error", - "documentation": "" -} diff --git a/db/2675.json b/db/2675.json deleted file mode 100644 index 1fb2c52..0000000 --- a/db/2675.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2675, - "codeText": "TS2675", - "title": "Cannot extend a class '{0}'. Class constructor is marked as private.", - "category": "error", - "documentation": "" -} diff --git a/db/2676.json b/db/2676.json deleted file mode 100644 index a7210ba..0000000 --- a/db/2676.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2676, - "codeText": "TS2676", - "title": "Accessors must both be abstract or non-abstract.", - "category": "error", - "documentation": "" -} diff --git a/db/2677.json b/db/2677.json deleted file mode 100644 index 3efdb27..0000000 --- a/db/2677.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2677, - "codeText": "TS2677", - "title": "A type predicate's type must be assignable to its parameter's type.", - "category": "error", - "documentation": "" -} diff --git a/db/2678.json b/db/2678.json deleted file mode 100644 index ef401e8..0000000 --- a/db/2678.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2678, - "codeText": "TS2678", - "title": "Type '{0}' is not comparable to type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2679.json b/db/2679.json deleted file mode 100644 index 882955c..0000000 --- a/db/2679.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2679, - "codeText": "TS2679", - "title": "A function that is called with the 'new' keyword cannot have a 'this' type that is 'void'.", - "category": "error", - "documentation": "" -} diff --git a/db/2680.json b/db/2680.json deleted file mode 100644 index c6ce073..0000000 --- a/db/2680.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2680, - "codeText": "TS2680", - "title": "A '{0}' parameter must be the first parameter.", - "category": "error", - "documentation": "" -} diff --git a/db/2681.json b/db/2681.json deleted file mode 100644 index ff81f24..0000000 --- a/db/2681.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2681, - "codeText": "TS2681", - "title": "A constructor cannot have a 'this' parameter.", - "category": "error", - "documentation": "" -} diff --git a/db/2683.json b/db/2683.json deleted file mode 100644 index 62dc56d..0000000 --- a/db/2683.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2683, - "codeText": "TS2683", - "title": "'this' implicitly has type 'any' because it does not have a type annotation.", - "category": "error", - "documentation": "" -} diff --git a/db/2684.json b/db/2684.json deleted file mode 100644 index ac69f11..0000000 --- a/db/2684.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2684, - "codeText": "TS2684", - "title": "The 'this' context of type '{0}' is not assignable to method's 'this' of type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2685.json b/db/2685.json deleted file mode 100644 index bbc0f5a..0000000 --- a/db/2685.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2685, - "codeText": "TS2685", - "title": "The 'this' types of each signature are incompatible.", - "category": "error", - "documentation": "" -} diff --git a/db/2686.json b/db/2686.json deleted file mode 100644 index 636d0a3..0000000 --- a/db/2686.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2686, - "codeText": "TS2686", - "title": "'{0}' refers to a UMD global, but the current file is a module. Consider adding an import instead.", - "category": "error", - "documentation": "" -} diff --git a/db/2687.json b/db/2687.json deleted file mode 100644 index 8a0afa3..0000000 --- a/db/2687.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2687, - "codeText": "TS2687", - "title": "All declarations of '{0}' must have identical modifiers.", - "category": "error", - "documentation": "" -} diff --git a/db/2688.json b/db/2688.json deleted file mode 100644 index c95c2db..0000000 --- a/db/2688.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2688, - "codeText": "TS2688", - "title": "Cannot find type definition file for '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2689.json b/db/2689.json deleted file mode 100644 index f98e7aa..0000000 --- a/db/2689.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2689, - "codeText": "TS2689", - "title": "Cannot extend an interface '{0}'. Did you mean 'implements'?", - "category": "error", - "documentation": "" -} diff --git a/db/2690.json b/db/2690.json deleted file mode 100644 index 47ba7ad..0000000 --- a/db/2690.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2690, - "codeText": "TS2690", - "title": "'{0}' only refers to a type, but is being used as a value here. Did you mean to use '{1} in {0}'?", - "category": "error", - "documentation": "" -} diff --git a/db/2691.json b/db/2691.json deleted file mode 100644 index 1b0175f..0000000 --- a/db/2691.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2691, - "codeText": "TS2691", - "title": "An import path cannot end with a '{0}' extension. Consider importing '{1}' instead.", - "category": "error", - "documentation": "" -} diff --git a/db/2692.json b/db/2692.json deleted file mode 100644 index bf6f646..0000000 --- a/db/2692.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2692, - "codeText": "TS2692", - "title": "'{0}' is a primitive, but '{1}' is a wrapper object. Prefer using '{0}' when possible.", - "category": "error", - "documentation": "" -} diff --git a/db/2693.json b/db/2693.json deleted file mode 100644 index dfba448..0000000 --- a/db/2693.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2693, - "codeText": "TS2693", - "title": "'{0}' only refers to a type, but is being used as a value here.", - "category": "error", - "documentation": "" -} diff --git a/db/2694.json b/db/2694.json deleted file mode 100644 index 1525824..0000000 --- a/db/2694.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2694, - "codeText": "TS2694", - "title": "Namespace '{0}' has no exported member '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2695.json b/db/2695.json deleted file mode 100644 index ba69171..0000000 --- a/db/2695.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2695, - "codeText": "TS2695", - "title": "Left side of comma operator is unused and has no side effects.", - "category": "error", - "documentation": "" -} diff --git a/db/2696.json b/db/2696.json deleted file mode 100644 index 79f7d08..0000000 --- a/db/2696.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2696, - "codeText": "TS2696", - "title": "The 'Object' type is assignable to very few other types. Did you mean to use the 'any' type instead?", - "category": "error", - "documentation": "" -} diff --git a/db/2697.json b/db/2697.json deleted file mode 100644 index 1348423..0000000 --- a/db/2697.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2697, - "codeText": "TS2697", - "title": "An async function or method must return a 'Promise'. Make sure you have a declaration for 'Promise' or include 'ES2015' in your '--lib' option.", - "category": "error", - "documentation": "" -} diff --git a/db/2698.json b/db/2698.json deleted file mode 100644 index 1f12e6f..0000000 --- a/db/2698.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2698, - "codeText": "TS2698", - "title": "Spread types may only be created from object types.", - "category": "error", - "documentation": "" -} diff --git a/db/2699.json b/db/2699.json deleted file mode 100644 index c150af8..0000000 --- a/db/2699.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2699, - "codeText": "TS2699", - "title": "Static property '{0}' conflicts with built-in property 'Function.{0}' of constructor function '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2700.json b/db/2700.json deleted file mode 100644 index 4c4b027..0000000 --- a/db/2700.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2700, - "codeText": "TS2700", - "title": "Rest types may only be created from object types.", - "category": "error", - "documentation": "" -} diff --git a/db/2701.json b/db/2701.json deleted file mode 100644 index 7de3f9a..0000000 --- a/db/2701.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2701, - "codeText": "TS2701", - "title": "The target of an object rest assignment must be a variable or a property access.", - "category": "error", - "documentation": "" -} diff --git a/db/2702.json b/db/2702.json deleted file mode 100644 index 6199259..0000000 --- a/db/2702.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2702, - "codeText": "TS2702", - "title": "'{0}' only refers to a type, but is being used as a namespace here.", - "category": "error", - "documentation": "" -} diff --git a/db/2703.json b/db/2703.json deleted file mode 100644 index c682e08..0000000 --- a/db/2703.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2703, - "codeText": "TS2703", - "title": "The operand of a 'delete' operator must be a property reference.", - "category": "error", - "documentation": "" -} diff --git a/db/2704.json b/db/2704.json deleted file mode 100644 index 198d052..0000000 --- a/db/2704.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2704, - "codeText": "TS2704", - "title": "The operand of a 'delete' operator cannot be a read-only property.", - "category": "error", - "documentation": "" -} diff --git a/db/2705.json b/db/2705.json deleted file mode 100644 index df3ff41..0000000 --- a/db/2705.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2705, - "codeText": "TS2705", - "title": "An async function or method in ES5/ES3 requires the 'Promise' constructor. Make sure you have a declaration for the 'Promise' constructor or include 'ES2015' in your '--lib' option.", - "category": "error", - "documentation": "" -} diff --git a/db/2706.json b/db/2706.json deleted file mode 100644 index 51f08f2..0000000 --- a/db/2706.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2706, - "codeText": "TS2706", - "title": "Required type parameters may not follow optional type parameters.", - "category": "error", - "documentation": "" -} diff --git a/db/2707.json b/db/2707.json deleted file mode 100644 index f5b341f..0000000 --- a/db/2707.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2707, - "codeText": "TS2707", - "title": "Generic type '{0}' requires between {1} and {2} type arguments.", - "category": "error", - "documentation": "" -} diff --git a/db/2708.json b/db/2708.json deleted file mode 100644 index 922e93b..0000000 --- a/db/2708.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2708, - "codeText": "TS2708", - "title": "Cannot use namespace '{0}' as a value.", - "category": "error", - "documentation": "" -} diff --git a/db/2709.json b/db/2709.json deleted file mode 100644 index 3a4d5d3..0000000 --- a/db/2709.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2709, - "codeText": "TS2709", - "title": "Cannot use namespace '{0}' as a type.", - "category": "error", - "documentation": "" -} diff --git a/db/2710.json b/db/2710.json deleted file mode 100644 index 0ba927c..0000000 --- a/db/2710.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2710, - "codeText": "TS2710", - "title": "'{0}' are specified twice. The attribute named '{0}' will be overwritten.", - "category": "error", - "documentation": "" -} diff --git a/db/2711.json b/db/2711.json deleted file mode 100644 index 2f5c624..0000000 --- a/db/2711.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2711, - "codeText": "TS2711", - "title": "A dynamic import call returns a 'Promise'. Make sure you have a declaration for 'Promise' or include 'ES2015' in your '--lib' option.", - "category": "error", - "documentation": "" -} diff --git a/db/2712.json b/db/2712.json deleted file mode 100644 index 8a1e078..0000000 --- a/db/2712.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2712, - "codeText": "TS2712", - "title": "A dynamic import call in ES5/ES3 requires the 'Promise' constructor. Make sure you have a declaration for the 'Promise' constructor or include 'ES2015' in your '--lib' option.", - "category": "error", - "documentation": "" -} diff --git a/db/2713.json b/db/2713.json deleted file mode 100644 index b2134dc..0000000 --- a/db/2713.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2713, - "codeText": "TS2713", - "title": "Cannot access '{0}.{1}' because '{0}' is a type, but not a namespace. Did you mean to retrieve the type of the property '{1}' in '{0}' with '{0}[\"{1}\"]'?", - "category": "error", - "documentation": "" -} diff --git a/db/2714.json b/db/2714.json deleted file mode 100644 index fcb65c7..0000000 --- a/db/2714.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2714, - "codeText": "TS2714", - "title": "The expression of an export assignment must be an identifier or qualified name in an ambient context.", - "category": "error", - "documentation": "" -} diff --git a/db/2715.json b/db/2715.json deleted file mode 100644 index 2df2cdb..0000000 --- a/db/2715.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2715, - "codeText": "TS2715", - "title": "Abstract property '{0}' in class '{1}' cannot be accessed in the constructor.", - "category": "error", - "documentation": "" -} diff --git a/db/2716.json b/db/2716.json deleted file mode 100644 index c4783ff..0000000 --- a/db/2716.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2716, - "codeText": "TS2716", - "title": "Type parameter '{0}' has a circular default.", - "category": "error", - "documentation": "" -} diff --git a/db/2717.json b/db/2717.json deleted file mode 100644 index d47a652..0000000 --- a/db/2717.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2717, - "codeText": "TS2717", - "title": "Subsequent property declarations must have the same type. Property '{0}' must be of type '{1}', but here has type '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2718.json b/db/2718.json deleted file mode 100644 index 8ef8693..0000000 --- a/db/2718.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2718, - "codeText": "TS2718", - "title": "Duplicate property '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2719.json b/db/2719.json deleted file mode 100644 index d292f1d..0000000 --- a/db/2719.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2719, - "codeText": "TS2719", - "title": "Type '{0}' is not assignable to type '{1}'. Two different types with this name exist, but they are unrelated.", - "category": "error", - "documentation": "" -} diff --git a/db/2720.json b/db/2720.json deleted file mode 100644 index 3dc1a68..0000000 --- a/db/2720.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2720, - "codeText": "TS2720", - "title": "Class '{0}' incorrectly implements class '{1}'. Did you mean to extend '{1}' and inherit its members as a subclass?", - "category": "error", - "documentation": "" -} diff --git a/db/2721.json b/db/2721.json deleted file mode 100644 index 7d96f80..0000000 --- a/db/2721.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2721, - "codeText": "TS2721", - "title": "Cannot invoke an object which is possibly 'null'.", - "category": "error", - "documentation": "" -} diff --git a/db/2722.json b/db/2722.json deleted file mode 100644 index bbfeaf9..0000000 --- a/db/2722.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2722, - "codeText": "TS2722", - "title": "Cannot invoke an object which is possibly 'undefined'.", - "category": "error", - "documentation": "" -} diff --git a/db/2723.json b/db/2723.json deleted file mode 100644 index a1d06bc..0000000 --- a/db/2723.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2723, - "codeText": "TS2723", - "title": "Cannot invoke an object which is possibly 'null' or 'undefined'.", - "category": "error", - "documentation": "" -} diff --git a/db/2724.json b/db/2724.json deleted file mode 100644 index f05104e..0000000 --- a/db/2724.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2724, - "codeText": "TS2724", - "title": "'{0}' has no exported member named '{1}'. Did you mean '{2}'?", - "category": "error", - "documentation": "" -} diff --git a/db/2725.json b/db/2725.json deleted file mode 100644 index 89b03c9..0000000 --- a/db/2725.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2725, - "codeText": "TS2725", - "title": "Class name cannot be 'Object' when targeting ES5 with module {0}.", - "category": "error", - "documentation": "" -} diff --git a/db/2726.json b/db/2726.json deleted file mode 100644 index bf5392b..0000000 --- a/db/2726.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2726, - "codeText": "TS2726", - "title": "Cannot find lib definition for '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2727.json b/db/2727.json deleted file mode 100644 index 7f3b2a8..0000000 --- a/db/2727.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2727, - "codeText": "TS2727", - "title": "Cannot find lib definition for '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" -} diff --git a/db/2728.json b/db/2728.json deleted file mode 100644 index 0430522..0000000 --- a/db/2728.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2728, - "codeText": "TS2728", - "title": "'{0}' is declared here.", - "category": "message", - "documentation": "" -} diff --git a/db/2729.json b/db/2729.json deleted file mode 100644 index 519f65f..0000000 --- a/db/2729.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2729, - "codeText": "TS2729", - "title": "Property '{0}' is used before its initialization.", - "category": "error", - "documentation": "" -} diff --git a/db/2730.json b/db/2730.json deleted file mode 100644 index c64d14b..0000000 --- a/db/2730.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2730, - "codeText": "TS2730", - "title": "An arrow function cannot have a 'this' parameter.", - "category": "error", - "documentation": "" -} diff --git a/db/2731.json b/db/2731.json deleted file mode 100644 index 969487d..0000000 --- a/db/2731.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2731, - "codeText": "TS2731", - "title": "Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'.", - "category": "error", - "documentation": "" -} diff --git a/db/2732.json b/db/2732.json deleted file mode 100644 index c34bd1e..0000000 --- a/db/2732.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2732, - "codeText": "TS2732", - "title": "Cannot find module '{0}'. Consider using '--resolveJsonModule' to import module with '.json' extension.", - "category": "error", - "documentation": "" -} diff --git a/db/2733.json b/db/2733.json deleted file mode 100644 index 76407b8..0000000 --- a/db/2733.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2733, - "codeText": "TS2733", - "title": "Property '{0}' was also declared here.", - "category": "error", - "documentation": "" -} diff --git a/db/2734.json b/db/2734.json deleted file mode 100644 index f0480db..0000000 --- a/db/2734.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2734, - "codeText": "TS2734", - "title": "Are you missing a semicolon?", - "category": "error", - "documentation": "" -} diff --git a/db/2735.json b/db/2735.json deleted file mode 100644 index 26672e8..0000000 --- a/db/2735.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2735, - "codeText": "TS2735", - "title": "Did you mean for '{0}' to be constrained to type 'new (...args: any[]) => {1}'?", - "category": "error", - "documentation": "" -} diff --git a/db/2736.json b/db/2736.json deleted file mode 100644 index e5567fe..0000000 --- a/db/2736.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2736, - "codeText": "TS2736", - "title": "Operator '{0}' cannot be applied to type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2737.json b/db/2737.json deleted file mode 100644 index bcdf0d0..0000000 --- a/db/2737.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2737, - "codeText": "TS2737", - "title": "BigInt literals are not available when targeting lower than ES2020.", - "category": "error", - "documentation": "" -} diff --git a/db/2738.json b/db/2738.json deleted file mode 100644 index efd2902..0000000 --- a/db/2738.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2738, - "codeText": "TS2738", - "title": "An outer value of 'this' is shadowed by this container.", - "category": "message", - "documentation": "" -} diff --git a/db/2739.json b/db/2739.json deleted file mode 100644 index 609ccc3..0000000 --- a/db/2739.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2739, - "codeText": "TS2739", - "title": "Type '{0}' is missing the following properties from type '{1}': {2}", - "category": "error", - "documentation": "" -} diff --git a/db/2740.json b/db/2740.json deleted file mode 100644 index 4be3197..0000000 --- a/db/2740.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2740, - "codeText": "TS2740", - "title": "Type '{0}' is missing the following properties from type '{1}': {2}, and {3} more.", - "category": "error", - "documentation": "" -} diff --git a/db/2741.json b/db/2741.json deleted file mode 100644 index 48b1fed..0000000 --- a/db/2741.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2741, - "codeText": "TS2741", - "title": "Property '{0}' is missing in type '{1}' but required in type '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2742.json b/db/2742.json deleted file mode 100644 index d211a8c..0000000 --- a/db/2742.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2742, - "codeText": "TS2742", - "title": "The inferred type of '{0}' cannot be named without a reference to '{1}'. This is likely not portable. A type annotation is necessary.", - "category": "error", - "documentation": "" -} diff --git a/db/2743.json b/db/2743.json deleted file mode 100644 index 7d4a1e4..0000000 --- a/db/2743.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2743, - "codeText": "TS2743", - "title": "No overload expects {0} type arguments, but overloads do exist that expect either {1} or {2} type arguments.", - "category": "error", - "documentation": "" -} diff --git a/db/2744.json b/db/2744.json deleted file mode 100644 index 04f8b8a..0000000 --- a/db/2744.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2744, - "codeText": "TS2744", - "title": "Type parameter defaults can only reference previously declared type parameters.", - "category": "error", - "documentation": "" -} diff --git a/db/2745.json b/db/2745.json deleted file mode 100644 index d0c37f7..0000000 --- a/db/2745.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2745, - "codeText": "TS2745", - "title": "This JSX tag's '{0}' prop expects type '{1}' which requires multiple children, but only a single child was provided.", - "category": "error", - "documentation": "" -} diff --git a/db/2746.json b/db/2746.json deleted file mode 100644 index 916e2af..0000000 --- a/db/2746.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2746, - "codeText": "TS2746", - "title": "This JSX tag's '{0}' prop expects a single child of type '{1}', but multiple children were provided.", - "category": "error", - "documentation": "" -} diff --git a/db/2747.json b/db/2747.json deleted file mode 100644 index 7eaf7e0..0000000 --- a/db/2747.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2747, - "codeText": "TS2747", - "title": "'{0}' components don't accept text as child elements. Text in JSX has the type 'string', but the expected type of '{1}' is '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2748.json b/db/2748.json deleted file mode 100644 index ec3177c..0000000 --- a/db/2748.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2748, - "codeText": "TS2748", - "title": "Cannot access ambient const enums when the '--isolatedModules' flag is provided.", - "category": "error", - "documentation": "" -} diff --git a/db/2749.json b/db/2749.json deleted file mode 100644 index 7c5bdff..0000000 --- a/db/2749.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2749, - "codeText": "TS2749", - "title": "'{0}' refers to a value, but is being used as a type here. Did you mean 'typeof {0}'?", - "category": "error", - "documentation": "" -} diff --git a/db/2750.json b/db/2750.json deleted file mode 100644 index ff303c0..0000000 --- a/db/2750.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2750, - "codeText": "TS2750", - "title": "The implementation signature is declared here.", - "category": "error", - "documentation": "" -} diff --git a/db/2751.json b/db/2751.json deleted file mode 100644 index 6ff8e3f..0000000 --- a/db/2751.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2751, - "codeText": "TS2751", - "title": "Circularity originates in type at this location.", - "category": "error", - "documentation": "" -} diff --git a/db/2752.json b/db/2752.json deleted file mode 100644 index 145a2f0..0000000 --- a/db/2752.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2752, - "codeText": "TS2752", - "title": "The first export default is here.", - "category": "error", - "documentation": "" -} diff --git a/db/2753.json b/db/2753.json deleted file mode 100644 index a0926d6..0000000 --- a/db/2753.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2753, - "codeText": "TS2753", - "title": "Another export default is here.", - "category": "error", - "documentation": "" -} diff --git a/db/2754.json b/db/2754.json deleted file mode 100644 index 1d9490c..0000000 --- a/db/2754.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2754, - "codeText": "TS2754", - "title": "'super' may not use type arguments.", - "category": "error", - "documentation": "" -} diff --git a/db/2755.json b/db/2755.json deleted file mode 100644 index 5c4f59e..0000000 --- a/db/2755.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2755, - "codeText": "TS2755", - "title": "No constituent of type '{0}' is callable.", - "category": "error", - "documentation": "" -} diff --git a/db/2756.json b/db/2756.json deleted file mode 100644 index df8af0c..0000000 --- a/db/2756.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2756, - "codeText": "TS2756", - "title": "Not all constituents of type '{0}' are callable.", - "category": "error", - "documentation": "" -} diff --git a/db/2757.json b/db/2757.json deleted file mode 100644 index 096dd32..0000000 --- a/db/2757.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2757, - "codeText": "TS2757", - "title": "Type '{0}' has no call signatures.", - "category": "error", - "documentation": "" -} diff --git a/db/2758.json b/db/2758.json deleted file mode 100644 index 1657953..0000000 --- a/db/2758.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2758, - "codeText": "TS2758", - "title": "Each member of the union type '{0}' has signatures, but none of those signatures are compatible with each other.", - "category": "error", - "documentation": "" -} diff --git a/db/2759.json b/db/2759.json deleted file mode 100644 index 0cf9ea2..0000000 --- a/db/2759.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2759, - "codeText": "TS2759", - "title": "No constituent of type '{0}' is constructable.", - "category": "error", - "documentation": "" -} diff --git a/db/2760.json b/db/2760.json deleted file mode 100644 index dda17fe..0000000 --- a/db/2760.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2760, - "codeText": "TS2760", - "title": "Not all constituents of type '{0}' are constructable.", - "category": "error", - "documentation": "" -} diff --git a/db/2761.json b/db/2761.json deleted file mode 100644 index 98edf34..0000000 --- a/db/2761.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2761, - "codeText": "TS2761", - "title": "Type '{0}' has no construct signatures.", - "category": "error", - "documentation": "" -} diff --git a/db/2762.json b/db/2762.json deleted file mode 100644 index 9ae3bd7..0000000 --- a/db/2762.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2762, - "codeText": "TS2762", - "title": "Each member of the union type '{0}' has construct signatures, but none of those signatures are compatible with each other.", - "category": "error", - "documentation": "" -} diff --git a/db/2763.json b/db/2763.json deleted file mode 100644 index 4217def..0000000 --- a/db/2763.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2763, - "codeText": "TS2763", - "title": "Cannot iterate value because the 'next' method of its iterator expects type '{1}', but for-of will always send '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2764.json b/db/2764.json deleted file mode 100644 index 1767bee..0000000 --- a/db/2764.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2764, - "codeText": "TS2764", - "title": "Cannot iterate value because the 'next' method of its iterator expects type '{1}', but array spread will always send '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2765.json b/db/2765.json deleted file mode 100644 index b71cfa1..0000000 --- a/db/2765.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2765, - "codeText": "TS2765", - "title": "Cannot iterate value because the 'next' method of its iterator expects type '{1}', but array destructuring will always send '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2766.json b/db/2766.json deleted file mode 100644 index 285f635..0000000 --- a/db/2766.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2766, - "codeText": "TS2766", - "title": "Cannot delegate iteration to value because the 'next' method of its iterator expects type '{1}', but the containing generator will always send '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2767.json b/db/2767.json deleted file mode 100644 index e99c308..0000000 --- a/db/2767.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2767, - "codeText": "TS2767", - "title": "The '{0}' property of an iterator must be a method.", - "category": "error", - "documentation": "" -} diff --git a/db/2768.json b/db/2768.json deleted file mode 100644 index bc1c4c1..0000000 --- a/db/2768.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2768, - "codeText": "TS2768", - "title": "The '{0}' property of an async iterator must be a method.", - "category": "error", - "documentation": "" -} diff --git a/db/2769.json b/db/2769.json deleted file mode 100644 index 99b14c3..0000000 --- a/db/2769.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2769, - "codeText": "TS2769", - "title": "No overload matches this call.", - "category": "error", - "documentation": "" -} diff --git a/db/2770.json b/db/2770.json deleted file mode 100644 index 3888d51..0000000 --- a/db/2770.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2770, - "codeText": "TS2770", - "title": "The last overload gave the following error.", - "category": "error", - "documentation": "" -} diff --git a/db/2771.json b/db/2771.json deleted file mode 100644 index 6abfc05..0000000 --- a/db/2771.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2771, - "codeText": "TS2771", - "title": "The last overload is declared here.", - "category": "error", - "documentation": "" -} diff --git a/db/2772.json b/db/2772.json deleted file mode 100644 index a888ef8..0000000 --- a/db/2772.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2772, - "codeText": "TS2772", - "title": "Overload {0} of {1}, '{2}', gave the following error.", - "category": "error", - "documentation": "" -} diff --git a/db/2773.json b/db/2773.json deleted file mode 100644 index 620881a..0000000 --- a/db/2773.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2773, - "codeText": "TS2773", - "title": "Did you forget to use 'await'?", - "category": "error", - "documentation": "" -} diff --git a/db/2774.json b/db/2774.json deleted file mode 100644 index 3ae9472..0000000 --- a/db/2774.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2774, - "codeText": "TS2774", - "title": "This condition will always return true since this function is always defined. Did you mean to call it instead?", - "category": "error", - "documentation": "" -} diff --git a/db/2775.json b/db/2775.json deleted file mode 100644 index 0e85f4e..0000000 --- a/db/2775.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2775, - "codeText": "TS2775", - "title": "Assertions require every name in the call target to be declared with an explicit type annotation.", - "category": "error", - "documentation": "" -} diff --git a/db/2776.json b/db/2776.json deleted file mode 100644 index 6500aa7..0000000 --- a/db/2776.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2776, - "codeText": "TS2776", - "title": "Assertions require the call target to be an identifier or qualified name.", - "category": "error", - "documentation": "" -} diff --git a/db/2777.json b/db/2777.json deleted file mode 100644 index 944e9f5..0000000 --- a/db/2777.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2777, - "codeText": "TS2777", - "title": "The operand of an increment or decrement operator may not be an optional property access.", - "category": "error", - "documentation": "" -} diff --git a/db/2778.json b/db/2778.json deleted file mode 100644 index b6c6a72..0000000 --- a/db/2778.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2778, - "codeText": "TS2778", - "title": "The target of an object rest assignment may not be an optional property access.", - "category": "error", - "documentation": "" -} diff --git a/db/2779.json b/db/2779.json deleted file mode 100644 index 6873808..0000000 --- a/db/2779.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2779, - "codeText": "TS2779", - "title": "The left-hand side of an assignment expression may not be an optional property access.", - "category": "error", - "documentation": "" -} diff --git a/db/2780.json b/db/2780.json deleted file mode 100644 index 734dede..0000000 --- a/db/2780.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2780, - "codeText": "TS2780", - "title": "The left-hand side of a 'for...in' statement may not be an optional property access.", - "category": "error", - "documentation": "" -} diff --git a/db/2781.json b/db/2781.json deleted file mode 100644 index 0c9e9d1..0000000 --- a/db/2781.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2781, - "codeText": "TS2781", - "title": "The left-hand side of a 'for...of' statement may not be an optional property access.", - "category": "error", - "documentation": "" -} diff --git a/db/2782.json b/db/2782.json deleted file mode 100644 index c8172e0..0000000 --- a/db/2782.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2782, - "codeText": "TS2782", - "title": "'{0}' needs an explicit type annotation.", - "category": "message", - "documentation": "" -} diff --git a/db/2783.json b/db/2783.json deleted file mode 100644 index 3a22aa8..0000000 --- a/db/2783.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2783, - "codeText": "TS2783", - "title": "'{0}' is specified more than once, so this usage will be overwritten.", - "category": "error", - "documentation": "" -} diff --git a/db/2784.json b/db/2784.json deleted file mode 100644 index 3211f27..0000000 --- a/db/2784.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2784, - "codeText": "TS2784", - "title": "'get' and 'set' accessors cannot declare 'this' parameters.", - "category": "error", - "documentation": "" -} diff --git a/db/2785.json b/db/2785.json deleted file mode 100644 index b9e8fdb..0000000 --- a/db/2785.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2785, - "codeText": "TS2785", - "title": "This spread always overwrites this property.", - "category": "error", - "documentation": "" -} diff --git a/db/2786.json b/db/2786.json deleted file mode 100644 index 7bd820c..0000000 --- a/db/2786.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2786, - "codeText": "TS2786", - "title": "'{0}' cannot be used as a JSX component.", - "category": "error", - "documentation": "" -} diff --git a/db/2787.json b/db/2787.json deleted file mode 100644 index 39aeee3..0000000 --- a/db/2787.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2787, - "codeText": "TS2787", - "title": "Its return type '{0}' is not a valid JSX element.", - "category": "error", - "documentation": "" -} diff --git a/db/2788.json b/db/2788.json deleted file mode 100644 index 5da2802..0000000 --- a/db/2788.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2788, - "codeText": "TS2788", - "title": "Its instance type '{0}' is not a valid JSX element.", - "category": "error", - "documentation": "" -} diff --git a/db/2789.json b/db/2789.json deleted file mode 100644 index ef358cf..0000000 --- a/db/2789.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2789, - "codeText": "TS2789", - "title": "Its element type '{0}' is not a valid JSX element.", - "category": "error", - "documentation": "" -} diff --git a/db/2790.json b/db/2790.json deleted file mode 100644 index 98823de..0000000 --- a/db/2790.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2790, - "codeText": "TS2790", - "title": "The operand of a 'delete' operator must be optional.", - "category": "error", - "documentation": "" -} diff --git a/db/2791.json b/db/2791.json deleted file mode 100644 index 24b3fb6..0000000 --- a/db/2791.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2791, - "codeText": "TS2791", - "title": "Exponentiation cannot be performed on 'bigint' values unless the 'target' option is set to 'es2016' or later.", - "category": "error", - "documentation": "" -} diff --git a/db/2792.json b/db/2792.json deleted file mode 100644 index 5816a22..0000000 --- a/db/2792.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2792, - "codeText": "TS2792", - "title": "Cannot find module '{0}'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option?", - "category": "error", - "documentation": "" -} diff --git a/db/2793.json b/db/2793.json deleted file mode 100644 index d62314b..0000000 --- a/db/2793.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2793, - "codeText": "TS2793", - "title": "The call would have succeeded against this implementation, but implementation signatures of overloads are not externally visible.", - "category": "error", - "documentation": "" -} diff --git a/db/2794.json b/db/2794.json deleted file mode 100644 index 174fea1..0000000 --- a/db/2794.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2794, - "codeText": "TS2794", - "title": "Expected {0} arguments, but got {1}. Did you forget to include 'void' in your type argument to 'Promise'?", - "category": "error", - "documentation": "" -} diff --git a/db/2795.json b/db/2795.json deleted file mode 100644 index efc469b..0000000 --- a/db/2795.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2795, - "codeText": "TS2795", - "title": "The 'intrinsic' keyword can only be used to declare compiler provided intrinsic types.", - "category": "error", - "documentation": "" -} diff --git a/db/2796.json b/db/2796.json deleted file mode 100644 index 33f2eb4..0000000 --- a/db/2796.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2796, - "codeText": "TS2796", - "title": "It is likely that you are missing a comma to separate these two template expressions. They form a tagged template expression which cannot be invoked.", - "category": "error", - "documentation": "" -} diff --git a/db/2797.json b/db/2797.json deleted file mode 100644 index c5751d3..0000000 --- a/db/2797.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2797, - "codeText": "TS2797", - "title": "A mixin class that extends from a type variable containing an abstract construct signature must also be declared 'abstract'.", - "category": "error", - "documentation": "" -} diff --git a/db/2798.json b/db/2798.json deleted file mode 100644 index 69f1de7..0000000 --- a/db/2798.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2798, - "codeText": "TS2798", - "title": "The declaration was marked as deprecated here.", - "category": "error", - "documentation": "" -} diff --git a/db/2799.json b/db/2799.json deleted file mode 100644 index cc52589..0000000 --- a/db/2799.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2799, - "codeText": "TS2799", - "title": "Type produces a tuple type that is too large to represent.", - "category": "error", - "documentation": "" -} diff --git a/db/2800.json b/db/2800.json deleted file mode 100644 index 449e73b..0000000 --- a/db/2800.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2800, - "codeText": "TS2800", - "title": "Expression produces a tuple type that is too large to represent.", - "category": "error", - "documentation": "" -} diff --git a/db/2801.json b/db/2801.json deleted file mode 100644 index cf1763b..0000000 --- a/db/2801.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2801, - "codeText": "TS2801", - "title": "This condition will always return true since this '{0}' is always defined.", - "category": "error", - "documentation": "" -} diff --git a/db/2802.json b/db/2802.json deleted file mode 100644 index e0a5001..0000000 --- a/db/2802.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2802, - "codeText": "TS2802", - "title": "Type '{0}' can only be iterated through when using the '--downlevelIteration' flag or with a '--target' of 'es2015' or higher.", - "category": "error", - "documentation": "" -} diff --git a/db/2803.json b/db/2803.json deleted file mode 100644 index a3b5c54..0000000 --- a/db/2803.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2803, - "codeText": "TS2803", - "title": "Cannot assign to private method '{0}'. Private methods are not writable.", - "category": "error", - "documentation": "" -} diff --git a/db/2804.json b/db/2804.json deleted file mode 100644 index 4439562..0000000 --- a/db/2804.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2804, - "codeText": "TS2804", - "title": "Duplicate identifier '{0}'. Static and instance elements cannot share the same private name.", - "category": "error", - "documentation": "" -} diff --git a/db/2806.json b/db/2806.json deleted file mode 100644 index 2c70244..0000000 --- a/db/2806.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2806, - "codeText": "TS2806", - "title": "Private accessor was defined without a getter.", - "category": "error", - "documentation": "" -} diff --git a/db/2807.json b/db/2807.json deleted file mode 100644 index 0303e82..0000000 --- a/db/2807.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2807, - "codeText": "TS2807", - "title": "This syntax requires an imported helper named '{1}' with {2} parameters, which is not compatible with the one in '{0}'. Consider upgrading your version of '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2808.json b/db/2808.json deleted file mode 100644 index 0ea7444..0000000 --- a/db/2808.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2808, - "codeText": "TS2808", - "title": "A get accessor must be at least as accessible as the setter", - "category": "error", - "documentation": "" -} diff --git a/db/2809.json b/db/2809.json deleted file mode 100644 index a1669ea..0000000 --- a/db/2809.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2809, - "codeText": "TS2809", - "title": "Declaration or statement expected. This '=' follows a block of statements, so if you intended to write a destructuring assignment, you might need to wrap the the whole assignment in parentheses.", - "category": "error", - "documentation": "" -} diff --git a/db/2810.json b/db/2810.json deleted file mode 100644 index 15af08f..0000000 --- a/db/2810.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2810, - "codeText": "TS2810", - "title": "Expected 1 argument, but got 0. 'new Promise()' needs a JSDoc hint to produce a 'resolve' that can be called without arguments.", - "category": "error", - "documentation": "" -} diff --git a/db/2811.json b/db/2811.json deleted file mode 100644 index a4732c5..0000000 --- a/db/2811.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2811, - "codeText": "TS2811", - "title": "Initializer for property '{0}'", - "category": "error", - "documentation": "" -} diff --git a/db/2812.json b/db/2812.json deleted file mode 100644 index c771355..0000000 --- a/db/2812.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2812, - "codeText": "TS2812", - "title": "Property '{0}' does not exist on type '{1}'. Try changing the 'lib' compiler option to include 'dom'.", - "category": "error", - "documentation": "" -} diff --git a/db/2813.json b/db/2813.json deleted file mode 100644 index 792234c..0000000 --- a/db/2813.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2813, - "codeText": "TS2813", - "title": "Class declaration cannot implement overload list for '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2814.json b/db/2814.json deleted file mode 100644 index 9b4e1bd..0000000 --- a/db/2814.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2814, - "codeText": "TS2814", - "title": "Function with bodies can only merge with classes that are ambient.", - "category": "error", - "documentation": "" -} diff --git a/db/2815.json b/db/2815.json deleted file mode 100644 index b78bde3..0000000 --- a/db/2815.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2815, - "codeText": "TS2815", - "title": "'arguments' cannot be referenced in property initializers.", - "category": "error", - "documentation": "" -} diff --git a/db/2816.json b/db/2816.json deleted file mode 100644 index 1721190..0000000 --- a/db/2816.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2816, - "codeText": "TS2816", - "title": "Cannot use 'this' in a static property initializer of a decorated class.", - "category": "error", - "documentation": "" -} diff --git a/db/2817.json b/db/2817.json deleted file mode 100644 index c19a6b4..0000000 --- a/db/2817.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2817, - "codeText": "TS2817", - "title": "Property '{0}' has no initializer and is not definitely assigned in a class static block.", - "category": "error", - "documentation": "" -} diff --git a/db/2818.json b/db/2818.json deleted file mode 100644 index 9abba09..0000000 --- a/db/2818.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2818, - "codeText": "TS2818", - "title": "Duplicate identifier '{0}'. Compiler reserves name '{1}' when emitting 'super' references in static initializers.", - "category": "error", - "documentation": "" -} diff --git a/db/2819.json b/db/2819.json deleted file mode 100644 index 892d2bb..0000000 --- a/db/2819.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2819, - "codeText": "TS2819", - "title": "Namespace name cannot be '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2820.json b/db/2820.json deleted file mode 100644 index 2809641..0000000 --- a/db/2820.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2820, - "codeText": "TS2820", - "title": "Type '{0}' is not assignable to type '{1}'. Did you mean '{2}'?", - "category": "error", - "documentation": "" -} diff --git a/db/2821.json b/db/2821.json deleted file mode 100644 index d061b99..0000000 --- a/db/2821.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2821, - "codeText": "TS2821", - "title": "Import assertions are only supported when the '--module' option is set to 'esnext' or 'nodenext'.", - "category": "error", - "documentation": "" -} diff --git a/db/2822.json b/db/2822.json deleted file mode 100644 index debe8f2..0000000 --- a/db/2822.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2822, - "codeText": "TS2822", - "title": "Import assertions cannot be used with type-only imports or exports.", - "category": "error", - "documentation": "" -} diff --git a/db/2833.json b/db/2833.json deleted file mode 100644 index 90fdde1..0000000 --- a/db/2833.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2833, - "codeText": "TS2833", - "title": "Cannot find namespace '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" -} diff --git a/db/2834.json b/db/2834.json deleted file mode 100644 index c4c810b..0000000 --- a/db/2834.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2834, - "codeText": "TS2834", - "title": "Relative import paths need explicit file extensions in EcmaScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.", - "category": "error", - "documentation": "" -} diff --git a/db/2835.json b/db/2835.json deleted file mode 100644 index 9431fe7..0000000 --- a/db/2835.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2835, - "codeText": "TS2835", - "title": "Relative import paths need explicit file extensions in EcmaScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '{0}'?", - "category": "error", - "documentation": "" -} diff --git a/db/2836.json b/db/2836.json deleted file mode 100644 index c818ce6..0000000 --- a/db/2836.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2836, - "codeText": "TS2836", - "title": "Import assertions are not allowed on statements that transpile to commonjs 'require' calls.", - "category": "error", - "documentation": "" -} diff --git a/db/2837.json b/db/2837.json deleted file mode 100644 index 41a6176..0000000 --- a/db/2837.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2837, - "codeText": "TS2837", - "title": "Import assertion values must be string literal expressions.", - "category": "error", - "documentation": "" -} diff --git a/db/2838.json b/db/2838.json deleted file mode 100644 index dc05502..0000000 --- a/db/2838.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2838, - "codeText": "TS2838", - "title": "All declarations of '{0}' must have identical constraints.", - "category": "error", - "documentation": "" -} diff --git a/db/2839.json b/db/2839.json deleted file mode 100644 index 4eec569..0000000 --- a/db/2839.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2839, - "codeText": "TS2839", - "title": "This condition will always return '{0}' since JavaScript compares objects by reference, not value.", - "category": "error", - "documentation": "" -} diff --git a/db/2840.json b/db/2840.json deleted file mode 100644 index 070bba5..0000000 --- a/db/2840.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2840, - "codeText": "TS2840", - "title": "An interface cannot extend a primitive type like '{0}'; an interface can only extend named types and classes", - "category": "error", - "documentation": "" -} diff --git a/db/2841.json b/db/2841.json deleted file mode 100644 index cc443e1..0000000 --- a/db/2841.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2841, - "codeText": "TS2841", - "title": "The type of this expression cannot be named without a 'resolution-mode' assertion, which is an unstable feature. Use nightly TypeScript to silence this error. Try updating with 'npm install -D typescript@next'.", - "category": "error", - "documentation": "" -} diff --git a/db/2842.json b/db/2842.json deleted file mode 100644 index 0a66a6e..0000000 --- a/db/2842.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2842, - "codeText": "TS2842", - "title": "'{0}' is an unused renaming of '{1}'. Did you intend to use it as a type annotation?", - "category": "error", - "documentation": "" -} diff --git a/db/2843.json b/db/2843.json deleted file mode 100644 index 654808b..0000000 --- a/db/2843.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2843, - "codeText": "TS2843", - "title": "We can only write a type for '{0}' by adding a type for the entire parameter here.", - "category": "error", - "documentation": "" -} diff --git a/db/2844.json b/db/2844.json deleted file mode 100644 index 2b17089..0000000 --- a/db/2844.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2844, - "codeText": "TS2844", - "title": "Type of instance member variable '{0}' cannot reference identifier '{1}' declared in the constructor.", - "category": "error", - "documentation": "" -} diff --git a/db/2845.json b/db/2845.json deleted file mode 100644 index a9742a3..0000000 --- a/db/2845.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2845, - "codeText": "TS2845", - "title": "This condition will always return '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/2846.json b/db/2846.json deleted file mode 100644 index 7b0276a..0000000 --- a/db/2846.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2846, - "codeText": "TS2846", - "title": "A declaration file cannot be imported without 'import type'. Did you mean to import an implementation file '{0}' instead?", - "category": "error", - "documentation": "" -} diff --git a/db/2848.json b/db/2848.json deleted file mode 100644 index e1413a1..0000000 --- a/db/2848.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2848, - "codeText": "TS2848", - "title": "The right-hand side of an 'instanceof' expression must not be an instantiation expression.", - "category": "error", - "documentation": "" -} diff --git a/db/2849.json b/db/2849.json deleted file mode 100644 index 97f55f5..0000000 --- a/db/2849.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2849, - "codeText": "TS2849", - "title": "Target signature provides too few arguments. Expected {0} or more, but got {1}.", - "category": "error", - "documentation": "" -} diff --git a/db/2850.json b/db/2850.json deleted file mode 100644 index bc1725f..0000000 --- a/db/2850.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2850, - "codeText": "TS2850", - "title": "The initializer of a 'using' declaration must be either an object with a '[Symbol.dispose]()' method, or be 'null' or 'undefined'.", - "category": "error", - "documentation": "" -} diff --git a/db/2851.json b/db/2851.json deleted file mode 100644 index e0a0863..0000000 --- a/db/2851.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2851, - "codeText": "TS2851", - "title": "The initializer of an 'await using' declaration must be either an object with a '[Symbol.asyncDispose]()' or '[Symbol.dispose]()' method, or be 'null' or 'undefined'.", - "category": "error", - "documentation": "" -} diff --git a/db/2852.json b/db/2852.json deleted file mode 100644 index 66ad49e..0000000 --- a/db/2852.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2852, - "codeText": "TS2852", - "title": "'await using' statements are only allowed within async functions and at the top levels of modules.", - "category": "error", - "documentation": "" -} diff --git a/db/2853.json b/db/2853.json deleted file mode 100644 index 370a1ba..0000000 --- a/db/2853.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2853, - "codeText": "TS2853", - "title": "'await using' statements are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module.", - "category": "error", - "documentation": "" -} diff --git a/db/2854.json b/db/2854.json deleted file mode 100644 index 219d518..0000000 --- a/db/2854.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 2854, - "codeText": "TS2854", - "title": "Top-level 'await using' statements are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher.", - "category": "error", - "documentation": "" -} diff --git a/db/4000.json b/db/4000.json deleted file mode 100644 index f33b85c..0000000 --- a/db/4000.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4000, - "codeText": "TS4000", - "title": "Import declaration '{0}' is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4002.json b/db/4002.json deleted file mode 100644 index fb66437..0000000 --- a/db/4002.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4002, - "codeText": "TS4002", - "title": "Type parameter '{0}' of exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4004.json b/db/4004.json deleted file mode 100644 index e57487e..0000000 --- a/db/4004.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4004, - "codeText": "TS4004", - "title": "Type parameter '{0}' of exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4006.json b/db/4006.json deleted file mode 100644 index c47ab18..0000000 --- a/db/4006.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4006, - "codeText": "TS4006", - "title": "Type parameter '{0}' of constructor signature from exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4008.json b/db/4008.json deleted file mode 100644 index b24b517..0000000 --- a/db/4008.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4008, - "codeText": "TS4008", - "title": "Type parameter '{0}' of call signature from exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4010.json b/db/4010.json deleted file mode 100644 index 3027b92..0000000 --- a/db/4010.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4010, - "codeText": "TS4010", - "title": "Type parameter '{0}' of public static method from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4012.json b/db/4012.json deleted file mode 100644 index 44da6f0..0000000 --- a/db/4012.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4012, - "codeText": "TS4012", - "title": "Type parameter '{0}' of public method from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4014.json b/db/4014.json deleted file mode 100644 index a663fdd..0000000 --- a/db/4014.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4014, - "codeText": "TS4014", - "title": "Type parameter '{0}' of method from exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4016.json b/db/4016.json deleted file mode 100644 index e1c86eb..0000000 --- a/db/4016.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4016, - "codeText": "TS4016", - "title": "Type parameter '{0}' of exported function has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4019.json b/db/4019.json deleted file mode 100644 index 096a0eb..0000000 --- a/db/4019.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4019, - "codeText": "TS4019", - "title": "Implements clause of exported class '{0}' has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4020.json b/db/4020.json deleted file mode 100644 index 10d91ea..0000000 --- a/db/4020.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4020, - "codeText": "TS4020", - "title": "'extends' clause of exported class '{0}' has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4021.json b/db/4021.json deleted file mode 100644 index 38a6f2a..0000000 --- a/db/4021.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4021, - "codeText": "TS4021", - "title": "'extends' clause of exported class has or is using private name '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4022.json b/db/4022.json deleted file mode 100644 index b7e5996..0000000 --- a/db/4022.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4022, - "codeText": "TS4022", - "title": "'extends' clause of exported interface '{0}' has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4023.json b/db/4023.json deleted file mode 100644 index 8ff1592..0000000 --- a/db/4023.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4023, - "codeText": "TS4023", - "title": "Exported variable '{0}' has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" -} diff --git a/db/4024.json b/db/4024.json deleted file mode 100644 index ea5850d..0000000 --- a/db/4024.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4024, - "codeText": "TS4024", - "title": "Exported variable '{0}' has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4025.json b/db/4025.json deleted file mode 100644 index 6dafc09..0000000 --- a/db/4025.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4025, - "codeText": "TS4025", - "title": "Exported variable '{0}' has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4026.json b/db/4026.json deleted file mode 100644 index e857188..0000000 --- a/db/4026.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4026, - "codeText": "TS4026", - "title": "Public static property '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" -} diff --git a/db/4027.json b/db/4027.json deleted file mode 100644 index 0963b0b..0000000 --- a/db/4027.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4027, - "codeText": "TS4027", - "title": "Public static property '{0}' of exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4028.json b/db/4028.json deleted file mode 100644 index 644ddca..0000000 --- a/db/4028.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4028, - "codeText": "TS4028", - "title": "Public static property '{0}' of exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4029.json b/db/4029.json deleted file mode 100644 index 2831ee2..0000000 --- a/db/4029.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4029, - "codeText": "TS4029", - "title": "Public property '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" -} diff --git a/db/4030.json b/db/4030.json deleted file mode 100644 index 5fd2d46..0000000 --- a/db/4030.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4030, - "codeText": "TS4030", - "title": "Public property '{0}' of exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4031.json b/db/4031.json deleted file mode 100644 index 0244b3f..0000000 --- a/db/4031.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4031, - "codeText": "TS4031", - "title": "Public property '{0}' of exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4032.json b/db/4032.json deleted file mode 100644 index 7806ad1..0000000 --- a/db/4032.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4032, - "codeText": "TS4032", - "title": "Property '{0}' of exported interface has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4033.json b/db/4033.json deleted file mode 100644 index 3e6c2ab..0000000 --- a/db/4033.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4033, - "codeText": "TS4033", - "title": "Property '{0}' of exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4034.json b/db/4034.json deleted file mode 100644 index 52fce5a..0000000 --- a/db/4034.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4034, - "codeText": "TS4034", - "title": "Parameter type of public static setter '{0}' from exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4035.json b/db/4035.json deleted file mode 100644 index 4f63070..0000000 --- a/db/4035.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4035, - "codeText": "TS4035", - "title": "Parameter type of public static setter '{0}' from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4036.json b/db/4036.json deleted file mode 100644 index e9834ca..0000000 --- a/db/4036.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4036, - "codeText": "TS4036", - "title": "Parameter type of public setter '{0}' from exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4037.json b/db/4037.json deleted file mode 100644 index b27376e..0000000 --- a/db/4037.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4037, - "codeText": "TS4037", - "title": "Parameter type of public setter '{0}' from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4038.json b/db/4038.json deleted file mode 100644 index fc804ac..0000000 --- a/db/4038.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4038, - "codeText": "TS4038", - "title": "Return type of public static getter '{0}' from exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" -} diff --git a/db/4039.json b/db/4039.json deleted file mode 100644 index ec38d0b..0000000 --- a/db/4039.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4039, - "codeText": "TS4039", - "title": "Return type of public static getter '{0}' from exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4040.json b/db/4040.json deleted file mode 100644 index 3295eb2..0000000 --- a/db/4040.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4040, - "codeText": "TS4040", - "title": "Return type of public static getter '{0}' from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4041.json b/db/4041.json deleted file mode 100644 index fa996aa..0000000 --- a/db/4041.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4041, - "codeText": "TS4041", - "title": "Return type of public getter '{0}' from exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" -} diff --git a/db/4042.json b/db/4042.json deleted file mode 100644 index 2c79de8..0000000 --- a/db/4042.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4042, - "codeText": "TS4042", - "title": "Return type of public getter '{0}' from exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4043.json b/db/4043.json deleted file mode 100644 index 3aefed7..0000000 --- a/db/4043.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4043, - "codeText": "TS4043", - "title": "Return type of public getter '{0}' from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4044.json b/db/4044.json deleted file mode 100644 index 37440a0..0000000 --- a/db/4044.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4044, - "codeText": "TS4044", - "title": "Return type of constructor signature from exported interface has or is using name '{0}' from private module '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4045.json b/db/4045.json deleted file mode 100644 index 80c9099..0000000 --- a/db/4045.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4045, - "codeText": "TS4045", - "title": "Return type of constructor signature from exported interface has or is using private name '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4046.json b/db/4046.json deleted file mode 100644 index ad2e156..0000000 --- a/db/4046.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4046, - "codeText": "TS4046", - "title": "Return type of call signature from exported interface has or is using name '{0}' from private module '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4047.json b/db/4047.json deleted file mode 100644 index b4cdb6e..0000000 --- a/db/4047.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4047, - "codeText": "TS4047", - "title": "Return type of call signature from exported interface has or is using private name '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4048.json b/db/4048.json deleted file mode 100644 index a0d82ef..0000000 --- a/db/4048.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4048, - "codeText": "TS4048", - "title": "Return type of index signature from exported interface has or is using name '{0}' from private module '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4049.json b/db/4049.json deleted file mode 100644 index d9013ab..0000000 --- a/db/4049.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4049, - "codeText": "TS4049", - "title": "Return type of index signature from exported interface has or is using private name '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4050.json b/db/4050.json deleted file mode 100644 index 8538dc8..0000000 --- a/db/4050.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4050, - "codeText": "TS4050", - "title": "Return type of public static method from exported class has or is using name '{0}' from external module {1} but cannot be named.", - "category": "error", - "documentation": "" -} diff --git a/db/4051.json b/db/4051.json deleted file mode 100644 index ade4051..0000000 --- a/db/4051.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4051, - "codeText": "TS4051", - "title": "Return type of public static method from exported class has or is using name '{0}' from private module '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4052.json b/db/4052.json deleted file mode 100644 index 48fbe00..0000000 --- a/db/4052.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4052, - "codeText": "TS4052", - "title": "Return type of public static method from exported class has or is using private name '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4053.json b/db/4053.json deleted file mode 100644 index c746158..0000000 --- a/db/4053.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4053, - "codeText": "TS4053", - "title": "Return type of public method from exported class has or is using name '{0}' from external module {1} but cannot be named.", - "category": "error", - "documentation": "" -} diff --git a/db/4054.json b/db/4054.json deleted file mode 100644 index 3233d60..0000000 --- a/db/4054.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4054, - "codeText": "TS4054", - "title": "Return type of public method from exported class has or is using name '{0}' from private module '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4055.json b/db/4055.json deleted file mode 100644 index 08e15b7..0000000 --- a/db/4055.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4055, - "codeText": "TS4055", - "title": "Return type of public method from exported class has or is using private name '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4056.json b/db/4056.json deleted file mode 100644 index ac5e770..0000000 --- a/db/4056.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4056, - "codeText": "TS4056", - "title": "Return type of method from exported interface has or is using name '{0}' from private module '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4057.json b/db/4057.json deleted file mode 100644 index 3f0dbb6..0000000 --- a/db/4057.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4057, - "codeText": "TS4057", - "title": "Return type of method from exported interface has or is using private name '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4058.json b/db/4058.json deleted file mode 100644 index ad3cac1..0000000 --- a/db/4058.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4058, - "codeText": "TS4058", - "title": "Return type of exported function has or is using name '{0}' from external module {1} but cannot be named.", - "category": "error", - "documentation": "" -} diff --git a/db/4059.json b/db/4059.json deleted file mode 100644 index 66006d9..0000000 --- a/db/4059.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4059, - "codeText": "TS4059", - "title": "Return type of exported function has or is using name '{0}' from private module '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4060.json b/db/4060.json deleted file mode 100644 index 51a6b97..0000000 --- a/db/4060.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4060, - "codeText": "TS4060", - "title": "Return type of exported function has or is using private name '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4061.json b/db/4061.json deleted file mode 100644 index c0a7bc0..0000000 --- a/db/4061.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4061, - "codeText": "TS4061", - "title": "Parameter '{0}' of constructor from exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" -} diff --git a/db/4062.json b/db/4062.json deleted file mode 100644 index a7eba10..0000000 --- a/db/4062.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4062, - "codeText": "TS4062", - "title": "Parameter '{0}' of constructor from exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4063.json b/db/4063.json deleted file mode 100644 index db9608e..0000000 --- a/db/4063.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4063, - "codeText": "TS4063", - "title": "Parameter '{0}' of constructor from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4064.json b/db/4064.json deleted file mode 100644 index c57ac31..0000000 --- a/db/4064.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4064, - "codeText": "TS4064", - "title": "Parameter '{0}' of constructor signature from exported interface has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4065.json b/db/4065.json deleted file mode 100644 index 74f4136..0000000 --- a/db/4065.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4065, - "codeText": "TS4065", - "title": "Parameter '{0}' of constructor signature from exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4066.json b/db/4066.json deleted file mode 100644 index ff2b8c3..0000000 --- a/db/4066.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4066, - "codeText": "TS4066", - "title": "Parameter '{0}' of call signature from exported interface has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4067.json b/db/4067.json deleted file mode 100644 index a7778ec..0000000 --- a/db/4067.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4067, - "codeText": "TS4067", - "title": "Parameter '{0}' of call signature from exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4068.json b/db/4068.json deleted file mode 100644 index aee3e68..0000000 --- a/db/4068.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4068, - "codeText": "TS4068", - "title": "Parameter '{0}' of public static method from exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" -} diff --git a/db/4069.json b/db/4069.json deleted file mode 100644 index 553a2c7..0000000 --- a/db/4069.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4069, - "codeText": "TS4069", - "title": "Parameter '{0}' of public static method from exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4070.json b/db/4070.json deleted file mode 100644 index 38a3acd..0000000 --- a/db/4070.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4070, - "codeText": "TS4070", - "title": "Parameter '{0}' of public static method from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4071.json b/db/4071.json deleted file mode 100644 index 7bf5c91..0000000 --- a/db/4071.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4071, - "codeText": "TS4071", - "title": "Parameter '{0}' of public method from exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" -} diff --git a/db/4072.json b/db/4072.json deleted file mode 100644 index 5f6da32..0000000 --- a/db/4072.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4072, - "codeText": "TS4072", - "title": "Parameter '{0}' of public method from exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4073.json b/db/4073.json deleted file mode 100644 index b4045d1..0000000 --- a/db/4073.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4073, - "codeText": "TS4073", - "title": "Parameter '{0}' of public method from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4074.json b/db/4074.json deleted file mode 100644 index 5056fa6..0000000 --- a/db/4074.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4074, - "codeText": "TS4074", - "title": "Parameter '{0}' of method from exported interface has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4075.json b/db/4075.json deleted file mode 100644 index 7565481..0000000 --- a/db/4075.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4075, - "codeText": "TS4075", - "title": "Parameter '{0}' of method from exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4076.json b/db/4076.json deleted file mode 100644 index babf78e..0000000 --- a/db/4076.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4076, - "codeText": "TS4076", - "title": "Parameter '{0}' of exported function has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" -} diff --git a/db/4077.json b/db/4077.json deleted file mode 100644 index b0f9995..0000000 --- a/db/4077.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4077, - "codeText": "TS4077", - "title": "Parameter '{0}' of exported function has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4078.json b/db/4078.json deleted file mode 100644 index a6438ba..0000000 --- a/db/4078.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4078, - "codeText": "TS4078", - "title": "Parameter '{0}' of exported function has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4081.json b/db/4081.json deleted file mode 100644 index 46a16b1..0000000 --- a/db/4081.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4081, - "codeText": "TS4081", - "title": "Exported type alias '{0}' has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4082.json b/db/4082.json deleted file mode 100644 index 8f7b794..0000000 --- a/db/4082.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4082, - "codeText": "TS4082", - "title": "Default export of the module has or is using private name '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4083.json b/db/4083.json deleted file mode 100644 index c6b1d72..0000000 --- a/db/4083.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4083, - "codeText": "TS4083", - "title": "Type parameter '{0}' of exported type alias has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4084.json b/db/4084.json deleted file mode 100644 index d6f0692..0000000 --- a/db/4084.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4084, - "codeText": "TS4084", - "title": "Exported type alias '{0}' has or is using private name '{1}' from module {2}.", - "category": "error", - "documentation": "" -} diff --git a/db/4085.json b/db/4085.json deleted file mode 100644 index fa334f5..0000000 --- a/db/4085.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4085, - "codeText": "TS4085", - "title": "Extends clause for inferred type '{0}' has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4090.json b/db/4090.json deleted file mode 100644 index 879adfd..0000000 --- a/db/4090.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4090, - "codeText": "TS4090", - "title": "Conflicting definitions for '{0}' found at '{1}' and '{2}'. Consider installing a specific version of this library to resolve the conflict.", - "category": "error", - "documentation": "" -} diff --git a/db/4091.json b/db/4091.json deleted file mode 100644 index 801e5a2..0000000 --- a/db/4091.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4091, - "codeText": "TS4091", - "title": "Parameter '{0}' of index signature from exported interface has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4092.json b/db/4092.json deleted file mode 100644 index 4386b52..0000000 --- a/db/4092.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4092, - "codeText": "TS4092", - "title": "Parameter '{0}' of index signature from exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4094.json b/db/4094.json deleted file mode 100644 index d093fb3..0000000 --- a/db/4094.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4094, - "codeText": "TS4094", - "title": "Property '{0}' of exported class expression may not be private or protected.", - "category": "error", - "documentation": "" -} diff --git a/db/4095.json b/db/4095.json deleted file mode 100644 index 2febc8f..0000000 --- a/db/4095.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4095, - "codeText": "TS4095", - "title": "Public static method '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" -} diff --git a/db/4096.json b/db/4096.json deleted file mode 100644 index 113e538..0000000 --- a/db/4096.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4096, - "codeText": "TS4096", - "title": "Public static method '{0}' of exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4097.json b/db/4097.json deleted file mode 100644 index 0c89269..0000000 --- a/db/4097.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4097, - "codeText": "TS4097", - "title": "Public static method '{0}' of exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4098.json b/db/4098.json deleted file mode 100644 index 34f1ce2..0000000 --- a/db/4098.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4098, - "codeText": "TS4098", - "title": "Public method '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" -} diff --git a/db/4099.json b/db/4099.json deleted file mode 100644 index d210b68..0000000 --- a/db/4099.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4099, - "codeText": "TS4099", - "title": "Public method '{0}' of exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4100.json b/db/4100.json deleted file mode 100644 index 5e37da3..0000000 --- a/db/4100.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4100, - "codeText": "TS4100", - "title": "Public method '{0}' of exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4101.json b/db/4101.json deleted file mode 100644 index 8ef875c..0000000 --- a/db/4101.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4101, - "codeText": "TS4101", - "title": "Method '{0}' of exported interface has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4102.json b/db/4102.json deleted file mode 100644 index abf4bc9..0000000 --- a/db/4102.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4102, - "codeText": "TS4102", - "title": "Method '{0}' of exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4103.json b/db/4103.json deleted file mode 100644 index e8af325..0000000 --- a/db/4103.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4103, - "codeText": "TS4103", - "title": "Type parameter '{0}' of exported mapped object type is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4104.json b/db/4104.json deleted file mode 100644 index b438847..0000000 --- a/db/4104.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4104, - "codeText": "TS4104", - "title": "The type '{0}' is 'readonly' and cannot be assigned to the mutable type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4105.json b/db/4105.json deleted file mode 100644 index 117340a..0000000 --- a/db/4105.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4105, - "codeText": "TS4105", - "title": "Private or protected member '{0}' cannot be accessed on a type parameter.", - "category": "error", - "documentation": "" -} diff --git a/db/4106.json b/db/4106.json deleted file mode 100644 index 5c904a3..0000000 --- a/db/4106.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4106, - "codeText": "TS4106", - "title": "Parameter '{0}' of accessor has or is using private name '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4107.json b/db/4107.json deleted file mode 100644 index 57c3bac..0000000 --- a/db/4107.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4107, - "codeText": "TS4107", - "title": "Parameter '{0}' of accessor has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4108.json b/db/4108.json deleted file mode 100644 index e3bf6df..0000000 --- a/db/4108.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4108, - "codeText": "TS4108", - "title": "Parameter '{0}' of accessor has or is using name '{1}' from external module '{2}' but cannot be named.", - "category": "error", - "documentation": "" -} diff --git a/db/4109.json b/db/4109.json deleted file mode 100644 index ecbfa71..0000000 --- a/db/4109.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4109, - "codeText": "TS4109", - "title": "Type arguments for '{0}' circularly reference themselves.", - "category": "error", - "documentation": "" -} diff --git a/db/4110.json b/db/4110.json deleted file mode 100644 index dd490bb..0000000 --- a/db/4110.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4110, - "codeText": "TS4110", - "title": "Tuple type arguments circularly reference themselves.", - "category": "error", - "documentation": "" -} diff --git a/db/4111.json b/db/4111.json deleted file mode 100644 index 4f08ccf..0000000 --- a/db/4111.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4111, - "codeText": "TS4111", - "title": "Property '{0}' comes from an index signature, so it must be accessed with ['{0}'].", - "category": "error", - "documentation": "" -} diff --git a/db/4112.json b/db/4112.json deleted file mode 100644 index 8000fbc..0000000 --- a/db/4112.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4112, - "codeText": "TS4112", - "title": "This member cannot have an 'override' modifier because its containing class '{0}' does not extend another class.", - "category": "error", - "documentation": "" -} diff --git a/db/4113.json b/db/4113.json deleted file mode 100644 index 2daa5f1..0000000 --- a/db/4113.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4113, - "codeText": "TS4113", - "title": "This member cannot have an 'override' modifier because it is not declared in the base class '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4114.json b/db/4114.json deleted file mode 100644 index 3ff7a52..0000000 --- a/db/4114.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4114, - "codeText": "TS4114", - "title": "This member must have an 'override' modifier because it overrides a member in the base class '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4115.json b/db/4115.json deleted file mode 100644 index d42a298..0000000 --- a/db/4115.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4115, - "codeText": "TS4115", - "title": "This parameter property must have an 'override' modifier because it overrides a member in base class '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4116.json b/db/4116.json deleted file mode 100644 index d6491e0..0000000 --- a/db/4116.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4116, - "codeText": "TS4116", - "title": "This member must have an 'override' modifier because it overrides an abstract method that is declared in the base class '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4117.json b/db/4117.json deleted file mode 100644 index 4a9132b..0000000 --- a/db/4117.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4117, - "codeText": "TS4117", - "title": "This member cannot have an 'override' modifier because it is not declared in the base class '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" -} diff --git a/db/4118.json b/db/4118.json deleted file mode 100644 index 3fc8f2f..0000000 --- a/db/4118.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4118, - "codeText": "TS4118", - "title": "The type of this node cannot be serialized because its property '{0}' cannot be serialized.", - "category": "error", - "documentation": "" -} diff --git a/db/4119.json b/db/4119.json deleted file mode 100644 index e22feac..0000000 --- a/db/4119.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4119, - "codeText": "TS4119", - "title": "This member must have a JSDoc comment with an '@override' tag because it overrides a member in the base class '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4120.json b/db/4120.json deleted file mode 100644 index 42049c4..0000000 --- a/db/4120.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4120, - "codeText": "TS4120", - "title": "This parameter property must have a JSDoc comment with an '@override' tag because it overrides a member in the base class '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4121.json b/db/4121.json deleted file mode 100644 index 9f3f407..0000000 --- a/db/4121.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4121, - "codeText": "TS4121", - "title": "This member cannot have a JSDoc comment with an '@override' tag because its containing class '{0}' does not extend another class.", - "category": "error", - "documentation": "" -} diff --git a/db/4122.json b/db/4122.json deleted file mode 100644 index e463e00..0000000 --- a/db/4122.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4122, - "codeText": "TS4122", - "title": "This member cannot have a JSDoc comment with an '@override' tag because it is not declared in the base class '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/4123.json b/db/4123.json deleted file mode 100644 index 83a6b72..0000000 --- a/db/4123.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4123, - "codeText": "TS4123", - "title": "This member cannot have a JSDoc comment with an 'override' tag because it is not declared in the base class '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" -} diff --git a/db/4124.json b/db/4124.json deleted file mode 100644 index 168994d..0000000 --- a/db/4124.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4124, - "codeText": "TS4124", - "title": "Compiler option '{0}' of value '{1}' is unstable. Use nightly TypeScript to silence this error. Try updating with 'npm install -D typescript@next'.", - "category": "error", - "documentation": "" -} diff --git a/db/4125.json b/db/4125.json deleted file mode 100644 index 41fdf4d..0000000 --- a/db/4125.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 4125, - "codeText": "TS4125", - "title": "'resolution-mode' assertions are unstable. Use nightly TypeScript to silence this error. Try updating with 'npm install -D typescript@next'.", - "category": "error", - "documentation": "" -} diff --git a/db/5001.json b/db/5001.json deleted file mode 100644 index 17a26dd..0000000 --- a/db/5001.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5001, - "codeText": "TS5001", - "title": "The current host does not support the '{0}' option.", - "category": "error", - "documentation": "" -} diff --git a/db/5009.json b/db/5009.json deleted file mode 100644 index 6399e88..0000000 --- a/db/5009.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5009, - "codeText": "TS5009", - "title": "Cannot find the common subdirectory path for the input files.", - "category": "error", - "documentation": "" -} diff --git a/db/5010.json b/db/5010.json deleted file mode 100644 index cea2b7d..0000000 --- a/db/5010.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5010, - "codeText": "TS5010", - "title": "File specification cannot end in a recursive directory wildcard ('**'): '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5012.json b/db/5012.json deleted file mode 100644 index ac2e2ee..0000000 --- a/db/5012.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5012, - "codeText": "TS5012", - "title": "Cannot read file '{0}': {1}.", - "category": "error", - "documentation": "" -} diff --git a/db/5014.json b/db/5014.json deleted file mode 100644 index 84a4a13..0000000 --- a/db/5014.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5014, - "codeText": "TS5014", - "title": "Failed to parse file '{0}': {1}.", - "category": "error", - "documentation": "" -} diff --git a/db/5023.json b/db/5023.json deleted file mode 100644 index c0eda81..0000000 --- a/db/5023.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5023, - "codeText": "TS5023", - "title": "Unknown compiler option '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5024.json b/db/5024.json deleted file mode 100644 index 479cd76..0000000 --- a/db/5024.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5024, - "codeText": "TS5024", - "title": "Compiler option '{0}' requires a value of type {1}.", - "category": "error", - "documentation": "" -} diff --git a/db/5025.json b/db/5025.json deleted file mode 100644 index a08db0b..0000000 --- a/db/5025.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5025, - "codeText": "TS5025", - "title": "Unknown compiler option '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" -} diff --git a/db/5033.json b/db/5033.json deleted file mode 100644 index 9fc3dc3..0000000 --- a/db/5033.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5033, - "codeText": "TS5033", - "title": "Could not write file '{0}': {1}.", - "category": "error", - "documentation": "" -} diff --git a/db/5042.json b/db/5042.json deleted file mode 100644 index cd54857..0000000 --- a/db/5042.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5042, - "codeText": "TS5042", - "title": "Option 'project' cannot be mixed with source files on a command line.", - "category": "error", - "documentation": "" -} diff --git a/db/5047.json b/db/5047.json deleted file mode 100644 index 1b7954c..0000000 --- a/db/5047.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5047, - "codeText": "TS5047", - "title": "Option 'isolatedModules' can only be used when either option '--module' is provided or option 'target' is 'ES2015' or higher.", - "category": "error", - "documentation": "" -} diff --git a/db/5048.json b/db/5048.json deleted file mode 100644 index c29ae27..0000000 --- a/db/5048.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5048, - "codeText": "TS5048", - "title": "Option '{0}' cannot be specified when option 'target' is 'ES3'.", - "category": "error", - "documentation": "" -} diff --git a/db/5051.json b/db/5051.json deleted file mode 100644 index 7ab5132..0000000 --- a/db/5051.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5051, - "codeText": "TS5051", - "title": "Option '{0} can only be used when either option '--inlineSourceMap' or option '--sourceMap' is provided.", - "category": "error", - "documentation": "" -} diff --git a/db/5052.json b/db/5052.json deleted file mode 100644 index e2c3543..0000000 --- a/db/5052.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5052, - "codeText": "TS5052", - "title": "Option '{0}' cannot be specified without specifying option '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5053.json b/db/5053.json deleted file mode 100644 index e508adc..0000000 --- a/db/5053.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5053, - "codeText": "TS5053", - "title": "Option '{0}' cannot be specified with option '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5054.json b/db/5054.json deleted file mode 100644 index 72f0456..0000000 --- a/db/5054.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5054, - "codeText": "TS5054", - "title": "A 'tsconfig.json' file is already defined at: '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5055.json b/db/5055.json deleted file mode 100644 index e85cbf8..0000000 --- a/db/5055.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5055, - "codeText": "TS5055", - "title": "Cannot write file '{0}' because it would overwrite input file.", - "category": "error", - "documentation": "" -} diff --git a/db/5056.json b/db/5056.json deleted file mode 100644 index 599c75c..0000000 --- a/db/5056.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5056, - "codeText": "TS5056", - "title": "Cannot write file '{0}' because it would be overwritten by multiple input files.", - "category": "error", - "documentation": "" -} diff --git a/db/5057.json b/db/5057.json deleted file mode 100644 index 8311cdf..0000000 --- a/db/5057.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5057, - "codeText": "TS5057", - "title": "Cannot find a tsconfig.json file at the specified directory: '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5058.json b/db/5058.json deleted file mode 100644 index ae4a510..0000000 --- a/db/5058.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5058, - "codeText": "TS5058", - "title": "The specified path does not exist: '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5059.json b/db/5059.json deleted file mode 100644 index a3eba40..0000000 --- a/db/5059.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5059, - "codeText": "TS5059", - "title": "Invalid value for '--reactNamespace'. '{0}' is not a valid identifier.", - "category": "error", - "documentation": "" -} diff --git a/db/5061.json b/db/5061.json deleted file mode 100644 index 6a19a3a..0000000 --- a/db/5061.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5061, - "codeText": "TS5061", - "title": "Pattern '{0}' can have at most one '*' character.", - "category": "error", - "documentation": "" -} diff --git a/db/5062.json b/db/5062.json deleted file mode 100644 index 9e44849..0000000 --- a/db/5062.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5062, - "codeText": "TS5062", - "title": "Substitution '{0}' in pattern '{1}' can have at most one '*' character.", - "category": "error", - "documentation": "" -} diff --git a/db/5063.json b/db/5063.json deleted file mode 100644 index 078ee15..0000000 --- a/db/5063.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5063, - "codeText": "TS5063", - "title": "Substitutions for pattern '{0}' should be an array.", - "category": "error", - "documentation": "" -} diff --git a/db/5064.json b/db/5064.json deleted file mode 100644 index 227a2dd..0000000 --- a/db/5064.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5064, - "codeText": "TS5064", - "title": "Substitution '{0}' for pattern '{1}' has incorrect type, expected 'string', got '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5065.json b/db/5065.json deleted file mode 100644 index 0a4caf0..0000000 --- a/db/5065.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5065, - "codeText": "TS5065", - "title": "File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5066.json b/db/5066.json deleted file mode 100644 index ebb0821..0000000 --- a/db/5066.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5066, - "codeText": "TS5066", - "title": "Substitutions for pattern '{0}' shouldn't be an empty array.", - "category": "error", - "documentation": "" -} diff --git a/db/5067.json b/db/5067.json deleted file mode 100644 index 4d8e544..0000000 --- a/db/5067.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5067, - "codeText": "TS5067", - "title": "Invalid value for 'jsxFactory'. '{0}' is not a valid identifier or qualified-name.", - "category": "error", - "documentation": "" -} diff --git a/db/5068.json b/db/5068.json deleted file mode 100644 index 1fa2ead..0000000 --- a/db/5068.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5068, - "codeText": "TS5068", - "title": "Adding a tsconfig.json file will help organize projects that contain both TypeScript and JavaScript files. Learn more at https://aka.ms/tsconfig.", - "category": "error", - "documentation": "" -} diff --git a/db/5069.json b/db/5069.json deleted file mode 100644 index f48b2be..0000000 --- a/db/5069.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5069, - "codeText": "TS5069", - "title": "Option '{0}' cannot be specified without specifying option '{1}' or option '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5070.json b/db/5070.json deleted file mode 100644 index 84a3ece..0000000 --- a/db/5070.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5070, - "codeText": "TS5070", - "title": "Option '--resolveJsonModule' cannot be specified without 'node' module resolution strategy.", - "category": "error", - "documentation": "" -} diff --git a/db/5071.json b/db/5071.json deleted file mode 100644 index 54ef5e1..0000000 --- a/db/5071.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5071, - "codeText": "TS5071", - "title": "Option '--resolveJsonModule' can only be specified when module code generation is 'commonjs', 'amd', 'es2015' or 'esNext'.", - "category": "error", - "documentation": "" -} diff --git a/db/5072.json b/db/5072.json deleted file mode 100644 index dd14dc5..0000000 --- a/db/5072.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5072, - "codeText": "TS5072", - "title": "Unknown build option '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5073.json b/db/5073.json deleted file mode 100644 index 7f9892e..0000000 --- a/db/5073.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5073, - "codeText": "TS5073", - "title": "Build option '{0}' requires a value of type {1}.", - "category": "error", - "documentation": "" -} diff --git a/db/5074.json b/db/5074.json deleted file mode 100644 index cd64d77..0000000 --- a/db/5074.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5074, - "codeText": "TS5074", - "title": "Option '--incremental' can only be specified using tsconfig, emitting to single file or when option '--tsBuildInfoFile' is specified.", - "category": "error", - "documentation": "" -} diff --git a/db/5075.json b/db/5075.json deleted file mode 100644 index 0343d39..0000000 --- a/db/5075.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5075, - "codeText": "TS5075", - "title": "'{0}' is assignable to the constraint of type '{1}', but '{1}' could be instantiated with a different subtype of constraint '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5076.json b/db/5076.json deleted file mode 100644 index c99d233..0000000 --- a/db/5076.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5076, - "codeText": "TS5076", - "title": "'{0}' and '{1}' operations cannot be mixed without parentheses.", - "category": "error", - "documentation": "" -} diff --git a/db/5077.json b/db/5077.json deleted file mode 100644 index cdbdfd7..0000000 --- a/db/5077.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5077, - "codeText": "TS5077", - "title": "Unknown build option '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" -} diff --git a/db/5078.json b/db/5078.json deleted file mode 100644 index 2a291c1..0000000 --- a/db/5078.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5078, - "codeText": "TS5078", - "title": "Unknown watch option '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5079.json b/db/5079.json deleted file mode 100644 index e0c388d..0000000 --- a/db/5079.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5079, - "codeText": "TS5079", - "title": "Unknown watch option '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" -} diff --git a/db/5080.json b/db/5080.json deleted file mode 100644 index 5da71b1..0000000 --- a/db/5080.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5080, - "codeText": "TS5080", - "title": "Watch option '{0}' requires a value of type {1}.", - "category": "error", - "documentation": "" -} diff --git a/db/5081.json b/db/5081.json deleted file mode 100644 index 72328f8..0000000 --- a/db/5081.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5081, - "codeText": "TS5081", - "title": "Cannot find a tsconfig.json file at the current directory: {0}.", - "category": "error", - "documentation": "" -} diff --git a/db/5082.json b/db/5082.json deleted file mode 100644 index e0289f5..0000000 --- a/db/5082.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5082, - "codeText": "TS5082", - "title": "'{0}' could be instantiated with an arbitrary type which could be unrelated to '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5083.json b/db/5083.json deleted file mode 100644 index 233aa6b..0000000 --- a/db/5083.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5083, - "codeText": "TS5083", - "title": "Cannot read file '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5084.json b/db/5084.json deleted file mode 100644 index ce02494..0000000 --- a/db/5084.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5084, - "codeText": "TS5084", - "title": "Tuple members must all have names or all not have names.", - "category": "error", - "documentation": "" -} diff --git a/db/5085.json b/db/5085.json deleted file mode 100644 index dee8104..0000000 --- a/db/5085.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5085, - "codeText": "TS5085", - "title": "A tuple member cannot be both optional and rest.", - "category": "error", - "documentation": "" -} diff --git a/db/5086.json b/db/5086.json deleted file mode 100644 index 2b51e11..0000000 --- a/db/5086.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5086, - "codeText": "TS5086", - "title": "A labeled tuple element is declared as optional with a question mark after the name and before the colon, rather than after the type.", - "category": "error", - "documentation": "" -} diff --git a/db/5087.json b/db/5087.json deleted file mode 100644 index 71b7dbc..0000000 --- a/db/5087.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5087, - "codeText": "TS5087", - "title": "A labeled tuple element is declared as rest with a '...' before the name, rather than before the type.", - "category": "error", - "documentation": "" -} diff --git a/db/5088.json b/db/5088.json deleted file mode 100644 index 177249c..0000000 --- a/db/5088.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5088, - "codeText": "TS5088", - "title": "The inferred type of '{0}' references a type with a cyclic structure which cannot be trivially serialized. A type annotation is necessary.", - "category": "error", - "documentation": "" -} diff --git a/db/5089.json b/db/5089.json deleted file mode 100644 index 47f2b4e..0000000 --- a/db/5089.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5089, - "codeText": "TS5089", - "title": "Option '{0}' cannot be specified when option 'jsx' is '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5090.json b/db/5090.json deleted file mode 100644 index 1698cb3..0000000 --- a/db/5090.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5090, - "codeText": "TS5090", - "title": "Non-relative paths are not allowed when 'baseUrl' is not set. Did you forget a leading './'?", - "category": "error", - "documentation": "" -} diff --git a/db/5091.json b/db/5091.json deleted file mode 100644 index fd955e3..0000000 --- a/db/5091.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5091, - "codeText": "TS5091", - "title": "Option 'preserveConstEnums' cannot be disabled when 'isolatedModules' is enabled.", - "category": "error", - "documentation": "" -} diff --git a/db/5092.json b/db/5092.json deleted file mode 100644 index 6d64f06..0000000 --- a/db/5092.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5092, - "codeText": "TS5092", - "title": "The root value of a '{0}' file must be an object.", - "category": "error", - "documentation": "" -} diff --git a/db/5093.json b/db/5093.json deleted file mode 100644 index 65cd05d..0000000 --- a/db/5093.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5093, - "codeText": "TS5093", - "title": "Compiler option '--{0}' may only be used with '--build'.", - "category": "error", - "documentation": "" -} diff --git a/db/5094.json b/db/5094.json deleted file mode 100644 index 3cebe2c..0000000 --- a/db/5094.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5094, - "codeText": "TS5094", - "title": "Compiler option '--{0}' may not be used with '--build'.", - "category": "error", - "documentation": "" -} diff --git a/db/5095.json b/db/5095.json deleted file mode 100644 index 693060a..0000000 --- a/db/5095.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5095, - "codeText": "TS5095", - "title": "Option 'preserveValueImports' can only be used when 'module' is set to 'es2015' or later.", - "category": "error", - "documentation": "" -} diff --git a/db/5096.json b/db/5096.json deleted file mode 100644 index 9a9e2bb..0000000 --- a/db/5096.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5096, - "codeText": "TS5096", - "title": "Option 'allowImportingTsExtensions' can only be used when either 'noEmit' or 'emitDeclarationOnly' is set.", - "category": "error", - "documentation": "" -} diff --git a/db/5097.json b/db/5097.json deleted file mode 100644 index e1a8874..0000000 --- a/db/5097.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5097, - "codeText": "TS5097", - "title": "An import path can only end with a '{0}' extension when 'allowImportingTsExtensions' is enabled.", - "category": "error", - "documentation": "" -} diff --git a/db/5098.json b/db/5098.json deleted file mode 100644 index b895453..0000000 --- a/db/5098.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5098, - "codeText": "TS5098", - "title": "Option '{0}' can only be used when 'moduleResolution' is set to 'node16', 'nodenext', or 'bundler'.", - "category": "error", - "documentation": "" -} diff --git a/db/5099.json b/db/5099.json deleted file mode 100644 index ea2dc93..0000000 --- a/db/5099.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5099, - "codeText": "TS5099", - "title": "Import assignment is not allowed when 'moduleResolution' is set to 'bundler'. Consider using 'import * as ns from \"mod\"', 'import {a} from \"mod\"', 'import d from \"mod\"', or another module format instead.", - "category": "error", - "documentation": "" -} diff --git a/db/5100.json b/db/5100.json deleted file mode 100644 index a3405c0..0000000 --- a/db/5100.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5100, - "codeText": "TS5100", - "title": "Export assignment cannot be used when 'moduleResolution' is set to 'bundler'. Consider using 'export default' or another module format instead.", - "category": "error", - "documentation": "" -} diff --git a/db/5101.json b/db/5101.json deleted file mode 100644 index 5169f19..0000000 --- a/db/5101.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5101, - "codeText": "TS5101", - "title": "Flag '{0}' is deprecated and will stop functioning in TypeScript {1}. Specify 'ignoreDeprecations: \"{2}\"' to silence this error.", - "category": "error", - "documentation": "" -} diff --git a/db/5102.json b/db/5102.json deleted file mode 100644 index 5fdcc4e..0000000 --- a/db/5102.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5102, - "codeText": "TS5102", - "title": "Flag '{0}' is deprecated. Please remove it from your configuration.", - "category": "error", - "documentation": "" -} diff --git a/db/5103.json b/db/5103.json deleted file mode 100644 index 6b930a7..0000000 --- a/db/5103.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5103, - "codeText": "TS5103", - "title": "Invalid value for '--ignoreDeprecations'.", - "category": "error", - "documentation": "" -} diff --git a/db/5104.json b/db/5104.json deleted file mode 100644 index 090d576..0000000 --- a/db/5104.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5104, - "codeText": "TS5104", - "title": "Option '{0}' is redundant and cannot be specified with option '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5105.json b/db/5105.json deleted file mode 100644 index 34bb278..0000000 --- a/db/5105.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5105, - "codeText": "TS5105", - "title": "Option 'verbatimModuleSyntax' cannot be used when 'module' is set to 'UMD', 'AMD', or 'System'.", - "category": "error", - "documentation": "" -} diff --git a/db/5106.json b/db/5106.json deleted file mode 100644 index 85595b2..0000000 --- a/db/5106.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5106, - "codeText": "TS5106", - "title": "Use '{0}' instead.", - "category": "message", - "documentation": "" -} diff --git a/db/5107.json b/db/5107.json deleted file mode 100644 index 9cdbd65..0000000 --- a/db/5107.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5107, - "codeText": "TS5107", - "title": "Option '{0}={1}' is deprecated and will stop functioning in TypeScript {2}. Specify compilerOption '\"ignoreDeprecations\": \"{3}\"' to silence this error.", - "category": "error", - "documentation": "" -} diff --git a/db/5108.json b/db/5108.json deleted file mode 100644 index 525f61d..0000000 --- a/db/5108.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5108, - "codeText": "TS5108", - "title": "Option '{0}={1}' has been removed. Please remove it from your configuration.", - "category": "error", - "documentation": "" -} diff --git a/db/5109.json b/db/5109.json deleted file mode 100644 index 49486fa..0000000 --- a/db/5109.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5109, - "codeText": "TS5109", - "title": "Option 'moduleResolution' must be set to '{0}' (or left unspecified) when option 'module' is set to '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/5110.json b/db/5110.json deleted file mode 100644 index 7de7390..0000000 --- a/db/5110.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 5110, - "codeText": "TS5110", - "title": "Option 'module' must be set to '{0}' when option 'moduleResolution' is set to '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/6000.json b/db/6000.json deleted file mode 100644 index 1136a06..0000000 --- a/db/6000.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6000, - "codeText": "TS6000", - "title": "Generates a sourcemap for each corresponding '.d.ts' file.", - "category": "message", - "documentation": "" -} diff --git a/db/6001.json b/db/6001.json deleted file mode 100644 index e8c3ce5..0000000 --- a/db/6001.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6001, - "codeText": "TS6001", - "title": "Concatenate and emit output to single file.", - "category": "message", - "documentation": "" -} diff --git a/db/6002.json b/db/6002.json deleted file mode 100644 index c680b71..0000000 --- a/db/6002.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6002, - "codeText": "TS6002", - "title": "Generates corresponding '.d.ts' file.", - "category": "message", - "documentation": "" -} diff --git a/db/6004.json b/db/6004.json deleted file mode 100644 index 16a07c4..0000000 --- a/db/6004.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6004, - "codeText": "TS6004", - "title": "Specify the location where debugger should locate TypeScript files instead of source locations.", - "category": "message", - "documentation": "" -} diff --git a/db/6005.json b/db/6005.json deleted file mode 100644 index 90b29ec..0000000 --- a/db/6005.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6005, - "codeText": "TS6005", - "title": "Watch input files.", - "category": "message", - "documentation": "" -} diff --git a/db/6006.json b/db/6006.json deleted file mode 100644 index d4feb12..0000000 --- a/db/6006.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6006, - "codeText": "TS6006", - "title": "Redirect output structure to the directory.", - "category": "message", - "documentation": "" -} diff --git a/db/6007.json b/db/6007.json deleted file mode 100644 index 1ccf2f5..0000000 --- a/db/6007.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6007, - "codeText": "TS6007", - "title": "Do not erase const enum declarations in generated code.", - "category": "message", - "documentation": "" -} diff --git a/db/6008.json b/db/6008.json deleted file mode 100644 index 0b7ae08..0000000 --- a/db/6008.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6008, - "codeText": "TS6008", - "title": "Do not emit outputs if any errors were reported.", - "category": "message", - "documentation": "" -} diff --git a/db/6009.json b/db/6009.json deleted file mode 100644 index 8616bfb..0000000 --- a/db/6009.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6009, - "codeText": "TS6009", - "title": "Do not emit comments to output.", - "category": "message", - "documentation": "" -} diff --git a/db/6010.json b/db/6010.json deleted file mode 100644 index 0b79c02..0000000 --- a/db/6010.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6010, - "codeText": "TS6010", - "title": "Do not emit outputs.", - "category": "message", - "documentation": "" -} diff --git a/db/6011.json b/db/6011.json deleted file mode 100644 index 4482119..0000000 --- a/db/6011.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6011, - "codeText": "TS6011", - "title": "Allow default imports from modules with no default export. This does not affect code emit, just typechecking.", - "category": "message", - "documentation": "" -} diff --git a/db/6012.json b/db/6012.json deleted file mode 100644 index 25cfaa8..0000000 --- a/db/6012.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6012, - "codeText": "TS6012", - "title": "Skip type checking of declaration files.", - "category": "message", - "documentation": "" -} diff --git a/db/6013.json b/db/6013.json deleted file mode 100644 index d1710be..0000000 --- a/db/6013.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6013, - "codeText": "TS6013", - "title": "Do not resolve the real path of symlinks.", - "category": "message", - "documentation": "" -} diff --git a/db/6014.json b/db/6014.json deleted file mode 100644 index ab2c476..0000000 --- a/db/6014.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6014, - "codeText": "TS6014", - "title": "Only emit '.d.ts' declaration files.", - "category": "message", - "documentation": "" -} diff --git a/db/6015.json b/db/6015.json deleted file mode 100644 index 5fbf885..0000000 --- a/db/6015.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6015, - "codeText": "TS6015", - "title": "Specify ECMAScript target version.", - "category": "message", - "documentation": "" -} diff --git a/db/6016.json b/db/6016.json deleted file mode 100644 index 53219fb..0000000 --- a/db/6016.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6016, - "codeText": "TS6016", - "title": "Specify module code generation.", - "category": "message", - "documentation": "" -} diff --git a/db/6017.json b/db/6017.json deleted file mode 100644 index b8eecf6..0000000 --- a/db/6017.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6017, - "codeText": "TS6017", - "title": "Print this message.", - "category": "message", - "documentation": "" -} diff --git a/db/6019.json b/db/6019.json deleted file mode 100644 index 1d67528..0000000 --- a/db/6019.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6019, - "codeText": "TS6019", - "title": "Print the compiler's version.", - "category": "message", - "documentation": "" -} diff --git a/db/6020.json b/db/6020.json deleted file mode 100644 index 0dc6e15..0000000 --- a/db/6020.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6020, - "codeText": "TS6020", - "title": "Compile the project given the path to its configuration file, or to a folder with a 'tsconfig.json'.", - "category": "message", - "documentation": "" -} diff --git a/db/6023.json b/db/6023.json deleted file mode 100644 index d4aa392..0000000 --- a/db/6023.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6023, - "codeText": "TS6023", - "title": "Syntax: {0}", - "category": "message", - "documentation": "" -} diff --git a/db/6024.json b/db/6024.json deleted file mode 100644 index dac51b6..0000000 --- a/db/6024.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6024, - "codeText": "TS6024", - "title": "options", - "category": "message", - "documentation": "" -} diff --git a/db/6025.json b/db/6025.json deleted file mode 100644 index 69069ab..0000000 --- a/db/6025.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6025, - "codeText": "TS6025", - "title": "file", - "category": "message", - "documentation": "" -} diff --git a/db/6026.json b/db/6026.json deleted file mode 100644 index c96d463..0000000 --- a/db/6026.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6026, - "codeText": "TS6026", - "title": "Examples: {0}", - "category": "message", - "documentation": "" -} diff --git a/db/6027.json b/db/6027.json deleted file mode 100644 index 9af373d..0000000 --- a/db/6027.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6027, - "codeText": "TS6027", - "title": "Options:", - "category": "message", - "documentation": "" -} diff --git a/db/6029.json b/db/6029.json deleted file mode 100644 index 83d6839..0000000 --- a/db/6029.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6029, - "codeText": "TS6029", - "title": "Version {0}", - "category": "message", - "documentation": "" -} diff --git a/db/6030.json b/db/6030.json deleted file mode 100644 index a7b508f..0000000 --- a/db/6030.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6030, - "codeText": "TS6030", - "title": "Insert command line options and files from a file.", - "category": "message", - "documentation": "" -} diff --git a/db/6031.json b/db/6031.json deleted file mode 100644 index 5b338ae..0000000 --- a/db/6031.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6031, - "codeText": "TS6031", - "title": "Starting compilation in watch mode...", - "category": "message", - "documentation": "" -} diff --git a/db/6032.json b/db/6032.json deleted file mode 100644 index 79025ef..0000000 --- a/db/6032.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6032, - "codeText": "TS6032", - "title": "File change detected. Starting incremental compilation...", - "category": "message", - "documentation": "" -} diff --git a/db/6034.json b/db/6034.json deleted file mode 100644 index 4c7a20d..0000000 --- a/db/6034.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6034, - "codeText": "TS6034", - "title": "KIND", - "category": "message", - "documentation": "" -} diff --git a/db/6035.json b/db/6035.json deleted file mode 100644 index 13f1824..0000000 --- a/db/6035.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6035, - "codeText": "TS6035", - "title": "FILE", - "category": "message", - "documentation": "" -} diff --git a/db/6036.json b/db/6036.json deleted file mode 100644 index 44638d2..0000000 --- a/db/6036.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6036, - "codeText": "TS6036", - "title": "VERSION", - "category": "message", - "documentation": "" -} diff --git a/db/6037.json b/db/6037.json deleted file mode 100644 index 6f0cec5..0000000 --- a/db/6037.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6037, - "codeText": "TS6037", - "title": "LOCATION", - "category": "message", - "documentation": "" -} diff --git a/db/6038.json b/db/6038.json deleted file mode 100644 index 8c1357a..0000000 --- a/db/6038.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6038, - "codeText": "TS6038", - "title": "DIRECTORY", - "category": "message", - "documentation": "" -} diff --git a/db/6039.json b/db/6039.json deleted file mode 100644 index 7d9b3e7..0000000 --- a/db/6039.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6039, - "codeText": "TS6039", - "title": "STRATEGY", - "category": "message", - "documentation": "" -} diff --git a/db/6040.json b/db/6040.json deleted file mode 100644 index 98d4ccd..0000000 --- a/db/6040.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6040, - "codeText": "TS6040", - "title": "FILE OR DIRECTORY", - "category": "message", - "documentation": "" -} diff --git a/db/6041.json b/db/6041.json deleted file mode 100644 index 5c29a1b..0000000 --- a/db/6041.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6041, - "codeText": "TS6041", - "title": "Errors Files", - "category": "message", - "documentation": "" -} diff --git a/db/6043.json b/db/6043.json deleted file mode 100644 index b278977..0000000 --- a/db/6043.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6043, - "codeText": "TS6043", - "title": "Generates corresponding '.map' file.", - "category": "message", - "documentation": "" -} diff --git a/db/6044.json b/db/6044.json deleted file mode 100644 index 9f76a0b..0000000 --- a/db/6044.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6044, - "codeText": "TS6044", - "title": "Compiler option '{0}' expects an argument.", - "category": "error", - "documentation": "" -} diff --git a/db/6045.json b/db/6045.json deleted file mode 100644 index 20c6388..0000000 --- a/db/6045.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6045, - "codeText": "TS6045", - "title": "Unterminated quoted string in response file '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/6046.json b/db/6046.json deleted file mode 100644 index be03162..0000000 --- a/db/6046.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6046, - "codeText": "TS6046", - "title": "Argument for '{0}' option must be: {1}.", - "category": "error", - "documentation": "" -} diff --git a/db/6048.json b/db/6048.json deleted file mode 100644 index 02cc9d9..0000000 --- a/db/6048.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6048, - "codeText": "TS6048", - "title": "Locale must be of the form or -. For example '{0}' or '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/6050.json b/db/6050.json deleted file mode 100644 index 4e02ec0..0000000 --- a/db/6050.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6050, - "codeText": "TS6050", - "title": "Unable to open file '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/6051.json b/db/6051.json deleted file mode 100644 index ba34a68..0000000 --- a/db/6051.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6051, - "codeText": "TS6051", - "title": "Corrupted locale file {0}.", - "category": "error", - "documentation": "" -} diff --git a/db/6052.json b/db/6052.json deleted file mode 100644 index f504b44..0000000 --- a/db/6052.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6052, - "codeText": "TS6052", - "title": "Raise error on expressions and declarations with an implied 'any' type.", - "category": "message", - "documentation": "" -} diff --git a/db/6053.json b/db/6053.json deleted file mode 100644 index d2b0c9f..0000000 --- a/db/6053.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6053, - "codeText": "TS6053", - "title": "File '{0}' not found.", - "category": "error", - "documentation": "" -} diff --git a/db/6054.json b/db/6054.json deleted file mode 100644 index a96c69f..0000000 --- a/db/6054.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6054, - "codeText": "TS6054", - "title": "File '{0}' has an unsupported extension. The only supported extensions are {1}.", - "category": "error", - "documentation": "" -} diff --git a/db/6055.json b/db/6055.json deleted file mode 100644 index b31e4a1..0000000 --- a/db/6055.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6055, - "codeText": "TS6055", - "title": "Suppress noImplicitAny errors for indexing objects lacking index signatures.", - "category": "message", - "documentation": "" -} diff --git a/db/6056.json b/db/6056.json deleted file mode 100644 index 31bc66d..0000000 --- a/db/6056.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6056, - "codeText": "TS6056", - "title": "Do not emit declarations for code that has an '@internal' annotation.", - "category": "message", - "documentation": "" -} diff --git a/db/6058.json b/db/6058.json deleted file mode 100644 index 64708d2..0000000 --- a/db/6058.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6058, - "codeText": "TS6058", - "title": "Specify the root directory of input files. Use to control the output directory structure with --outDir.", - "category": "message", - "documentation": "" -} diff --git a/db/6059.json b/db/6059.json deleted file mode 100644 index cdb686c..0000000 --- a/db/6059.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6059, - "codeText": "TS6059", - "title": "File '{0}' is not under 'rootDir' '{1}'. 'rootDir' is expected to contain all source files.", - "category": "error", - "documentation": "" -} diff --git a/db/6060.json b/db/6060.json deleted file mode 100644 index 80dff4d..0000000 --- a/db/6060.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6060, - "codeText": "TS6060", - "title": "Specify the end of line sequence to be used when emitting files: 'CRLF' (dos) or 'LF' (unix).", - "category": "message", - "documentation": "" -} diff --git a/db/6061.json b/db/6061.json deleted file mode 100644 index fadb170..0000000 --- a/db/6061.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6061, - "codeText": "TS6061", - "title": "NEWLINE", - "category": "message", - "documentation": "" -} diff --git a/db/6064.json b/db/6064.json deleted file mode 100644 index 958bf6b..0000000 --- a/db/6064.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6064, - "codeText": "TS6064", - "title": "Option '{0}' can only be specified in 'tsconfig.json' file or set to 'null' on command line.", - "category": "error", - "documentation": "" -} diff --git a/db/6065.json b/db/6065.json deleted file mode 100644 index b745d31..0000000 --- a/db/6065.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6065, - "codeText": "TS6065", - "title": "Enables experimental support for ES7 decorators.", - "category": "message", - "documentation": "" -} diff --git a/db/6066.json b/db/6066.json deleted file mode 100644 index d0a8138..0000000 --- a/db/6066.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6066, - "codeText": "TS6066", - "title": "Enables experimental support for emitting type metadata for decorators.", - "category": "message", - "documentation": "" -} diff --git a/db/6069.json b/db/6069.json deleted file mode 100644 index ae4795d..0000000 --- a/db/6069.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6069, - "codeText": "TS6069", - "title": "Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6).", - "category": "message", - "documentation": "" -} diff --git a/db/6070.json b/db/6070.json deleted file mode 100644 index 962cf90..0000000 --- a/db/6070.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6070, - "codeText": "TS6070", - "title": "Initializes a TypeScript project and creates a tsconfig.json file.", - "category": "message", - "documentation": "" -} diff --git a/db/6071.json b/db/6071.json deleted file mode 100644 index ad0505a..0000000 --- a/db/6071.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6071, - "codeText": "TS6071", - "title": "Successfully created a tsconfig.json file.", - "category": "message", - "documentation": "" -} diff --git a/db/6072.json b/db/6072.json deleted file mode 100644 index e54a0c4..0000000 --- a/db/6072.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6072, - "codeText": "TS6072", - "title": "Suppress excess property checks for object literals.", - "category": "message", - "documentation": "" -} diff --git a/db/6073.json b/db/6073.json deleted file mode 100644 index 20527a3..0000000 --- a/db/6073.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6073, - "codeText": "TS6073", - "title": "Stylize errors and messages using color and context (experimental).", - "category": "message", - "documentation": "" -} diff --git a/db/6074.json b/db/6074.json deleted file mode 100644 index 32dc286..0000000 --- a/db/6074.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6074, - "codeText": "TS6074", - "title": "Do not report errors on unused labels.", - "category": "message", - "documentation": "" -} diff --git a/db/6075.json b/db/6075.json deleted file mode 100644 index 6ca29d7..0000000 --- a/db/6075.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6075, - "codeText": "TS6075", - "title": "Report error when not all code paths in function return a value.", - "category": "message", - "documentation": "" -} diff --git a/db/6076.json b/db/6076.json deleted file mode 100644 index b3d82c9..0000000 --- a/db/6076.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6076, - "codeText": "TS6076", - "title": "Report errors for fallthrough cases in switch statement.", - "category": "message", - "documentation": "" -} diff --git a/db/6077.json b/db/6077.json deleted file mode 100644 index 9af9f3d..0000000 --- a/db/6077.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6077, - "codeText": "TS6077", - "title": "Do not report errors on unreachable code.", - "category": "message", - "documentation": "" -} diff --git a/db/6078.json b/db/6078.json deleted file mode 100644 index bdfd47e..0000000 --- a/db/6078.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6078, - "codeText": "TS6078", - "title": "Disallow inconsistently-cased references to the same file.", - "category": "message", - "documentation": "" -} diff --git a/db/6079.json b/db/6079.json deleted file mode 100644 index 403250a..0000000 --- a/db/6079.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6079, - "codeText": "TS6079", - "title": "Specify library files to be included in the compilation.", - "category": "message", - "documentation": "" -} diff --git a/db/6080.json b/db/6080.json deleted file mode 100644 index 92a9147..0000000 --- a/db/6080.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6080, - "codeText": "TS6080", - "title": "Specify JSX code generation.", - "category": "message", - "documentation": "" -} diff --git a/db/6081.json b/db/6081.json deleted file mode 100644 index f82fb90..0000000 --- a/db/6081.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6081, - "codeText": "TS6081", - "title": "File '{0}' has an unsupported extension, so skipping it.", - "category": "message", - "documentation": "" -} diff --git a/db/6082.json b/db/6082.json deleted file mode 100644 index 3688adc..0000000 --- a/db/6082.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6082, - "codeText": "TS6082", - "title": "Only 'amd' and 'system' modules are supported alongside --{0}.", - "category": "error", - "documentation": "" -} diff --git a/db/6083.json b/db/6083.json deleted file mode 100644 index aae19c8..0000000 --- a/db/6083.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6083, - "codeText": "TS6083", - "title": "Base directory to resolve non-absolute module names.", - "category": "message", - "documentation": "" -} diff --git a/db/6084.json b/db/6084.json deleted file mode 100644 index 3f88472..0000000 --- a/db/6084.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6084, - "codeText": "TS6084", - "title": "[Deprecated] Use '--jsxFactory' instead. Specify the object invoked for createElement when targeting 'react' JSX emit", - "category": "message", - "documentation": "" -} diff --git a/db/6085.json b/db/6085.json deleted file mode 100644 index 256089c..0000000 --- a/db/6085.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6085, - "codeText": "TS6085", - "title": "Enable tracing of the name resolution process.", - "category": "message", - "documentation": "" -} diff --git a/db/6086.json b/db/6086.json deleted file mode 100644 index aa94300..0000000 --- a/db/6086.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6086, - "codeText": "TS6086", - "title": "======== Resolving module '{0}' from '{1}'. ========", - "category": "message", - "documentation": "" -} diff --git a/db/6087.json b/db/6087.json deleted file mode 100644 index 6874e4e..0000000 --- a/db/6087.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6087, - "codeText": "TS6087", - "title": "Explicitly specified module resolution kind: '{0}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6088.json b/db/6088.json deleted file mode 100644 index 6e9d48a..0000000 --- a/db/6088.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6088, - "codeText": "TS6088", - "title": "Module resolution kind is not specified, using '{0}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6089.json b/db/6089.json deleted file mode 100644 index 9e44fc2..0000000 --- a/db/6089.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6089, - "codeText": "TS6089", - "title": "======== Module name '{0}' was successfully resolved to '{1}'. ========", - "category": "message", - "documentation": "" -} diff --git a/db/6090.json b/db/6090.json deleted file mode 100644 index 2656dea..0000000 --- a/db/6090.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6090, - "codeText": "TS6090", - "title": "======== Module name '{0}' was not resolved. ========", - "category": "message", - "documentation": "" -} diff --git a/db/6091.json b/db/6091.json deleted file mode 100644 index 2baf514..0000000 --- a/db/6091.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6091, - "codeText": "TS6091", - "title": "'paths' option is specified, looking for a pattern to match module name '{0}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6092.json b/db/6092.json deleted file mode 100644 index 2e7046c..0000000 --- a/db/6092.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6092, - "codeText": "TS6092", - "title": "Module name '{0}', matched pattern '{1}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6093.json b/db/6093.json deleted file mode 100644 index 6f703f0..0000000 --- a/db/6093.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6093, - "codeText": "TS6093", - "title": "Trying substitution '{0}', candidate module location: '{1}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6094.json b/db/6094.json deleted file mode 100644 index af16529..0000000 --- a/db/6094.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6094, - "codeText": "TS6094", - "title": "Resolving module name '{0}' relative to base url '{1}' - '{2}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6095.json b/db/6095.json deleted file mode 100644 index 2a1a227..0000000 --- a/db/6095.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6095, - "codeText": "TS6095", - "title": "Loading module as file / folder, candidate module location '{0}', target file type '{1}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6096.json b/db/6096.json deleted file mode 100644 index 6f578dc..0000000 --- a/db/6096.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6096, - "codeText": "TS6096", - "title": "File '{0}' does not exist.", - "category": "message", - "documentation": "" -} diff --git a/db/6097.json b/db/6097.json deleted file mode 100644 index 64819be..0000000 --- a/db/6097.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6097, - "codeText": "TS6097", - "title": "File '{0}' exist - use it as a name resolution result.", - "category": "message", - "documentation": "" -} diff --git a/db/6098.json b/db/6098.json deleted file mode 100644 index ecf6c1a..0000000 --- a/db/6098.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6098, - "codeText": "TS6098", - "title": "Loading module '{0}' from 'node_modules' folder, target file type '{1}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6099.json b/db/6099.json deleted file mode 100644 index b91e9b0..0000000 --- a/db/6099.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6099, - "codeText": "TS6099", - "title": "Found 'package.json' at '{0}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6100.json b/db/6100.json deleted file mode 100644 index c252c40..0000000 --- a/db/6100.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6100, - "codeText": "TS6100", - "title": "'package.json' does not have a '{0}' field.", - "category": "message", - "documentation": "" -} diff --git a/db/6101.json b/db/6101.json deleted file mode 100644 index 1d8feb7..0000000 --- a/db/6101.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6101, - "codeText": "TS6101", - "title": "'package.json' has '{0}' field '{1}' that references '{2}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6102.json b/db/6102.json deleted file mode 100644 index da38290..0000000 --- a/db/6102.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6102, - "codeText": "TS6102", - "title": "Allow javascript files to be compiled.", - "category": "message", - "documentation": "" -} diff --git a/db/6104.json b/db/6104.json deleted file mode 100644 index a5fac6f..0000000 --- a/db/6104.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6104, - "codeText": "TS6104", - "title": "Checking if '{0}' is the longest matching prefix for '{1}' - '{2}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6105.json b/db/6105.json deleted file mode 100644 index 406c271..0000000 --- a/db/6105.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6105, - "codeText": "TS6105", - "title": "Expected type of '{0}' field in 'package.json' to be '{1}', got '{2}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6106.json b/db/6106.json deleted file mode 100644 index 075d211..0000000 --- a/db/6106.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6106, - "codeText": "TS6106", - "title": "'baseUrl' option is set to '{0}', using this value to resolve non-relative module name '{1}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6107.json b/db/6107.json deleted file mode 100644 index bca64d9..0000000 --- a/db/6107.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6107, - "codeText": "TS6107", - "title": "'rootDirs' option is set, using it to resolve relative module name '{0}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6108.json b/db/6108.json deleted file mode 100644 index 9608e23..0000000 --- a/db/6108.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6108, - "codeText": "TS6108", - "title": "Longest matching prefix for '{0}' is '{1}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6109.json b/db/6109.json deleted file mode 100644 index d9b765b..0000000 --- a/db/6109.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6109, - "codeText": "TS6109", - "title": "Loading '{0}' from the root dir '{1}', candidate location '{2}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6110.json b/db/6110.json deleted file mode 100644 index ba5c06d..0000000 --- a/db/6110.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6110, - "codeText": "TS6110", - "title": "Trying other entries in 'rootDirs'.", - "category": "message", - "documentation": "" -} diff --git a/db/6111.json b/db/6111.json deleted file mode 100644 index f9cae90..0000000 --- a/db/6111.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6111, - "codeText": "TS6111", - "title": "Module resolution using 'rootDirs' has failed.", - "category": "message", - "documentation": "" -} diff --git a/db/6112.json b/db/6112.json deleted file mode 100644 index 66f9170..0000000 --- a/db/6112.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6112, - "codeText": "TS6112", - "title": "Do not emit 'use strict' directives in module output.", - "category": "message", - "documentation": "" -} diff --git a/db/6113.json b/db/6113.json deleted file mode 100644 index 86a8f8b..0000000 --- a/db/6113.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6113, - "codeText": "TS6113", - "title": "Enable strict null checks.", - "category": "message", - "documentation": "" -} diff --git a/db/6114.json b/db/6114.json deleted file mode 100644 index 07aebbc..0000000 --- a/db/6114.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6114, - "codeText": "TS6114", - "title": "Unknown option 'excludes'. Did you mean 'exclude'?", - "category": "error", - "documentation": "" -} diff --git a/db/6115.json b/db/6115.json deleted file mode 100644 index 4fcec4f..0000000 --- a/db/6115.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6115, - "codeText": "TS6115", - "title": "Raise error on 'this' expressions with an implied 'any' type.", - "category": "message", - "documentation": "" -} diff --git a/db/6116.json b/db/6116.json deleted file mode 100644 index d611edd..0000000 --- a/db/6116.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6116, - "codeText": "TS6116", - "title": "======== Resolving type reference directive '{0}', containing file '{1}', root directory '{2}'. ========", - "category": "message", - "documentation": "" -} diff --git a/db/6119.json b/db/6119.json deleted file mode 100644 index 1210846..0000000 --- a/db/6119.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6119, - "codeText": "TS6119", - "title": "======== Type reference directive '{0}' was successfully resolved to '{1}', primary: {2}. ========", - "category": "message", - "documentation": "" -} diff --git a/db/6120.json b/db/6120.json deleted file mode 100644 index f1f425f..0000000 --- a/db/6120.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6120, - "codeText": "TS6120", - "title": "======== Type reference directive '{0}' was not resolved. ========", - "category": "message", - "documentation": "" -} diff --git a/db/6121.json b/db/6121.json deleted file mode 100644 index 55199c3..0000000 --- a/db/6121.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6121, - "codeText": "TS6121", - "title": "Resolving with primary search path '{0}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6122.json b/db/6122.json deleted file mode 100644 index a41a36c..0000000 --- a/db/6122.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6122, - "codeText": "TS6122", - "title": "Root directory cannot be determined, skipping primary search paths.", - "category": "message", - "documentation": "" -} diff --git a/db/6123.json b/db/6123.json deleted file mode 100644 index 7386d91..0000000 --- a/db/6123.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6123, - "codeText": "TS6123", - "title": "======== Resolving type reference directive '{0}', containing file '{1}', root directory not set. ========", - "category": "message", - "documentation": "" -} diff --git a/db/6124.json b/db/6124.json deleted file mode 100644 index 9f93592..0000000 --- a/db/6124.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6124, - "codeText": "TS6124", - "title": "Type declaration files to be included in compilation.", - "category": "message", - "documentation": "" -} diff --git a/db/6125.json b/db/6125.json deleted file mode 100644 index 2fa292e..0000000 --- a/db/6125.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6125, - "codeText": "TS6125", - "title": "Looking up in 'node_modules' folder, initial location '{0}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6126.json b/db/6126.json deleted file mode 100644 index dbeadc3..0000000 --- a/db/6126.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6126, - "codeText": "TS6126", - "title": "Containing file is not specified and root directory cannot be determined, skipping lookup in 'node_modules' folder.", - "category": "message", - "documentation": "" -} diff --git a/db/6127.json b/db/6127.json deleted file mode 100644 index 324be38..0000000 --- a/db/6127.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6127, - "codeText": "TS6127", - "title": "======== Resolving type reference directive '{0}', containing file not set, root directory '{1}'. ========", - "category": "message", - "documentation": "" -} diff --git a/db/6128.json b/db/6128.json deleted file mode 100644 index 89aea50..0000000 --- a/db/6128.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6128, - "codeText": "TS6128", - "title": "======== Resolving type reference directive '{0}', containing file not set, root directory not set. ========", - "category": "message", - "documentation": "" -} diff --git a/db/6130.json b/db/6130.json deleted file mode 100644 index 29377f2..0000000 --- a/db/6130.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6130, - "codeText": "TS6130", - "title": "Resolving real path for '{0}', result '{1}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6131.json b/db/6131.json deleted file mode 100644 index 4aef451..0000000 --- a/db/6131.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6131, - "codeText": "TS6131", - "title": "Cannot compile modules using option '{0}' unless the '--module' flag is 'amd' or 'system'.", - "category": "error", - "documentation": "" -} diff --git a/db/6132.json b/db/6132.json deleted file mode 100644 index 8b10e53..0000000 --- a/db/6132.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6132, - "codeText": "TS6132", - "title": "File name '{0}' has a '{1}' extension - stripping it.", - "category": "message", - "documentation": "" -} diff --git a/db/6133.json b/db/6133.json deleted file mode 100644 index d23bea5..0000000 --- a/db/6133.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6133, - "codeText": "TS6133", - "title": "'{0}' is declared but its value is never read.", - "category": "error", - "documentation": "" -} diff --git a/db/6134.json b/db/6134.json deleted file mode 100644 index ae45823..0000000 --- a/db/6134.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6134, - "codeText": "TS6134", - "title": "Report errors on unused locals.", - "category": "message", - "documentation": "" -} diff --git a/db/6135.json b/db/6135.json deleted file mode 100644 index 7f89e12..0000000 --- a/db/6135.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6135, - "codeText": "TS6135", - "title": "Report errors on unused parameters.", - "category": "message", - "documentation": "" -} diff --git a/db/6136.json b/db/6136.json deleted file mode 100644 index ac2184e..0000000 --- a/db/6136.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6136, - "codeText": "TS6136", - "title": "The maximum dependency depth to search under node_modules and load JavaScript files.", - "category": "message", - "documentation": "" -} diff --git a/db/6137.json b/db/6137.json deleted file mode 100644 index f9159b4..0000000 --- a/db/6137.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6137, - "codeText": "TS6137", - "title": "Cannot import type declaration files. Consider importing '{0}' instead of '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/6138.json b/db/6138.json deleted file mode 100644 index 4482230..0000000 --- a/db/6138.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6138, - "codeText": "TS6138", - "title": "Property '{0}' is declared but its value is never read.", - "category": "error", - "documentation": "" -} diff --git a/db/6139.json b/db/6139.json deleted file mode 100644 index f49d2cc..0000000 --- a/db/6139.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6139, - "codeText": "TS6139", - "title": "Import emit helpers from 'tslib'.", - "category": "message", - "documentation": "" -} diff --git a/db/6140.json b/db/6140.json deleted file mode 100644 index 3128402..0000000 --- a/db/6140.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6140, - "codeText": "TS6140", - "title": "Auto discovery for typings is enabled in project '{0}'. Running extra resolution pass for module '{1}' using cache location '{2}'.", - "category": "error", - "documentation": "" -} diff --git a/db/6141.json b/db/6141.json deleted file mode 100644 index d862386..0000000 --- a/db/6141.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6141, - "codeText": "TS6141", - "title": "Parse in strict mode and emit \"use strict\" for each source file.", - "category": "message", - "documentation": "" -} diff --git a/db/6142.json b/db/6142.json deleted file mode 100644 index 5a9b7ad..0000000 --- a/db/6142.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6142, - "codeText": "TS6142", - "title": "Module '{0}' was resolved to '{1}', but '--jsx' is not set.", - "category": "error", - "documentation": "" -} diff --git a/db/6144.json b/db/6144.json deleted file mode 100644 index 0831a96..0000000 --- a/db/6144.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6144, - "codeText": "TS6144", - "title": "Module '{0}' was resolved as locally declared ambient module in file '{1}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6145.json b/db/6145.json deleted file mode 100644 index da1cb0c..0000000 --- a/db/6145.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6145, - "codeText": "TS6145", - "title": "Module '{0}' was resolved as ambient module declared in '{1}' since this file was not modified.", - "category": "message", - "documentation": "" -} diff --git a/db/6146.json b/db/6146.json deleted file mode 100644 index 203e962..0000000 --- a/db/6146.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6146, - "codeText": "TS6146", - "title": "Specify the JSX factory function to use when targeting 'react' JSX emit, e.g. 'React.createElement' or 'h'.", - "category": "message", - "documentation": "" -} diff --git a/db/6147.json b/db/6147.json deleted file mode 100644 index 44e095d..0000000 --- a/db/6147.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6147, - "codeText": "TS6147", - "title": "Resolution for module '{0}' was found in cache from location '{1}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6148.json b/db/6148.json deleted file mode 100644 index 22bec30..0000000 --- a/db/6148.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6148, - "codeText": "TS6148", - "title": "Directory '{0}' does not exist, skipping all lookups in it.", - "category": "message", - "documentation": "" -} diff --git a/db/6149.json b/db/6149.json deleted file mode 100644 index 082941f..0000000 --- a/db/6149.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6149, - "codeText": "TS6149", - "title": "Show diagnostic information.", - "category": "message", - "documentation": "" -} diff --git a/db/6150.json b/db/6150.json deleted file mode 100644 index 8b8cc36..0000000 --- a/db/6150.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6150, - "codeText": "TS6150", - "title": "Show verbose diagnostic information.", - "category": "message", - "documentation": "" -} diff --git a/db/6151.json b/db/6151.json deleted file mode 100644 index c522b13..0000000 --- a/db/6151.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6151, - "codeText": "TS6151", - "title": "Emit a single file with source maps instead of having a separate file.", - "category": "message", - "documentation": "" -} diff --git a/db/6152.json b/db/6152.json deleted file mode 100644 index 021e734..0000000 --- a/db/6152.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6152, - "codeText": "TS6152", - "title": "Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set.", - "category": "message", - "documentation": "" -} diff --git a/db/6153.json b/db/6153.json deleted file mode 100644 index 8a6a03f..0000000 --- a/db/6153.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6153, - "codeText": "TS6153", - "title": "Transpile each file as a separate module (similar to 'ts.transpileModule').", - "category": "message", - "documentation": "" -} diff --git a/db/6154.json b/db/6154.json deleted file mode 100644 index b61c219..0000000 --- a/db/6154.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6154, - "codeText": "TS6154", - "title": "Print names of generated files part of the compilation.", - "category": "message", - "documentation": "" -} diff --git a/db/6155.json b/db/6155.json deleted file mode 100644 index 1f35fe1..0000000 --- a/db/6155.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6155, - "codeText": "TS6155", - "title": "Print names of files part of the compilation.", - "category": "message", - "documentation": "" -} diff --git a/db/6156.json b/db/6156.json deleted file mode 100644 index bef55b9..0000000 --- a/db/6156.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6156, - "codeText": "TS6156", - "title": "The locale used when displaying messages to the user (e.g. 'en-us')", - "category": "message", - "documentation": "" -} diff --git a/db/6157.json b/db/6157.json deleted file mode 100644 index e6b1e92..0000000 --- a/db/6157.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6157, - "codeText": "TS6157", - "title": "Do not generate custom helper functions like '__extends' in compiled output.", - "category": "message", - "documentation": "" -} diff --git a/db/6158.json b/db/6158.json deleted file mode 100644 index d147c65..0000000 --- a/db/6158.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6158, - "codeText": "TS6158", - "title": "Do not include the default library file (lib.d.ts).", - "category": "message", - "documentation": "" -} diff --git a/db/6159.json b/db/6159.json deleted file mode 100644 index 8455a59..0000000 --- a/db/6159.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6159, - "codeText": "TS6159", - "title": "Do not add triple-slash references or imported modules to the list of compiled files.", - "category": "message", - "documentation": "" -} diff --git a/db/6160.json b/db/6160.json deleted file mode 100644 index 927deca..0000000 --- a/db/6160.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6160, - "codeText": "TS6160", - "title": "[Deprecated] Use '--skipLibCheck' instead. Skip type checking of default library declaration files.", - "category": "message", - "documentation": "" -} diff --git a/db/6161.json b/db/6161.json deleted file mode 100644 index 255d5e2..0000000 --- a/db/6161.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6161, - "codeText": "TS6161", - "title": "List of folders to include type definitions from.", - "category": "message", - "documentation": "" -} diff --git a/db/6162.json b/db/6162.json deleted file mode 100644 index d022dd4..0000000 --- a/db/6162.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6162, - "codeText": "TS6162", - "title": "Disable size limitations on JavaScript projects.", - "category": "message", - "documentation": "" -} diff --git a/db/6163.json b/db/6163.json deleted file mode 100644 index fb3b21a..0000000 --- a/db/6163.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6163, - "codeText": "TS6163", - "title": "The character set of the input files.", - "category": "message", - "documentation": "" -} diff --git a/db/6164.json b/db/6164.json deleted file mode 100644 index 1812ffa..0000000 --- a/db/6164.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6164, - "codeText": "TS6164", - "title": "Skipping module '{0}' that looks like an absolute URI, target file types: {1}.", - "category": "message", - "documentation": "" -} diff --git a/db/6165.json b/db/6165.json deleted file mode 100644 index 4133c7b..0000000 --- a/db/6165.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6165, - "codeText": "TS6165", - "title": "Do not truncate error messages.", - "category": "message", - "documentation": "" -} diff --git a/db/6166.json b/db/6166.json deleted file mode 100644 index 9e20b59..0000000 --- a/db/6166.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6166, - "codeText": "TS6166", - "title": "Output directory for generated declaration files.", - "category": "message", - "documentation": "" -} diff --git a/db/6167.json b/db/6167.json deleted file mode 100644 index 5a9f3c3..0000000 --- a/db/6167.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6167, - "codeText": "TS6167", - "title": "A series of entries which re-map imports to lookup locations relative to the 'baseUrl'.", - "category": "message", - "documentation": "" -} diff --git a/db/6168.json b/db/6168.json deleted file mode 100644 index 80f036a..0000000 --- a/db/6168.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6168, - "codeText": "TS6168", - "title": "List of root folders whose combined content represents the structure of the project at runtime.", - "category": "message", - "documentation": "" -} diff --git a/db/6169.json b/db/6169.json deleted file mode 100644 index 90f7161..0000000 --- a/db/6169.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6169, - "codeText": "TS6169", - "title": "Show all compiler options.", - "category": "message", - "documentation": "" -} diff --git a/db/6170.json b/db/6170.json deleted file mode 100644 index 57e3d4d..0000000 --- a/db/6170.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6170, - "codeText": "TS6170", - "title": "[Deprecated] Use '--outFile' instead. Concatenate and emit output to single file", - "category": "message", - "documentation": "" -} diff --git a/db/6171.json b/db/6171.json deleted file mode 100644 index b487227..0000000 --- a/db/6171.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6171, - "codeText": "TS6171", - "title": "Command-line Options", - "category": "message", - "documentation": "" -} diff --git a/db/6179.json b/db/6179.json deleted file mode 100644 index 54d5df4..0000000 --- a/db/6179.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6179, - "codeText": "TS6179", - "title": "Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'.", - "category": "message", - "documentation": "" -} diff --git a/db/6180.json b/db/6180.json deleted file mode 100644 index a831fde..0000000 --- a/db/6180.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6180, - "codeText": "TS6180", - "title": "Enable all strict type-checking options.", - "category": "message", - "documentation": "" -} diff --git a/db/6182.json b/db/6182.json deleted file mode 100644 index 0be0bf3..0000000 --- a/db/6182.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6182, - "codeText": "TS6182", - "title": "Scoped package detected, looking in '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/6183.json b/db/6183.json deleted file mode 100644 index bf8a6d5..0000000 --- a/db/6183.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6183, - "codeText": "TS6183", - "title": "Reusing resolution of module '{0}' from '{1}' of old program, it was successfully resolved to '{2}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6184.json b/db/6184.json deleted file mode 100644 index 144c0ae..0000000 --- a/db/6184.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6184, - "codeText": "TS6184", - "title": "Reusing resolution of module '{0}' from '{1}' of old program, it was successfully resolved to '{2}' with Package ID '{3}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6186.json b/db/6186.json deleted file mode 100644 index 72a48d1..0000000 --- a/db/6186.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6186, - "codeText": "TS6186", - "title": "Enable strict checking of function types.", - "category": "message", - "documentation": "" -} diff --git a/db/6187.json b/db/6187.json deleted file mode 100644 index b994048..0000000 --- a/db/6187.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6187, - "codeText": "TS6187", - "title": "Enable strict checking of property initialization in classes.", - "category": "message", - "documentation": "" -} diff --git a/db/6188.json b/db/6188.json deleted file mode 100644 index 942b4e9..0000000 --- a/db/6188.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6188, - "codeText": "TS6188", - "title": "Numeric separators are not allowed here.", - "category": "error", - "documentation": "" -} diff --git a/db/6189.json b/db/6189.json deleted file mode 100644 index 3701671..0000000 --- a/db/6189.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6189, - "codeText": "TS6189", - "title": "Multiple consecutive numeric separators are not permitted.", - "category": "error", - "documentation": "" -} diff --git a/db/6191.json b/db/6191.json deleted file mode 100644 index 9960f10..0000000 --- a/db/6191.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6191, - "codeText": "TS6191", - "title": "Whether to keep outdated console output in watch mode instead of clearing the screen.", - "category": "message", - "documentation": "" -} diff --git a/db/6192.json b/db/6192.json deleted file mode 100644 index 7ac7c9f..0000000 --- a/db/6192.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6192, - "codeText": "TS6192", - "title": "All imports in import declaration are unused.", - "category": "error", - "documentation": "" -} diff --git a/db/6193.json b/db/6193.json deleted file mode 100644 index 73ae4d2..0000000 --- a/db/6193.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6193, - "codeText": "TS6193", - "title": "Found 1 error. Watching for file changes.", - "category": "message", - "documentation": "" -} diff --git a/db/6194.json b/db/6194.json deleted file mode 100644 index dcb5c99..0000000 --- a/db/6194.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6194, - "codeText": "TS6194", - "title": "Found {0} errors. Watching for file changes.", - "category": "message", - "documentation": "" -} diff --git a/db/6195.json b/db/6195.json deleted file mode 100644 index 1739ba9..0000000 --- a/db/6195.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6195, - "codeText": "TS6195", - "title": "Resolve 'keyof' to string valued property names only (no numbers or symbols).", - "category": "message", - "documentation": "" -} diff --git a/db/6196.json b/db/6196.json deleted file mode 100644 index 2f3b156..0000000 --- a/db/6196.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6196, - "codeText": "TS6196", - "title": "'{0}' is declared but never used.", - "category": "error", - "documentation": "" -} diff --git a/db/6197.json b/db/6197.json deleted file mode 100644 index 31ad093..0000000 --- a/db/6197.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6197, - "codeText": "TS6197", - "title": "Include modules imported with '.json' extension", - "category": "message", - "documentation": "" -} diff --git a/db/6198.json b/db/6198.json deleted file mode 100644 index f1dd17d..0000000 --- a/db/6198.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6198, - "codeText": "TS6198", - "title": "All destructured elements are unused.", - "category": "error", - "documentation": "" -} diff --git a/db/6199.json b/db/6199.json deleted file mode 100644 index eb57f9a..0000000 --- a/db/6199.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6199, - "codeText": "TS6199", - "title": "All variables are unused.", - "category": "error", - "documentation": "" -} diff --git a/db/6200.json b/db/6200.json deleted file mode 100644 index 8b4c14a..0000000 --- a/db/6200.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6200, - "codeText": "TS6200", - "title": "Definitions of the following identifiers conflict with those in another file: {0}", - "category": "error", - "documentation": "" -} diff --git a/db/6201.json b/db/6201.json deleted file mode 100644 index 90a5cf0..0000000 --- a/db/6201.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6201, - "codeText": "TS6201", - "title": "Conflicts are in this file.", - "category": "message", - "documentation": "" -} diff --git a/db/6202.json b/db/6202.json deleted file mode 100644 index bc909f3..0000000 --- a/db/6202.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6202, - "codeText": "TS6202", - "title": "Project references may not form a circular graph. Cycle detected: {0}", - "category": "error", - "documentation": "" -} diff --git a/db/6203.json b/db/6203.json deleted file mode 100644 index 5fcc99c..0000000 --- a/db/6203.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6203, - "codeText": "TS6203", - "title": "'{0}' was also declared here.", - "category": "message", - "documentation": "" -} diff --git a/db/6204.json b/db/6204.json deleted file mode 100644 index 40980a9..0000000 --- a/db/6204.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6204, - "codeText": "TS6204", - "title": "and here.", - "category": "message", - "documentation": "" -} diff --git a/db/6205.json b/db/6205.json deleted file mode 100644 index c6b3be2..0000000 --- a/db/6205.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6205, - "codeText": "TS6205", - "title": "All type parameters are unused.", - "category": "error", - "documentation": "" -} diff --git a/db/6206.json b/db/6206.json deleted file mode 100644 index a0d2570..0000000 --- a/db/6206.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6206, - "codeText": "TS6206", - "title": "'package.json' has a 'typesVersions' field with version-specific path mappings.", - "category": "message", - "documentation": "" -} diff --git a/db/6207.json b/db/6207.json deleted file mode 100644 index 9ca6e59..0000000 --- a/db/6207.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6207, - "codeText": "TS6207", - "title": "'package.json' does not have a 'typesVersions' entry that matches version '{0}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6208.json b/db/6208.json deleted file mode 100644 index f713aa9..0000000 --- a/db/6208.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6208, - "codeText": "TS6208", - "title": "'package.json' has a 'typesVersions' entry '{0}' that matches compiler version '{1}', looking for a pattern to match module name '{2}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6209.json b/db/6209.json deleted file mode 100644 index 86443d3..0000000 --- a/db/6209.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6209, - "codeText": "TS6209", - "title": "'package.json' has a 'typesVersions' entry '{0}' that is not a valid semver range.", - "category": "message", - "documentation": "" -} diff --git a/db/6210.json b/db/6210.json deleted file mode 100644 index 04ffcaa..0000000 --- a/db/6210.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6210, - "codeText": "TS6210", - "title": "An argument for '{0}' was not provided.", - "category": "message", - "documentation": "" -} diff --git a/db/6211.json b/db/6211.json deleted file mode 100644 index 160135e..0000000 --- a/db/6211.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6211, - "codeText": "TS6211", - "title": "An argument matching this binding pattern was not provided.", - "category": "message", - "documentation": "" -} diff --git a/db/6212.json b/db/6212.json deleted file mode 100644 index 3764284..0000000 --- a/db/6212.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6212, - "codeText": "TS6212", - "title": "Did you mean to call this expression?", - "category": "message", - "documentation": "" -} diff --git a/db/6213.json b/db/6213.json deleted file mode 100644 index 74ce031..0000000 --- a/db/6213.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6213, - "codeText": "TS6213", - "title": "Did you mean to use 'new' with this expression?", - "category": "message", - "documentation": "" -} diff --git a/db/6214.json b/db/6214.json deleted file mode 100644 index bfc4c5f..0000000 --- a/db/6214.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6214, - "codeText": "TS6214", - "title": "Enable strict 'bind', 'call', and 'apply' methods on functions.", - "category": "message", - "documentation": "" -} diff --git a/db/6215.json b/db/6215.json deleted file mode 100644 index 14e47c6..0000000 --- a/db/6215.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6215, - "codeText": "TS6215", - "title": "Using compiler options of project reference redirect '{0}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6216.json b/db/6216.json deleted file mode 100644 index 6640b22..0000000 --- a/db/6216.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6216, - "codeText": "TS6216", - "title": "Found 1 error.", - "category": "message", - "documentation": "" -} diff --git a/db/6217.json b/db/6217.json deleted file mode 100644 index 0554de3..0000000 --- a/db/6217.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6217, - "codeText": "TS6217", - "title": "Found {0} errors.", - "category": "message", - "documentation": "" -} diff --git a/db/6218.json b/db/6218.json deleted file mode 100644 index 51d1782..0000000 --- a/db/6218.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6218, - "codeText": "TS6218", - "title": "======== Module name '{0}' was successfully resolved to '{1}' with Package ID '{2}'. ========", - "category": "message", - "documentation": "" -} diff --git a/db/6219.json b/db/6219.json deleted file mode 100644 index 93a4ee1..0000000 --- a/db/6219.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6219, - "codeText": "TS6219", - "title": "======== Type reference directive '{0}' was successfully resolved to '{1}' with Package ID '{2}', primary: {3}. ========", - "category": "message", - "documentation": "" -} diff --git a/db/6220.json b/db/6220.json deleted file mode 100644 index a0e83f5..0000000 --- a/db/6220.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6220, - "codeText": "TS6220", - "title": "'package.json' had a falsy '{0}' field.", - "category": "message", - "documentation": "" -} diff --git a/db/6221.json b/db/6221.json deleted file mode 100644 index 1ea8378..0000000 --- a/db/6221.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6221, - "codeText": "TS6221", - "title": "Disable use of source files instead of declaration files from referenced projects.", - "category": "message", - "documentation": "" -} diff --git a/db/6222.json b/db/6222.json deleted file mode 100644 index 4fc873f..0000000 --- a/db/6222.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6222, - "codeText": "TS6222", - "title": "Emit class fields with Define instead of Set.", - "category": "message", - "documentation": "" -} diff --git a/db/6223.json b/db/6223.json deleted file mode 100644 index fc80c2d..0000000 --- a/db/6223.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6223, - "codeText": "TS6223", - "title": "Generates a CPU profile.", - "category": "message", - "documentation": "" -} diff --git a/db/6224.json b/db/6224.json deleted file mode 100644 index ec296b2..0000000 --- a/db/6224.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6224, - "codeText": "TS6224", - "title": "Disable solution searching for this project.", - "category": "message", - "documentation": "" -} diff --git a/db/6225.json b/db/6225.json deleted file mode 100644 index 54686be..0000000 --- a/db/6225.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6225, - "codeText": "TS6225", - "title": "Specify strategy for watching file: 'FixedPollingInterval' (default), 'PriorityPollingInterval', 'DynamicPriorityPolling', 'FixedChunkSizePolling', 'UseFsEvents', 'UseFsEventsOnParentDirectory'.", - "category": "message", - "documentation": "" -} diff --git a/db/6226.json b/db/6226.json deleted file mode 100644 index e65556b..0000000 --- a/db/6226.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6226, - "codeText": "TS6226", - "title": "Specify strategy for watching directory on platforms that don't support recursive watching natively: 'UseFsEvents' (default), 'FixedPollingInterval', 'DynamicPriorityPolling', 'FixedChunkSizePolling'.", - "category": "message", - "documentation": "" -} diff --git a/db/6227.json b/db/6227.json deleted file mode 100644 index ae3327f..0000000 --- a/db/6227.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6227, - "codeText": "TS6227", - "title": "Specify strategy for creating a polling watch when it fails to create using file system events: 'FixedInterval' (default), 'PriorityInterval', 'DynamicPriority', 'FixedChunkSize'.", - "category": "message", - "documentation": "" -} diff --git a/db/6229.json b/db/6229.json deleted file mode 100644 index 95f052d..0000000 --- a/db/6229.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6229, - "codeText": "TS6229", - "title": "Tag '{0}' expects at least '{1}' arguments, but the JSX factory '{2}' provides at most '{3}'.", - "category": "error", - "documentation": "" -} diff --git a/db/6230.json b/db/6230.json deleted file mode 100644 index 877d30b..0000000 --- a/db/6230.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6230, - "codeText": "TS6230", - "title": "Option '{0}' can only be specified in 'tsconfig.json' file or set to 'false' or 'null' on command line.", - "category": "error", - "documentation": "" -} diff --git a/db/6231.json b/db/6231.json deleted file mode 100644 index 029b4b0..0000000 --- a/db/6231.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6231, - "codeText": "TS6231", - "title": "Could not resolve the path '{0}' with the extensions: {1}.", - "category": "error", - "documentation": "" -} diff --git a/db/6232.json b/db/6232.json deleted file mode 100644 index 4bd13be..0000000 --- a/db/6232.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6232, - "codeText": "TS6232", - "title": "Declaration augments declaration in another file. This cannot be serialized.", - "category": "error", - "documentation": "" -} diff --git a/db/6233.json b/db/6233.json deleted file mode 100644 index d375a7b..0000000 --- a/db/6233.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6233, - "codeText": "TS6233", - "title": "This is the declaration being augmented. Consider moving the augmenting declaration into the same file.", - "category": "error", - "documentation": "" -} diff --git a/db/6234.json b/db/6234.json deleted file mode 100644 index 92efabf..0000000 --- a/db/6234.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6234, - "codeText": "TS6234", - "title": "This expression is not callable because it is a 'get' accessor. Did you mean to use it without '()'?", - "category": "error", - "documentation": "" -} diff --git a/db/6235.json b/db/6235.json deleted file mode 100644 index 7fb2e08..0000000 --- a/db/6235.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6235, - "codeText": "TS6235", - "title": "Disable loading referenced projects.", - "category": "message", - "documentation": "" -} diff --git a/db/6236.json b/db/6236.json deleted file mode 100644 index 087aa9e..0000000 --- a/db/6236.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6236, - "codeText": "TS6236", - "title": "Arguments for the rest parameter '{0}' were not provided.", - "category": "error", - "documentation": "" -} diff --git a/db/6237.json b/db/6237.json deleted file mode 100644 index b462a2d..0000000 --- a/db/6237.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6237, - "codeText": "TS6237", - "title": "Generates an event trace and a list of types.", - "category": "message", - "documentation": "" -} diff --git a/db/6238.json b/db/6238.json deleted file mode 100644 index a652ba0..0000000 --- a/db/6238.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6238, - "codeText": "TS6238", - "title": "Specify the module specifier to be used to import the 'jsx' and 'jsxs' factory functions from. eg, react", - "category": "error", - "documentation": "" -} diff --git a/db/6239.json b/db/6239.json deleted file mode 100644 index 8e6b28c..0000000 --- a/db/6239.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6239, - "codeText": "TS6239", - "title": "File '{0}' exists according to earlier cached lookups.", - "category": "message", - "documentation": "" -} diff --git a/db/6240.json b/db/6240.json deleted file mode 100644 index c481ba5..0000000 --- a/db/6240.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6240, - "codeText": "TS6240", - "title": "File '{0}' does not exist according to earlier cached lookups.", - "category": "message", - "documentation": "" -} diff --git a/db/6241.json b/db/6241.json deleted file mode 100644 index f2d9505..0000000 --- a/db/6241.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6241, - "codeText": "TS6241", - "title": "Resolution for type reference directive '{0}' was found in cache from location '{1}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6242.json b/db/6242.json deleted file mode 100644 index cdba9b5..0000000 --- a/db/6242.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6242, - "codeText": "TS6242", - "title": "======== Resolving type reference directive '{0}', containing file '{1}'. ========", - "category": "message", - "documentation": "" -} diff --git a/db/6243.json b/db/6243.json deleted file mode 100644 index ab2425f..0000000 --- a/db/6243.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6243, - "codeText": "TS6243", - "title": "Interpret optional property types as written, rather than adding 'undefined'.", - "category": "message", - "documentation": "" -} diff --git a/db/6244.json b/db/6244.json deleted file mode 100644 index 692e5b0..0000000 --- a/db/6244.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6244, - "codeText": "TS6244", - "title": "Modules", - "category": "message", - "documentation": "" -} diff --git a/db/6245.json b/db/6245.json deleted file mode 100644 index c52d2b2..0000000 --- a/db/6245.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6245, - "codeText": "TS6245", - "title": "File Management", - "category": "message", - "documentation": "" -} diff --git a/db/6246.json b/db/6246.json deleted file mode 100644 index dae0013..0000000 --- a/db/6246.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6246, - "codeText": "TS6246", - "title": "Emit", - "category": "message", - "documentation": "" -} diff --git a/db/6247.json b/db/6247.json deleted file mode 100644 index e0513c9..0000000 --- a/db/6247.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6247, - "codeText": "TS6247", - "title": "JavaScript Support", - "category": "message", - "documentation": "" -} diff --git a/db/6248.json b/db/6248.json deleted file mode 100644 index f341ed4..0000000 --- a/db/6248.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6248, - "codeText": "TS6248", - "title": "Type Checking", - "category": "message", - "documentation": "" -} diff --git a/db/6249.json b/db/6249.json deleted file mode 100644 index b1846b2..0000000 --- a/db/6249.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6249, - "codeText": "TS6249", - "title": "Editor Support", - "category": "message", - "documentation": "" -} diff --git a/db/6250.json b/db/6250.json deleted file mode 100644 index dbf4ebd..0000000 --- a/db/6250.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6250, - "codeText": "TS6250", - "title": "Watch and Build Modes", - "category": "message", - "documentation": "" -} diff --git a/db/6251.json b/db/6251.json deleted file mode 100644 index ec7a5dd..0000000 --- a/db/6251.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6251, - "codeText": "TS6251", - "title": "Compiler Diagnostics", - "category": "message", - "documentation": "" -} diff --git a/db/6252.json b/db/6252.json deleted file mode 100644 index 57fd6bb..0000000 --- a/db/6252.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6252, - "codeText": "TS6252", - "title": "Interop Constraints", - "category": "message", - "documentation": "" -} diff --git a/db/6253.json b/db/6253.json deleted file mode 100644 index a3c5e53..0000000 --- a/db/6253.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6253, - "codeText": "TS6253", - "title": "Backwards Compatibility", - "category": "message", - "documentation": "" -} diff --git a/db/6254.json b/db/6254.json deleted file mode 100644 index 9bb1749..0000000 --- a/db/6254.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6254, - "codeText": "TS6254", - "title": "Language and Environment", - "category": "message", - "documentation": "" -} diff --git a/db/6255.json b/db/6255.json deleted file mode 100644 index 8801008..0000000 --- a/db/6255.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6255, - "codeText": "TS6255", - "title": "Projects", - "category": "message", - "documentation": "" -} diff --git a/db/6256.json b/db/6256.json deleted file mode 100644 index bf6bc13..0000000 --- a/db/6256.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6256, - "codeText": "TS6256", - "title": "Output Formatting", - "category": "message", - "documentation": "" -} diff --git a/db/6257.json b/db/6257.json deleted file mode 100644 index d354a70..0000000 --- a/db/6257.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6257, - "codeText": "TS6257", - "title": "Completeness", - "category": "message", - "documentation": "" -} diff --git a/db/6258.json b/db/6258.json deleted file mode 100644 index f91db0a..0000000 --- a/db/6258.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6258, - "codeText": "TS6258", - "title": "'{0}' should be set inside the 'compilerOptions' object of the config json file", - "category": "error", - "documentation": "" -} diff --git a/db/6259.json b/db/6259.json deleted file mode 100644 index 1303044..0000000 --- a/db/6259.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6259, - "codeText": "TS6259", - "title": "Found 1 error in {1}", - "category": "message", - "documentation": "" -} diff --git a/db/6260.json b/db/6260.json deleted file mode 100644 index 51b9d4d..0000000 --- a/db/6260.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6260, - "codeText": "TS6260", - "title": "Found {0} errors in the same file, starting at: {1}", - "category": "message", - "documentation": "" -} diff --git a/db/6261.json b/db/6261.json deleted file mode 100644 index 2aca044..0000000 --- a/db/6261.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6261, - "codeText": "TS6261", - "title": "Found {0} errors in {1} files.", - "category": "message", - "documentation": "" -} diff --git a/db/6262.json b/db/6262.json deleted file mode 100644 index 8d4b0b4..0000000 --- a/db/6262.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6262, - "codeText": "TS6262", - "title": "File name '{0}' has a '{1}' extension - looking up '{2}' instead.", - "category": "message", - "documentation": "" -} diff --git a/db/6263.json b/db/6263.json deleted file mode 100644 index 4f1253e..0000000 --- a/db/6263.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6263, - "codeText": "TS6263", - "title": "Module '{0}' was resolved to '{1}', but '--allowArbitraryExtensions' is not set.", - "category": "error", - "documentation": "" -} diff --git a/db/6264.json b/db/6264.json deleted file mode 100644 index 19171ab..0000000 --- a/db/6264.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6264, - "codeText": "TS6264", - "title": "Enable importing files with any extension, provided a declaration file is present.", - "category": "message", - "documentation": "" -} diff --git a/db/6265.json b/db/6265.json deleted file mode 100644 index bff1a63..0000000 --- a/db/6265.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6265, - "codeText": "TS6265", - "title": "Resolving type reference directive for program that specifies custom typeRoots, skipping lookup in 'node_modules' folder.", - "category": "message", - "documentation": "" -} diff --git a/db/6266.json b/db/6266.json deleted file mode 100644 index 3c6e89f..0000000 --- a/db/6266.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6266, - "codeText": "TS6266", - "title": "Option '{0}' can only be specified on command line.", - "category": "error", - "documentation": "" -} diff --git a/db/6270.json b/db/6270.json deleted file mode 100644 index e8ff45a..0000000 --- a/db/6270.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6270, - "codeText": "TS6270", - "title": "Directory '{0}' has no containing package.json scope. Imports will not resolve.", - "category": "message", - "documentation": "" -} diff --git a/db/6271.json b/db/6271.json deleted file mode 100644 index c49dc8e..0000000 --- a/db/6271.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6271, - "codeText": "TS6271", - "title": "Import specifier '{0}' does not exist in package.json scope at path '{1}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6272.json b/db/6272.json deleted file mode 100644 index c4fde78..0000000 --- a/db/6272.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6272, - "codeText": "TS6272", - "title": "Invalid import specifier '{0}' has no possible resolutions.", - "category": "message", - "documentation": "" -} diff --git a/db/6273.json b/db/6273.json deleted file mode 100644 index 9440ad2..0000000 --- a/db/6273.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6273, - "codeText": "TS6273", - "title": "package.json scope '{0}' has no imports defined.", - "category": "message", - "documentation": "" -} diff --git a/db/6274.json b/db/6274.json deleted file mode 100644 index c615200..0000000 --- a/db/6274.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6274, - "codeText": "TS6274", - "title": "package.json scope '{0}' explicitly maps specifier '{1}' to null.", - "category": "message", - "documentation": "" -} diff --git a/db/6275.json b/db/6275.json deleted file mode 100644 index cc00cee..0000000 --- a/db/6275.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6275, - "codeText": "TS6275", - "title": "package.json scope '{0}' has invalid type for target of specifier '{1}'", - "category": "message", - "documentation": "" -} diff --git a/db/6276.json b/db/6276.json deleted file mode 100644 index aca4607..0000000 --- a/db/6276.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6276, - "codeText": "TS6276", - "title": "Export specifier '{0}' does not exist in package.json scope at path '{1}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6277.json b/db/6277.json deleted file mode 100644 index 4fba7dd..0000000 --- a/db/6277.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6277, - "codeText": "TS6277", - "title": "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", - "category": "message", - "documentation": "" -} diff --git a/db/6278.json b/db/6278.json deleted file mode 100644 index 4e939c0..0000000 --- a/db/6278.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6278, - "codeText": "TS6278", - "title": "There are types at '{0}', but this result could not be resolved when respecting package.json \"exports\". The '{1}' library may need to update its package.json or typings.", - "category": "message", - "documentation": "" -} diff --git a/db/6302.json b/db/6302.json deleted file mode 100644 index 095cb1e..0000000 --- a/db/6302.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6302, - "codeText": "TS6302", - "title": "Enable project compilation", - "category": "message", - "documentation": "" -} diff --git a/db/6304.json b/db/6304.json deleted file mode 100644 index e546b25..0000000 --- a/db/6304.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6304, - "codeText": "TS6304", - "title": "Composite projects may not disable declaration emit.", - "category": "error", - "documentation": "" -} diff --git a/db/6305.json b/db/6305.json deleted file mode 100644 index 38ffed7..0000000 --- a/db/6305.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6305, - "codeText": "TS6305", - "title": "Output file '{0}' has not been built from source file '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/6306.json b/db/6306.json deleted file mode 100644 index 9cd83c0..0000000 --- a/db/6306.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6306, - "codeText": "TS6306", - "title": "Referenced project '{0}' must have setting \"composite\": true.", - "category": "error", - "documentation": "" -} diff --git a/db/6307.json b/db/6307.json deleted file mode 100644 index 911b696..0000000 --- a/db/6307.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6307, - "codeText": "TS6307", - "title": "File '{0}' is not listed within the file list of project '{1}'. Projects must list all files or use an 'include' pattern.", - "category": "error", - "documentation": "" -} diff --git a/db/6308.json b/db/6308.json deleted file mode 100644 index 056d781..0000000 --- a/db/6308.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6308, - "codeText": "TS6308", - "title": "Cannot prepend project '{0}' because it does not have 'outFile' set", - "category": "error", - "documentation": "" -} diff --git a/db/6309.json b/db/6309.json deleted file mode 100644 index 576e6f6..0000000 --- a/db/6309.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6309, - "codeText": "TS6309", - "title": "Output file '{0}' from project '{1}' does not exist", - "category": "error", - "documentation": "" -} diff --git a/db/6310.json b/db/6310.json deleted file mode 100644 index e0023c4..0000000 --- a/db/6310.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6310, - "codeText": "TS6310", - "title": "Referenced project '{0}' may not disable emit.", - "category": "error", - "documentation": "" -} diff --git a/db/6350.json b/db/6350.json deleted file mode 100644 index 0636c75..0000000 --- a/db/6350.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6350, - "codeText": "TS6350", - "title": "Project '{0}' is out of date because output '{1}' is older than input '{2}'", - "category": "message", - "documentation": "" -} diff --git a/db/6351.json b/db/6351.json deleted file mode 100644 index 28e36bc..0000000 --- a/db/6351.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6351, - "codeText": "TS6351", - "title": "Project '{0}' is up to date because newest input '{1}' is older than output '{2}'", - "category": "message", - "documentation": "" -} diff --git a/db/6352.json b/db/6352.json deleted file mode 100644 index 197ed1b..0000000 --- a/db/6352.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6352, - "codeText": "TS6352", - "title": "Project '{0}' is out of date because output file '{1}' does not exist", - "category": "message", - "documentation": "" -} diff --git a/db/6353.json b/db/6353.json deleted file mode 100644 index 8622322..0000000 --- a/db/6353.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6353, - "codeText": "TS6353", - "title": "Project '{0}' is out of date because its dependency '{1}' is out of date", - "category": "message", - "documentation": "" -} diff --git a/db/6354.json b/db/6354.json deleted file mode 100644 index bf55099..0000000 --- a/db/6354.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6354, - "codeText": "TS6354", - "title": "Project '{0}' is up to date with .d.ts files from its dependencies", - "category": "message", - "documentation": "" -} diff --git a/db/6355.json b/db/6355.json deleted file mode 100644 index 6cb268a..0000000 --- a/db/6355.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6355, - "codeText": "TS6355", - "title": "Projects in this build: {0}", - "category": "message", - "documentation": "" -} diff --git a/db/6356.json b/db/6356.json deleted file mode 100644 index a4fab80..0000000 --- a/db/6356.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6356, - "codeText": "TS6356", - "title": "A non-dry build would delete the following files: {0}", - "category": "message", - "documentation": "" -} diff --git a/db/6357.json b/db/6357.json deleted file mode 100644 index 29783d8..0000000 --- a/db/6357.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6357, - "codeText": "TS6357", - "title": "A non-dry build would build project '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/6358.json b/db/6358.json deleted file mode 100644 index 6157b30..0000000 --- a/db/6358.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6358, - "codeText": "TS6358", - "title": "Building project '{0}'...", - "category": "message", - "documentation": "" -} diff --git a/db/6359.json b/db/6359.json deleted file mode 100644 index ed96016..0000000 --- a/db/6359.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6359, - "codeText": "TS6359", - "title": "Updating output timestamps of project '{0}'...", - "category": "message", - "documentation": "" -} diff --git a/db/6361.json b/db/6361.json deleted file mode 100644 index 1ad140a..0000000 --- a/db/6361.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6361, - "codeText": "TS6361", - "title": "Project '{0}' is up to date", - "category": "message", - "documentation": "" -} diff --git a/db/6362.json b/db/6362.json deleted file mode 100644 index 88ea202..0000000 --- a/db/6362.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6362, - "codeText": "TS6362", - "title": "Skipping build of project '{0}' because its dependency '{1}' has errors", - "category": "message", - "documentation": "" -} diff --git a/db/6363.json b/db/6363.json deleted file mode 100644 index 37bd209..0000000 --- a/db/6363.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6363, - "codeText": "TS6363", - "title": "Project '{0}' can't be built because its dependency '{1}' has errors", - "category": "message", - "documentation": "" -} diff --git a/db/6364.json b/db/6364.json deleted file mode 100644 index c960723..0000000 --- a/db/6364.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6364, - "codeText": "TS6364", - "title": "Build one or more projects and their dependencies, if out of date", - "category": "message", - "documentation": "" -} diff --git a/db/6365.json b/db/6365.json deleted file mode 100644 index a395710..0000000 --- a/db/6365.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6365, - "codeText": "TS6365", - "title": "Delete the outputs of all projects.", - "category": "message", - "documentation": "" -} diff --git a/db/6367.json b/db/6367.json deleted file mode 100644 index 17695fc..0000000 --- a/db/6367.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6367, - "codeText": "TS6367", - "title": "Show what would be built (or deleted, if specified with '--clean')", - "category": "message", - "documentation": "" -} diff --git a/db/6369.json b/db/6369.json deleted file mode 100644 index 2620c73..0000000 --- a/db/6369.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6369, - "codeText": "TS6369", - "title": "Option '--build' must be the first command line argument.", - "category": "error", - "documentation": "" -} diff --git a/db/6370.json b/db/6370.json deleted file mode 100644 index 12d6062..0000000 --- a/db/6370.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6370, - "codeText": "TS6370", - "title": "Options '{0}' and '{1}' cannot be combined.", - "category": "error", - "documentation": "" -} diff --git a/db/6371.json b/db/6371.json deleted file mode 100644 index 9407846..0000000 --- a/db/6371.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6371, - "codeText": "TS6371", - "title": "Updating unchanged output timestamps of project '{0}'...", - "category": "message", - "documentation": "" -} diff --git a/db/6372.json b/db/6372.json deleted file mode 100644 index 8cc7c93..0000000 --- a/db/6372.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6372, - "codeText": "TS6372", - "title": "Project '{0}' is out of date because output of its dependency '{1}' has changed", - "category": "message", - "documentation": "" -} diff --git a/db/6373.json b/db/6373.json deleted file mode 100644 index e88ccb8..0000000 --- a/db/6373.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6373, - "codeText": "TS6373", - "title": "Updating output of project '{0}'...", - "category": "message", - "documentation": "" -} diff --git a/db/6374.json b/db/6374.json deleted file mode 100644 index 80e1ff1..0000000 --- a/db/6374.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6374, - "codeText": "TS6374", - "title": "A non-dry build would update timestamps for output of project '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/6375.json b/db/6375.json deleted file mode 100644 index a6964e0..0000000 --- a/db/6375.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6375, - "codeText": "TS6375", - "title": "A non-dry build would update output of project '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/6376.json b/db/6376.json deleted file mode 100644 index 9971ab1..0000000 --- a/db/6376.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6376, - "codeText": "TS6376", - "title": "Cannot update output of project '{0}' because there was error reading file '{1}'", - "category": "message", - "documentation": "" -} diff --git a/db/6377.json b/db/6377.json deleted file mode 100644 index 57e6c0f..0000000 --- a/db/6377.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6377, - "codeText": "TS6377", - "title": "Cannot write file '{0}' because it will overwrite '.tsbuildinfo' file generated by referenced project '{1}'", - "category": "error", - "documentation": "" -} diff --git a/db/6379.json b/db/6379.json deleted file mode 100644 index fb71bd9..0000000 --- a/db/6379.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6379, - "codeText": "TS6379", - "title": "Composite projects may not disable incremental compilation.", - "category": "error", - "documentation": "" -} diff --git a/db/6380.json b/db/6380.json deleted file mode 100644 index dfc3c8e..0000000 --- a/db/6380.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6380, - "codeText": "TS6380", - "title": "Specify file to store incremental compilation information", - "category": "message", - "documentation": "" -} diff --git a/db/6381.json b/db/6381.json deleted file mode 100644 index 3edc955..0000000 --- a/db/6381.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6381, - "codeText": "TS6381", - "title": "Project '{0}' is out of date because output for it was generated with version '{1}' that differs with current version '{2}'", - "category": "message", - "documentation": "" -} diff --git a/db/6382.json b/db/6382.json deleted file mode 100644 index 7e51526..0000000 --- a/db/6382.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6382, - "codeText": "TS6382", - "title": "Skipping build of project '{0}' because its dependency '{1}' was not built", - "category": "message", - "documentation": "" -} diff --git a/db/6383.json b/db/6383.json deleted file mode 100644 index 551360c..0000000 --- a/db/6383.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6383, - "codeText": "TS6383", - "title": "Project '{0}' can't be built because its dependency '{1}' was not built", - "category": "message", - "documentation": "" -} diff --git a/db/6384.json b/db/6384.json deleted file mode 100644 index aa6bf96..0000000 --- a/db/6384.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6384, - "codeText": "TS6384", - "title": "Have recompiles in '--incremental' and '--watch' assume that changes within a file will only affect files directly depending on it.", - "category": "message", - "documentation": "" -} diff --git a/db/6385.json b/db/6385.json deleted file mode 100644 index 2ae5c40..0000000 --- a/db/6385.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6385, - "codeText": "TS6385", - "title": "'{0}' is deprecated.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/6386.json b/db/6386.json deleted file mode 100644 index a79ec7f..0000000 --- a/db/6386.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6386, - "codeText": "TS6386", - "title": "Performance timings for '--diagnostics' or '--extendedDiagnostics' are not available in this session. A native implementation of the Web Performance API could not be found.", - "category": "message", - "documentation": "" -} diff --git a/db/6387.json b/db/6387.json deleted file mode 100644 index bcf9e5c..0000000 --- a/db/6387.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6387, - "codeText": "TS6387", - "title": "The signature '{0}' of '{1}' is deprecated.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/6388.json b/db/6388.json deleted file mode 100644 index 3244ac9..0000000 --- a/db/6388.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6388, - "codeText": "TS6388", - "title": "Project '{0}' is being forcibly rebuilt", - "category": "message", - "documentation": "" -} diff --git a/db/6389.json b/db/6389.json deleted file mode 100644 index 59e52d7..0000000 --- a/db/6389.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6389, - "codeText": "TS6389", - "title": "Reusing resolution of module '{0}' from '{1}' of old program, it was not resolved.", - "category": "message", - "documentation": "" -} diff --git a/db/6390.json b/db/6390.json deleted file mode 100644 index 393bf6e..0000000 --- a/db/6390.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6390, - "codeText": "TS6390", - "title": "Reusing resolution of type reference directive '{0}' from '{1}' of old program, it was successfully resolved to '{2}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6391.json b/db/6391.json deleted file mode 100644 index 07c35f4..0000000 --- a/db/6391.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6391, - "codeText": "TS6391", - "title": "Reusing resolution of type reference directive '{0}' from '{1}' of old program, it was successfully resolved to '{2}' with Package ID '{3}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6392.json b/db/6392.json deleted file mode 100644 index d8fab35..0000000 --- a/db/6392.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6392, - "codeText": "TS6392", - "title": "Reusing resolution of type reference directive '{0}' from '{1}' of old program, it was not resolved.", - "category": "message", - "documentation": "" -} diff --git a/db/6393.json b/db/6393.json deleted file mode 100644 index 3b8b066..0000000 --- a/db/6393.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6393, - "codeText": "TS6393", - "title": "Reusing resolution of module '{0}' from '{1}' found in cache from location '{2}', it was successfully resolved to '{3}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6394.json b/db/6394.json deleted file mode 100644 index 576bf31..0000000 --- a/db/6394.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6394, - "codeText": "TS6394", - "title": "Reusing resolution of module '{0}' from '{1}' found in cache from location '{2}', it was successfully resolved to '{3}' with Package ID '{4}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6395.json b/db/6395.json deleted file mode 100644 index f0799f6..0000000 --- a/db/6395.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6395, - "codeText": "TS6395", - "title": "Reusing resolution of module '{0}' from '{1}' found in cache from location '{2}', it was not resolved.", - "category": "message", - "documentation": "" -} diff --git a/db/6396.json b/db/6396.json deleted file mode 100644 index 6a502ea..0000000 --- a/db/6396.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6396, - "codeText": "TS6396", - "title": "Reusing resolution of type reference directive '{0}' from '{1}' found in cache from location '{2}', it was successfully resolved to '{3}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6397.json b/db/6397.json deleted file mode 100644 index 4804023..0000000 --- a/db/6397.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6397, - "codeText": "TS6397", - "title": "Reusing resolution of type reference directive '{0}' from '{1}' found in cache from location '{2}', it was successfully resolved to '{3}' with Package ID '{4}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6398.json b/db/6398.json deleted file mode 100644 index 050406f..0000000 --- a/db/6398.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6398, - "codeText": "TS6398", - "title": "Reusing resolution of type reference directive '{0}' from '{1}' found in cache from location '{2}', it was not resolved.", - "category": "message", - "documentation": "" -} diff --git a/db/6399.json b/db/6399.json deleted file mode 100644 index a68c6b0..0000000 --- a/db/6399.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6399, - "codeText": "TS6399", - "title": "Project '{0}' is out of date because buildinfo file '{1}' indicates that some of the changes were not emitted", - "category": "message", - "documentation": "" -} diff --git a/db/6400.json b/db/6400.json deleted file mode 100644 index 5caf232..0000000 --- a/db/6400.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6400, - "codeText": "TS6400", - "title": "Project '{0}' is up to date but needs to update timestamps of output files that are older than input files", - "category": "message", - "documentation": "" -} diff --git a/db/6401.json b/db/6401.json deleted file mode 100644 index 329f932..0000000 --- a/db/6401.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6401, - "codeText": "TS6401", - "title": "Project '{0}' is out of date because there was error reading file '{1}'", - "category": "message", - "documentation": "" -} diff --git a/db/6402.json b/db/6402.json deleted file mode 100644 index 86dde77..0000000 --- a/db/6402.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6402, - "codeText": "TS6402", - "title": "Resolving in {0} mode with conditions {1}.", - "category": "message", - "documentation": "" -} diff --git a/db/6403.json b/db/6403.json deleted file mode 100644 index ef3337f..0000000 --- a/db/6403.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6403, - "codeText": "TS6403", - "title": "Matched '{0}' condition '{1}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6404.json b/db/6404.json deleted file mode 100644 index ed3ce4a..0000000 --- a/db/6404.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6404, - "codeText": "TS6404", - "title": "Using '{0}' subpath '{1}' with target '{2}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6405.json b/db/6405.json deleted file mode 100644 index 9b9d0ca..0000000 --- a/db/6405.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6405, - "codeText": "TS6405", - "title": "Saw non-matching condition '{0}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6406.json b/db/6406.json deleted file mode 100644 index a34e873..0000000 --- a/db/6406.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6406, - "codeText": "TS6406", - "title": "Project '{0}' is out of date because buildinfo file '{1}' indicates there is change in compilerOptions", - "category": "message", - "documentation": "" -} diff --git a/db/6407.json b/db/6407.json deleted file mode 100644 index b85bb5f..0000000 --- a/db/6407.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6407, - "codeText": "TS6407", - "title": "Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set.", - "category": "message", - "documentation": "" -} diff --git a/db/6408.json b/db/6408.json deleted file mode 100644 index 27cded6..0000000 --- a/db/6408.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6408, - "codeText": "TS6408", - "title": "Use the package.json 'exports' field when resolving package imports.", - "category": "message", - "documentation": "" -} diff --git a/db/6409.json b/db/6409.json deleted file mode 100644 index 248c4e9..0000000 --- a/db/6409.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6409, - "codeText": "TS6409", - "title": "Use the package.json 'imports' field when resolving imports.", - "category": "message", - "documentation": "" -} diff --git a/db/6410.json b/db/6410.json deleted file mode 100644 index 75b3bb0..0000000 --- a/db/6410.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6410, - "codeText": "TS6410", - "title": "Conditions to set in addition to the resolver-specific defaults when resolving imports.", - "category": "message", - "documentation": "" -} diff --git a/db/6411.json b/db/6411.json deleted file mode 100644 index c82022e..0000000 --- a/db/6411.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6411, - "codeText": "TS6411", - "title": "`true` when 'moduleResolution' is 'node16', 'nodenext', or 'bundler'; otherwise `false`.", - "category": "message", - "documentation": "" -} diff --git a/db/6412.json b/db/6412.json deleted file mode 100644 index 3f336f7..0000000 --- a/db/6412.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6412, - "codeText": "TS6412", - "title": "Project '{0}' is out of date because buildinfo file '{1}' indicates that file '{2}' was root file of compilation but not any more.", - "category": "message", - "documentation": "" -} diff --git a/db/6413.json b/db/6413.json deleted file mode 100644 index 2e013f9..0000000 --- a/db/6413.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6413, - "codeText": "TS6413", - "title": "Entering conditional exports.", - "category": "message", - "documentation": "" -} diff --git a/db/6414.json b/db/6414.json deleted file mode 100644 index e6c28d1..0000000 --- a/db/6414.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6414, - "codeText": "TS6414", - "title": "Resolved under condition '{0}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6415.json b/db/6415.json deleted file mode 100644 index 7f15ae2..0000000 --- a/db/6415.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6415, - "codeText": "TS6415", - "title": "Failed to resolve under condition '{0}'.", - "category": "message", - "documentation": "" -} diff --git a/db/6416.json b/db/6416.json deleted file mode 100644 index 53d54c5..0000000 --- a/db/6416.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6416, - "codeText": "TS6416", - "title": "Exiting conditional exports.", - "category": "message", - "documentation": "" -} diff --git a/db/6417.json b/db/6417.json deleted file mode 100644 index b1182c2..0000000 --- a/db/6417.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6417, - "codeText": "TS6417", - "title": "Searching all ancestor node_modules directories for preferred extensions: {0}.", - "category": "message", - "documentation": "" -} diff --git a/db/6418.json b/db/6418.json deleted file mode 100644 index f9b0182..0000000 --- a/db/6418.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6418, - "codeText": "TS6418", - "title": "Searching all ancestor node_modules directories for fallback extensions: {0}.", - "category": "message", - "documentation": "" -} diff --git a/db/6500.json b/db/6500.json deleted file mode 100644 index db7bd3b..0000000 --- a/db/6500.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6500, - "codeText": "TS6500", - "title": "The expected type comes from property '{0}' which is declared here on type '{1}'", - "category": "message", - "documentation": "" -} diff --git a/db/6501.json b/db/6501.json deleted file mode 100644 index f653d56..0000000 --- a/db/6501.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6501, - "codeText": "TS6501", - "title": "The expected type comes from this index signature.", - "category": "message", - "documentation": "" -} diff --git a/db/6502.json b/db/6502.json deleted file mode 100644 index c51f614..0000000 --- a/db/6502.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6502, - "codeText": "TS6502", - "title": "The expected type comes from the return type of this signature.", - "category": "message", - "documentation": "" -} diff --git a/db/6503.json b/db/6503.json deleted file mode 100644 index a7f30d6..0000000 --- a/db/6503.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6503, - "codeText": "TS6503", - "title": "Print names of files that are part of the compilation and then stop processing.", - "category": "message", - "documentation": "" -} diff --git a/db/6504.json b/db/6504.json deleted file mode 100644 index 78f61e7..0000000 --- a/db/6504.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6504, - "codeText": "TS6504", - "title": "File '{0}' is a JavaScript file. Did you mean to enable the 'allowJs' option?", - "category": "error", - "documentation": "" -} diff --git a/db/6505.json b/db/6505.json deleted file mode 100644 index 6ba0363..0000000 --- a/db/6505.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6505, - "codeText": "TS6505", - "title": "Print names of files and the reason they are part of the compilation.", - "category": "message", - "documentation": "" -} diff --git a/db/6506.json b/db/6506.json deleted file mode 100644 index 0c179a1..0000000 --- a/db/6506.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6506, - "codeText": "TS6506", - "title": "Consider adding a 'declare' modifier to this class.", - "category": "message", - "documentation": "" -} diff --git a/db/6600.json b/db/6600.json deleted file mode 100644 index 69a2a53..0000000 --- a/db/6600.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6600, - "codeText": "TS6600", - "title": "Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files.", - "category": "message", - "documentation": "" -} diff --git a/db/6601.json b/db/6601.json deleted file mode 100644 index 273d730..0000000 --- a/db/6601.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6601, - "codeText": "TS6601", - "title": "Allow 'import x from y' when a module doesn't have a default export.", - "category": "message", - "documentation": "" -} diff --git a/db/6602.json b/db/6602.json deleted file mode 100644 index c8f1ef9..0000000 --- a/db/6602.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6602, - "codeText": "TS6602", - "title": "Allow accessing UMD globals from modules.", - "category": "message", - "documentation": "" -} diff --git a/db/6603.json b/db/6603.json deleted file mode 100644 index ebaf20c..0000000 --- a/db/6603.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6603, - "codeText": "TS6603", - "title": "Disable error reporting for unreachable code.", - "category": "message", - "documentation": "" -} diff --git a/db/6604.json b/db/6604.json deleted file mode 100644 index dc66f37..0000000 --- a/db/6604.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6604, - "codeText": "TS6604", - "title": "Disable error reporting for unused labels.", - "category": "message", - "documentation": "" -} diff --git a/db/6605.json b/db/6605.json deleted file mode 100644 index 9be8a00..0000000 --- a/db/6605.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6605, - "codeText": "TS6605", - "title": "Ensure 'use strict' is always emitted.", - "category": "message", - "documentation": "" -} diff --git a/db/6606.json b/db/6606.json deleted file mode 100644 index 34bdc1c..0000000 --- a/db/6606.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6606, - "codeText": "TS6606", - "title": "Have recompiles in projects that use 'incremental' and 'watch' mode assume that changes within a file will only affect files directly depending on it.", - "category": "message", - "documentation": "" -} diff --git a/db/6607.json b/db/6607.json deleted file mode 100644 index 7e4cf24..0000000 --- a/db/6607.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6607, - "codeText": "TS6607", - "title": "Specify the base directory to resolve non-relative module names.", - "category": "message", - "documentation": "" -} diff --git a/db/6608.json b/db/6608.json deleted file mode 100644 index f4ded13..0000000 --- a/db/6608.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6608, - "codeText": "TS6608", - "title": "No longer supported. In early versions, manually set the text encoding for reading files.", - "category": "message", - "documentation": "" -} diff --git a/db/6609.json b/db/6609.json deleted file mode 100644 index 5b90093..0000000 --- a/db/6609.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6609, - "codeText": "TS6609", - "title": "Enable error reporting in type-checked JavaScript files.", - "category": "message", - "documentation": "" -} diff --git a/db/6611.json b/db/6611.json deleted file mode 100644 index 0c6238d..0000000 --- a/db/6611.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6611, - "codeText": "TS6611", - "title": "Enable constraints that allow a TypeScript project to be used with project references.", - "category": "message", - "documentation": "" -} diff --git a/db/6612.json b/db/6612.json deleted file mode 100644 index 655a383..0000000 --- a/db/6612.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6612, - "codeText": "TS6612", - "title": "Generate .d.ts files from TypeScript and JavaScript files in your project.", - "category": "message", - "documentation": "" -} diff --git a/db/6613.json b/db/6613.json deleted file mode 100644 index fd1bac4..0000000 --- a/db/6613.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6613, - "codeText": "TS6613", - "title": "Specify the output directory for generated declaration files.", - "category": "message", - "documentation": "" -} diff --git a/db/6614.json b/db/6614.json deleted file mode 100644 index 44df591..0000000 --- a/db/6614.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6614, - "codeText": "TS6614", - "title": "Create sourcemaps for d.ts files.", - "category": "message", - "documentation": "" -} diff --git a/db/6615.json b/db/6615.json deleted file mode 100644 index 2edeb2d..0000000 --- a/db/6615.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6615, - "codeText": "TS6615", - "title": "Output compiler performance information after building.", - "category": "message", - "documentation": "" -} diff --git a/db/6616.json b/db/6616.json deleted file mode 100644 index e783a1f..0000000 --- a/db/6616.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6616, - "codeText": "TS6616", - "title": "Disables inference for type acquisition by looking at filenames in a project.", - "category": "message", - "documentation": "" -} diff --git a/db/6617.json b/db/6617.json deleted file mode 100644 index ee7a587..0000000 --- a/db/6617.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6617, - "codeText": "TS6617", - "title": "Reduce the number of projects loaded automatically by TypeScript.", - "category": "message", - "documentation": "" -} diff --git a/db/6618.json b/db/6618.json deleted file mode 100644 index e71713c..0000000 --- a/db/6618.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6618, - "codeText": "TS6618", - "title": "Remove the 20mb cap on total source code size for JavaScript files in the TypeScript language server.", - "category": "message", - "documentation": "" -} diff --git a/db/6619.json b/db/6619.json deleted file mode 100644 index 6c4c76c..0000000 --- a/db/6619.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6619, - "codeText": "TS6619", - "title": "Opt a project out of multi-project reference checking when editing.", - "category": "message", - "documentation": "" -} diff --git a/db/6620.json b/db/6620.json deleted file mode 100644 index 7a2a8b6..0000000 --- a/db/6620.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6620, - "codeText": "TS6620", - "title": "Disable preferring source files instead of declaration files when referencing composite projects.", - "category": "message", - "documentation": "" -} diff --git a/db/6621.json b/db/6621.json deleted file mode 100644 index ada85db..0000000 --- a/db/6621.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6621, - "codeText": "TS6621", - "title": "Emit more compliant, but verbose and less performant JavaScript for iteration.", - "category": "message", - "documentation": "" -} diff --git a/db/6622.json b/db/6622.json deleted file mode 100644 index 61d9cbe..0000000 --- a/db/6622.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6622, - "codeText": "TS6622", - "title": "Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files.", - "category": "message", - "documentation": "" -} diff --git a/db/6623.json b/db/6623.json deleted file mode 100644 index cdfee8c..0000000 --- a/db/6623.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6623, - "codeText": "TS6623", - "title": "Only output d.ts files and not JavaScript files.", - "category": "message", - "documentation": "" -} diff --git a/db/6624.json b/db/6624.json deleted file mode 100644 index e95e8ad..0000000 --- a/db/6624.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6624, - "codeText": "TS6624", - "title": "Emit design-type metadata for decorated declarations in source files.", - "category": "message", - "documentation": "" -} diff --git a/db/6625.json b/db/6625.json deleted file mode 100644 index 90d5d8b..0000000 --- a/db/6625.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6625, - "codeText": "TS6625", - "title": "Disable the type acquisition for JavaScript projects", - "category": "message", - "documentation": "" -} diff --git a/db/6626.json b/db/6626.json deleted file mode 100644 index 87f86bb..0000000 --- a/db/6626.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6626, - "codeText": "TS6626", - "title": "Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility.", - "category": "message", - "documentation": "" -} diff --git a/db/6627.json b/db/6627.json deleted file mode 100644 index e4bf653..0000000 --- a/db/6627.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6627, - "codeText": "TS6627", - "title": "Filters results from the `include` option.", - "category": "message", - "documentation": "" -} diff --git a/db/6628.json b/db/6628.json deleted file mode 100644 index 37027e9..0000000 --- a/db/6628.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6628, - "codeText": "TS6628", - "title": "Remove a list of directories from the watch process.", - "category": "message", - "documentation": "" -} diff --git a/db/6629.json b/db/6629.json deleted file mode 100644 index 5a7497c..0000000 --- a/db/6629.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6629, - "codeText": "TS6629", - "title": "Remove a list of files from the watch mode's processing.", - "category": "message", - "documentation": "" -} diff --git a/db/6630.json b/db/6630.json deleted file mode 100644 index 751a342..0000000 --- a/db/6630.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6630, - "codeText": "TS6630", - "title": "Enable experimental support for TC39 stage 2 draft decorators.", - "category": "message", - "documentation": "" -} diff --git a/db/6631.json b/db/6631.json deleted file mode 100644 index be6eb87..0000000 --- a/db/6631.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6631, - "codeText": "TS6631", - "title": "Print files read during the compilation including why it was included.", - "category": "message", - "documentation": "" -} diff --git a/db/6632.json b/db/6632.json deleted file mode 100644 index 0151d58..0000000 --- a/db/6632.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6632, - "codeText": "TS6632", - "title": "Output more detailed compiler performance information after building.", - "category": "message", - "documentation": "" -} diff --git a/db/6633.json b/db/6633.json deleted file mode 100644 index a2423a9..0000000 --- a/db/6633.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6633, - "codeText": "TS6633", - "title": "Specify one or more path or node module references to base configuration files from which settings are inherited.", - "category": "message", - "documentation": "" -} diff --git a/db/6634.json b/db/6634.json deleted file mode 100644 index 8058d12..0000000 --- a/db/6634.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6634, - "codeText": "TS6634", - "title": "Specify what approach the watcher should use if the system runs out of native file watchers.", - "category": "message", - "documentation": "" -} diff --git a/db/6635.json b/db/6635.json deleted file mode 100644 index f7a9303..0000000 --- a/db/6635.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6635, - "codeText": "TS6635", - "title": "Include a list of files. This does not support glob patterns, as opposed to `include`.", - "category": "message", - "documentation": "" -} diff --git a/db/6636.json b/db/6636.json deleted file mode 100644 index ac48745..0000000 --- a/db/6636.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6636, - "codeText": "TS6636", - "title": "Build all projects, including those that appear to be up to date.", - "category": "message", - "documentation": "" -} diff --git a/db/6637.json b/db/6637.json deleted file mode 100644 index 3855b60..0000000 --- a/db/6637.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6637, - "codeText": "TS6637", - "title": "Ensure that casing is correct in imports.", - "category": "message", - "documentation": "" -} diff --git a/db/6638.json b/db/6638.json deleted file mode 100644 index de12835..0000000 --- a/db/6638.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6638, - "codeText": "TS6638", - "title": "Emit a v8 CPU profile of the compiler run for debugging.", - "category": "message", - "documentation": "" -} diff --git a/db/6639.json b/db/6639.json deleted file mode 100644 index ecc7872..0000000 --- a/db/6639.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6639, - "codeText": "TS6639", - "title": "Allow importing helper functions from tslib once per project, instead of including them per-file.", - "category": "message", - "documentation": "" -} diff --git a/db/6641.json b/db/6641.json deleted file mode 100644 index d29bb83..0000000 --- a/db/6641.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6641, - "codeText": "TS6641", - "title": "Specify a list of glob patterns that match files to be included in compilation.", - "category": "message", - "documentation": "" -} diff --git a/db/6642.json b/db/6642.json deleted file mode 100644 index 7e7d6b3..0000000 --- a/db/6642.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6642, - "codeText": "TS6642", - "title": "Save .tsbuildinfo files to allow for incremental compilation of projects.", - "category": "message", - "documentation": "" -} diff --git a/db/6643.json b/db/6643.json deleted file mode 100644 index bf5cc10..0000000 --- a/db/6643.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6643, - "codeText": "TS6643", - "title": "Include sourcemap files inside the emitted JavaScript.", - "category": "message", - "documentation": "" -} diff --git a/db/6644.json b/db/6644.json deleted file mode 100644 index 99dced3..0000000 --- a/db/6644.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6644, - "codeText": "TS6644", - "title": "Include source code in the sourcemaps inside the emitted JavaScript.", - "category": "message", - "documentation": "" -} diff --git a/db/6645.json b/db/6645.json deleted file mode 100644 index 94a4103..0000000 --- a/db/6645.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6645, - "codeText": "TS6645", - "title": "Ensure that each file can be safely transpiled without relying on other imports.", - "category": "message", - "documentation": "" -} diff --git a/db/6646.json b/db/6646.json deleted file mode 100644 index 74cd66c..0000000 --- a/db/6646.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6646, - "codeText": "TS6646", - "title": "Specify what JSX code is generated.", - "category": "message", - "documentation": "" -} diff --git a/db/6647.json b/db/6647.json deleted file mode 100644 index 661a533..0000000 --- a/db/6647.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6647, - "codeText": "TS6647", - "title": "Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'.", - "category": "message", - "documentation": "" -} diff --git a/db/6648.json b/db/6648.json deleted file mode 100644 index d57f657..0000000 --- a/db/6648.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6648, - "codeText": "TS6648", - "title": "Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'.", - "category": "message", - "documentation": "" -} diff --git a/db/6649.json b/db/6649.json deleted file mode 100644 index e9fdcbf..0000000 --- a/db/6649.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6649, - "codeText": "TS6649", - "title": "Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'.", - "category": "message", - "documentation": "" -} diff --git a/db/6650.json b/db/6650.json deleted file mode 100644 index 08ec722..0000000 --- a/db/6650.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6650, - "codeText": "TS6650", - "title": "Make keyof only return strings instead of string, numbers or symbols. Legacy option.", - "category": "message", - "documentation": "" -} diff --git a/db/6651.json b/db/6651.json deleted file mode 100644 index ec823b7..0000000 --- a/db/6651.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6651, - "codeText": "TS6651", - "title": "Specify a set of bundled library declaration files that describe the target runtime environment.", - "category": "message", - "documentation": "" -} diff --git a/db/6652.json b/db/6652.json deleted file mode 100644 index eb7913c..0000000 --- a/db/6652.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6652, - "codeText": "TS6652", - "title": "Print the names of emitted files after a compilation.", - "category": "message", - "documentation": "" -} diff --git a/db/6653.json b/db/6653.json deleted file mode 100644 index 123e9a7..0000000 --- a/db/6653.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6653, - "codeText": "TS6653", - "title": "Print all of the files read during the compilation.", - "category": "message", - "documentation": "" -} diff --git a/db/6654.json b/db/6654.json deleted file mode 100644 index 3b88c28..0000000 --- a/db/6654.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6654, - "codeText": "TS6654", - "title": "Set the language of the messaging from TypeScript. This does not affect emit.", - "category": "message", - "documentation": "" -} diff --git a/db/6655.json b/db/6655.json deleted file mode 100644 index 9d29bcd..0000000 --- a/db/6655.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6655, - "codeText": "TS6655", - "title": "Specify the location where debugger should locate map files instead of generated locations.", - "category": "message", - "documentation": "" -} diff --git a/db/6656.json b/db/6656.json deleted file mode 100644 index 7a450c9..0000000 --- a/db/6656.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6656, - "codeText": "TS6656", - "title": "Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'.", - "category": "message", - "documentation": "" -} diff --git a/db/6657.json b/db/6657.json deleted file mode 100644 index 42bda05..0000000 --- a/db/6657.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6657, - "codeText": "TS6657", - "title": "Specify what module code is generated.", - "category": "message", - "documentation": "" -} diff --git a/db/6658.json b/db/6658.json deleted file mode 100644 index fb746a3..0000000 --- a/db/6658.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6658, - "codeText": "TS6658", - "title": "Specify how TypeScript looks up a file from a given module specifier.", - "category": "message", - "documentation": "" -} diff --git a/db/6659.json b/db/6659.json deleted file mode 100644 index 3dc2eb7..0000000 --- a/db/6659.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6659, - "codeText": "TS6659", - "title": "Set the newline character for emitting files.", - "category": "message", - "documentation": "" -} diff --git a/db/6660.json b/db/6660.json deleted file mode 100644 index 614372d..0000000 --- a/db/6660.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6660, - "codeText": "TS6660", - "title": "Disable emitting files from a compilation.", - "category": "message", - "documentation": "" -} diff --git a/db/6661.json b/db/6661.json deleted file mode 100644 index 0408489..0000000 --- a/db/6661.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6661, - "codeText": "TS6661", - "title": "Disable generating custom helper functions like '__extends' in compiled output.", - "category": "message", - "documentation": "" -} diff --git a/db/6662.json b/db/6662.json deleted file mode 100644 index deba881..0000000 --- a/db/6662.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6662, - "codeText": "TS6662", - "title": "Disable emitting files if any type checking errors are reported.", - "category": "message", - "documentation": "" -} diff --git a/db/6663.json b/db/6663.json deleted file mode 100644 index 14a7e48..0000000 --- a/db/6663.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6663, - "codeText": "TS6663", - "title": "Disable truncating types in error messages.", - "category": "message", - "documentation": "" -} diff --git a/db/6664.json b/db/6664.json deleted file mode 100644 index e76a362..0000000 --- a/db/6664.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6664, - "codeText": "TS6664", - "title": "Enable error reporting for fallthrough cases in switch statements.", - "category": "message", - "documentation": "" -} diff --git a/db/6665.json b/db/6665.json deleted file mode 100644 index 2086f24..0000000 --- a/db/6665.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6665, - "codeText": "TS6665", - "title": "Enable error reporting for expressions and declarations with an implied 'any' type.", - "category": "message", - "documentation": "" -} diff --git a/db/6666.json b/db/6666.json deleted file mode 100644 index 75d0e2b..0000000 --- a/db/6666.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6666, - "codeText": "TS6666", - "title": "Ensure overriding members in derived classes are marked with an override modifier.", - "category": "message", - "documentation": "" -} diff --git a/db/6667.json b/db/6667.json deleted file mode 100644 index 642ebb3..0000000 --- a/db/6667.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6667, - "codeText": "TS6667", - "title": "Enable error reporting for codepaths that do not explicitly return in a function.", - "category": "message", - "documentation": "" -} diff --git a/db/6668.json b/db/6668.json deleted file mode 100644 index ac03acf..0000000 --- a/db/6668.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6668, - "codeText": "TS6668", - "title": "Enable error reporting when 'this' is given the type 'any'.", - "category": "message", - "documentation": "" -} diff --git a/db/6669.json b/db/6669.json deleted file mode 100644 index 59356a4..0000000 --- a/db/6669.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6669, - "codeText": "TS6669", - "title": "Disable adding 'use strict' directives in emitted JavaScript files.", - "category": "message", - "documentation": "" -} diff --git a/db/6670.json b/db/6670.json deleted file mode 100644 index 38945dc..0000000 --- a/db/6670.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6670, - "codeText": "TS6670", - "title": "Disable including any library files, including the default lib.d.ts.", - "category": "message", - "documentation": "" -} diff --git a/db/6671.json b/db/6671.json deleted file mode 100644 index 26729be..0000000 --- a/db/6671.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6671, - "codeText": "TS6671", - "title": "Enforces using indexed accessors for keys declared using an indexed type.", - "category": "message", - "documentation": "" -} diff --git a/db/6672.json b/db/6672.json deleted file mode 100644 index 55c1f69..0000000 --- a/db/6672.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6672, - "codeText": "TS6672", - "title": "Disallow 'import's, 'require's or ''s from expanding the number of files TypeScript should add to a project.", - "category": "message", - "documentation": "" -} diff --git a/db/6673.json b/db/6673.json deleted file mode 100644 index 78101fb..0000000 --- a/db/6673.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6673, - "codeText": "TS6673", - "title": "Disable strict checking of generic signatures in function types.", - "category": "message", - "documentation": "" -} diff --git a/db/6674.json b/db/6674.json deleted file mode 100644 index 8d571d1..0000000 --- a/db/6674.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6674, - "codeText": "TS6674", - "title": "Add 'undefined' to a type when accessed using an index.", - "category": "message", - "documentation": "" -} diff --git a/db/6675.json b/db/6675.json deleted file mode 100644 index eea521f..0000000 --- a/db/6675.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6675, - "codeText": "TS6675", - "title": "Enable error reporting when local variables aren't read.", - "category": "message", - "documentation": "" -} diff --git a/db/6676.json b/db/6676.json deleted file mode 100644 index 46061f6..0000000 --- a/db/6676.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6676, - "codeText": "TS6676", - "title": "Raise an error when a function parameter isn't read.", - "category": "message", - "documentation": "" -} diff --git a/db/6677.json b/db/6677.json deleted file mode 100644 index 4255f26..0000000 --- a/db/6677.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6677, - "codeText": "TS6677", - "title": "Deprecated setting. Use 'outFile' instead.", - "category": "message", - "documentation": "" -} diff --git a/db/6678.json b/db/6678.json deleted file mode 100644 index bba1a54..0000000 --- a/db/6678.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6678, - "codeText": "TS6678", - "title": "Specify an output folder for all emitted files.", - "category": "message", - "documentation": "" -} diff --git a/db/6679.json b/db/6679.json deleted file mode 100644 index 3478a47..0000000 --- a/db/6679.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6679, - "codeText": "TS6679", - "title": "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.", - "category": "message", - "documentation": "" -} diff --git a/db/6680.json b/db/6680.json deleted file mode 100644 index 5124991..0000000 --- a/db/6680.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6680, - "codeText": "TS6680", - "title": "Specify a set of entries that re-map imports to additional lookup locations.", - "category": "message", - "documentation": "" -} diff --git a/db/6681.json b/db/6681.json deleted file mode 100644 index 0e167ec..0000000 --- a/db/6681.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6681, - "codeText": "TS6681", - "title": "Specify a list of language service plugins to include.", - "category": "message", - "documentation": "" -} diff --git a/db/6682.json b/db/6682.json deleted file mode 100644 index 282238e..0000000 --- a/db/6682.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6682, - "codeText": "TS6682", - "title": "Disable erasing 'const enum' declarations in generated code.", - "category": "message", - "documentation": "" -} diff --git a/db/6683.json b/db/6683.json deleted file mode 100644 index 6e8c4ca..0000000 --- a/db/6683.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6683, - "codeText": "TS6683", - "title": "Disable resolving symlinks to their realpath. This correlates to the same flag in node.", - "category": "message", - "documentation": "" -} diff --git a/db/6684.json b/db/6684.json deleted file mode 100644 index 70ca45f..0000000 --- a/db/6684.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6684, - "codeText": "TS6684", - "title": "Disable wiping the console in watch mode.", - "category": "message", - "documentation": "" -} diff --git a/db/6685.json b/db/6685.json deleted file mode 100644 index 3bdef2f..0000000 --- a/db/6685.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6685, - "codeText": "TS6685", - "title": "Enable color and formatting in TypeScript's output to make compiler errors easier to read.", - "category": "message", - "documentation": "" -} diff --git a/db/6686.json b/db/6686.json deleted file mode 100644 index 8c6dc7e..0000000 --- a/db/6686.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6686, - "codeText": "TS6686", - "title": "Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit.", - "category": "message", - "documentation": "" -} diff --git a/db/6687.json b/db/6687.json deleted file mode 100644 index df04f75..0000000 --- a/db/6687.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6687, - "codeText": "TS6687", - "title": "Specify an array of objects that specify paths for projects. Used in project references.", - "category": "message", - "documentation": "" -} diff --git a/db/6688.json b/db/6688.json deleted file mode 100644 index 60c3203..0000000 --- a/db/6688.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6688, - "codeText": "TS6688", - "title": "Disable emitting comments.", - "category": "message", - "documentation": "" -} diff --git a/db/6689.json b/db/6689.json deleted file mode 100644 index a6f9760..0000000 --- a/db/6689.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6689, - "codeText": "TS6689", - "title": "Enable importing .json files.", - "category": "message", - "documentation": "" -} diff --git a/db/6690.json b/db/6690.json deleted file mode 100644 index 30677c9..0000000 --- a/db/6690.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6690, - "codeText": "TS6690", - "title": "Specify the root folder within your source files.", - "category": "message", - "documentation": "" -} diff --git a/db/6691.json b/db/6691.json deleted file mode 100644 index 035bb7f..0000000 --- a/db/6691.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6691, - "codeText": "TS6691", - "title": "Allow multiple folders to be treated as one when resolving modules.", - "category": "message", - "documentation": "" -} diff --git a/db/6692.json b/db/6692.json deleted file mode 100644 index 1e0131f..0000000 --- a/db/6692.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6692, - "codeText": "TS6692", - "title": "Skip type checking .d.ts files that are included with TypeScript.", - "category": "message", - "documentation": "" -} diff --git a/db/6693.json b/db/6693.json deleted file mode 100644 index 46f8348..0000000 --- a/db/6693.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6693, - "codeText": "TS6693", - "title": "Skip type checking all .d.ts files.", - "category": "message", - "documentation": "" -} diff --git a/db/6694.json b/db/6694.json deleted file mode 100644 index 33383b1..0000000 --- a/db/6694.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6694, - "codeText": "TS6694", - "title": "Create source map files for emitted JavaScript files.", - "category": "message", - "documentation": "" -} diff --git a/db/6695.json b/db/6695.json deleted file mode 100644 index a960a8c..0000000 --- a/db/6695.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6695, - "codeText": "TS6695", - "title": "Specify the root path for debuggers to find the reference source code.", - "category": "message", - "documentation": "" -} diff --git a/db/6697.json b/db/6697.json deleted file mode 100644 index ce8c497..0000000 --- a/db/6697.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6697, - "codeText": "TS6697", - "title": "Check that the arguments for 'bind', 'call', and 'apply' methods match the original function.", - "category": "message", - "documentation": "" -} diff --git a/db/6698.json b/db/6698.json deleted file mode 100644 index e00bde6..0000000 --- a/db/6698.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6698, - "codeText": "TS6698", - "title": "When assigning functions, check to ensure parameters and the return values are subtype-compatible.", - "category": "message", - "documentation": "" -} diff --git a/db/6699.json b/db/6699.json deleted file mode 100644 index cef3949..0000000 --- a/db/6699.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6699, - "codeText": "TS6699", - "title": "When type checking, take into account 'null' and 'undefined'.", - "category": "message", - "documentation": "" -} diff --git a/db/6700.json b/db/6700.json deleted file mode 100644 index d3ef85c..0000000 --- a/db/6700.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6700, - "codeText": "TS6700", - "title": "Check for class properties that are declared but not set in the constructor.", - "category": "message", - "documentation": "" -} diff --git a/db/6701.json b/db/6701.json deleted file mode 100644 index 91dda2e..0000000 --- a/db/6701.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6701, - "codeText": "TS6701", - "title": "Disable emitting declarations that have '@internal' in their JSDoc comments.", - "category": "message", - "documentation": "" -} diff --git a/db/6702.json b/db/6702.json deleted file mode 100644 index 39ab919..0000000 --- a/db/6702.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6702, - "codeText": "TS6702", - "title": "Disable reporting of excess property errors during the creation of object literals.", - "category": "message", - "documentation": "" -} diff --git a/db/6703.json b/db/6703.json deleted file mode 100644 index fa018f7..0000000 --- a/db/6703.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6703, - "codeText": "TS6703", - "title": "Suppress 'noImplicitAny' errors when indexing objects that lack index signatures.", - "category": "message", - "documentation": "" -} diff --git a/db/6704.json b/db/6704.json deleted file mode 100644 index 1c66fb1..0000000 --- a/db/6704.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6704, - "codeText": "TS6704", - "title": "Synchronously call callbacks and update the state of directory watchers on platforms that don`t support recursive watching natively.", - "category": "message", - "documentation": "" -} diff --git a/db/6705.json b/db/6705.json deleted file mode 100644 index 9221d29..0000000 --- a/db/6705.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6705, - "codeText": "TS6705", - "title": "Set the JavaScript language version for emitted JavaScript and include compatible library declarations.", - "category": "message", - "documentation": "" -} diff --git a/db/6706.json b/db/6706.json deleted file mode 100644 index 5115e58..0000000 --- a/db/6706.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6706, - "codeText": "TS6706", - "title": "Log paths used during the 'moduleResolution' process.", - "category": "message", - "documentation": "" -} diff --git a/db/6707.json b/db/6707.json deleted file mode 100644 index 5cbffc6..0000000 --- a/db/6707.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6707, - "codeText": "TS6707", - "title": "Specify the path to .tsbuildinfo incremental compilation file.", - "category": "message", - "documentation": "" -} diff --git a/db/6709.json b/db/6709.json deleted file mode 100644 index 1bdc385..0000000 --- a/db/6709.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6709, - "codeText": "TS6709", - "title": "Specify options for automatic acquisition of declaration files.", - "category": "message", - "documentation": "" -} diff --git a/db/6710.json b/db/6710.json deleted file mode 100644 index 2669e90..0000000 --- a/db/6710.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6710, - "codeText": "TS6710", - "title": "Specify multiple folders that act like './node_modules/@types'.", - "category": "message", - "documentation": "" -} diff --git a/db/6711.json b/db/6711.json deleted file mode 100644 index 5e5fee1..0000000 --- a/db/6711.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6711, - "codeText": "TS6711", - "title": "Specify type package names to be included without being referenced in a source file.", - "category": "message", - "documentation": "" -} diff --git a/db/6712.json b/db/6712.json deleted file mode 100644 index 75aa408..0000000 --- a/db/6712.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6712, - "codeText": "TS6712", - "title": "Emit ECMAScript-standard-compliant class fields.", - "category": "message", - "documentation": "" -} diff --git a/db/6713.json b/db/6713.json deleted file mode 100644 index f17a357..0000000 --- a/db/6713.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6713, - "codeText": "TS6713", - "title": "Enable verbose logging.", - "category": "message", - "documentation": "" -} diff --git a/db/6714.json b/db/6714.json deleted file mode 100644 index c6fc69f..0000000 --- a/db/6714.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6714, - "codeText": "TS6714", - "title": "Specify how directories are watched on systems that lack recursive file-watching functionality.", - "category": "message", - "documentation": "" -} diff --git a/db/6715.json b/db/6715.json deleted file mode 100644 index 3de2d2a..0000000 --- a/db/6715.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6715, - "codeText": "TS6715", - "title": "Specify how the TypeScript watch mode works.", - "category": "message", - "documentation": "" -} diff --git a/db/6717.json b/db/6717.json deleted file mode 100644 index 000ddf4..0000000 --- a/db/6717.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6717, - "codeText": "TS6717", - "title": "Require undeclared properties from index signatures to use element accesses.", - "category": "message", - "documentation": "" -} diff --git a/db/6718.json b/db/6718.json deleted file mode 100644 index be663c1..0000000 --- a/db/6718.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6718, - "codeText": "TS6718", - "title": "Specify emit/checking behavior for imports that are only used for types.", - "category": "message", - "documentation": "" -} diff --git a/db/6803.json b/db/6803.json deleted file mode 100644 index 72d5d88..0000000 --- a/db/6803.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6803, - "codeText": "TS6803", - "title": "Default catch clause variables as 'unknown' instead of 'any'.", - "category": "message", - "documentation": "" -} diff --git a/db/6804.json b/db/6804.json deleted file mode 100644 index ec4aa8a..0000000 --- a/db/6804.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6804, - "codeText": "TS6804", - "title": "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.", - "category": "message", - "documentation": "" -} diff --git a/db/6900.json b/db/6900.json deleted file mode 100644 index 0c44786..0000000 --- a/db/6900.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6900, - "codeText": "TS6900", - "title": "one of:", - "category": "message", - "documentation": "" -} diff --git a/db/6901.json b/db/6901.json deleted file mode 100644 index 91f3bc6..0000000 --- a/db/6901.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6901, - "codeText": "TS6901", - "title": "one or more:", - "category": "message", - "documentation": "" -} diff --git a/db/69010.json b/db/69010.json deleted file mode 100644 index 6ed7e06..0000000 --- a/db/69010.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 69010, - "codeText": "TS69010", - "title": "module === `AMD` or `UMD` or `System` or `ES6`, then `Classic`, Otherwise `Node`", - "category": "message", - "documentation": "" -} diff --git a/db/6902.json b/db/6902.json deleted file mode 100644 index 5c676f0..0000000 --- a/db/6902.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6902, - "codeText": "TS6902", - "title": "type:", - "category": "message", - "documentation": "" -} diff --git a/db/6903.json b/db/6903.json deleted file mode 100644 index ff5afbd..0000000 --- a/db/6903.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6903, - "codeText": "TS6903", - "title": "default:", - "category": "message", - "documentation": "" -} diff --git a/db/6904.json b/db/6904.json deleted file mode 100644 index 0ba9090..0000000 --- a/db/6904.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6904, - "codeText": "TS6904", - "title": "module === \"system\" or esModuleInterop", - "category": "message", - "documentation": "" -} diff --git a/db/6905.json b/db/6905.json deleted file mode 100644 index b9ae7e2..0000000 --- a/db/6905.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6905, - "codeText": "TS6905", - "title": "`false`, unless `strict` is set", - "category": "message", - "documentation": "" -} diff --git a/db/6906.json b/db/6906.json deleted file mode 100644 index 386d64e..0000000 --- a/db/6906.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6906, - "codeText": "TS6906", - "title": "`false`, unless `composite` is set", - "category": "message", - "documentation": "" -} diff --git a/db/6907.json b/db/6907.json deleted file mode 100644 index 7f85242..0000000 --- a/db/6907.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6907, - "codeText": "TS6907", - "title": "`[\"node_modules\", \"bower_components\", \"jspm_packages\"]`, plus the value of `outDir` if one is specified.", - "category": "message", - "documentation": "" -} diff --git a/db/6908.json b/db/6908.json deleted file mode 100644 index 56c9a47..0000000 --- a/db/6908.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6908, - "codeText": "TS6908", - "title": "`[]` if `files` is specified, otherwise `[\"**/*\"]`", - "category": "message", - "documentation": "" -} diff --git a/db/6909.json b/db/6909.json deleted file mode 100644 index 65c709e..0000000 --- a/db/6909.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6909, - "codeText": "TS6909", - "title": "`true` if `composite`, `false` otherwise", - "category": "message", - "documentation": "" -} diff --git a/db/6911.json b/db/6911.json deleted file mode 100644 index 772ae8d..0000000 --- a/db/6911.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6911, - "codeText": "TS6911", - "title": "Computed from the list of input files", - "category": "message", - "documentation": "" -} diff --git a/db/6912.json b/db/6912.json deleted file mode 100644 index a586d9b..0000000 --- a/db/6912.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6912, - "codeText": "TS6912", - "title": "Platform specific", - "category": "message", - "documentation": "" -} diff --git a/db/6913.json b/db/6913.json deleted file mode 100644 index 466565c..0000000 --- a/db/6913.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6913, - "codeText": "TS6913", - "title": "You can learn about all of the compiler options at {0}", - "category": "message", - "documentation": "" -} diff --git a/db/6914.json b/db/6914.json deleted file mode 100644 index 980d58c..0000000 --- a/db/6914.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6914, - "codeText": "TS6914", - "title": "Including --watch, -w will start watching the current project for the file changes. Once set, you can config watch mode with:", - "category": "message", - "documentation": "" -} diff --git a/db/6915.json b/db/6915.json deleted file mode 100644 index aeaf4be..0000000 --- a/db/6915.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6915, - "codeText": "TS6915", - "title": "Using --build, -b will make tsc behave more like a build orchestrator than a compiler. This is used to trigger building composite projects which you can learn more about at {0}", - "category": "message", - "documentation": "" -} diff --git a/db/6916.json b/db/6916.json deleted file mode 100644 index 139f764..0000000 --- a/db/6916.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6916, - "codeText": "TS6916", - "title": "COMMON COMMANDS", - "category": "message", - "documentation": "" -} diff --git a/db/6917.json b/db/6917.json deleted file mode 100644 index c7232b0..0000000 --- a/db/6917.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6917, - "codeText": "TS6917", - "title": "ALL COMPILER OPTIONS", - "category": "message", - "documentation": "" -} diff --git a/db/6918.json b/db/6918.json deleted file mode 100644 index e2ee39c..0000000 --- a/db/6918.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6918, - "codeText": "TS6918", - "title": "WATCH OPTIONS", - "category": "message", - "documentation": "" -} diff --git a/db/6919.json b/db/6919.json deleted file mode 100644 index ce9911d..0000000 --- a/db/6919.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6919, - "codeText": "TS6919", - "title": "BUILD OPTIONS", - "category": "message", - "documentation": "" -} diff --git a/db/6920.json b/db/6920.json deleted file mode 100644 index b64a286..0000000 --- a/db/6920.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6920, - "codeText": "TS6920", - "title": "COMMON COMPILER OPTIONS", - "category": "message", - "documentation": "" -} diff --git a/db/6921.json b/db/6921.json deleted file mode 100644 index 8048384..0000000 --- a/db/6921.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6921, - "codeText": "TS6921", - "title": "COMMAND LINE FLAGS", - "category": "message", - "documentation": "" -} diff --git a/db/6922.json b/db/6922.json deleted file mode 100644 index 12dd4ad..0000000 --- a/db/6922.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6922, - "codeText": "TS6922", - "title": "tsc: The TypeScript Compiler", - "category": "message", - "documentation": "" -} diff --git a/db/6923.json b/db/6923.json deleted file mode 100644 index b598ddf..0000000 --- a/db/6923.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6923, - "codeText": "TS6923", - "title": "Compiles the current project (tsconfig.json in the working directory.)", - "category": "message", - "documentation": "" -} diff --git a/db/6924.json b/db/6924.json deleted file mode 100644 index b65f1c9..0000000 --- a/db/6924.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6924, - "codeText": "TS6924", - "title": "Ignoring tsconfig.json, compiles the specified files with default compiler options.", - "category": "message", - "documentation": "" -} diff --git a/db/6925.json b/db/6925.json deleted file mode 100644 index c13eb0d..0000000 --- a/db/6925.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6925, - "codeText": "TS6925", - "title": "Build a composite project in the working directory.", - "category": "message", - "documentation": "" -} diff --git a/db/6926.json b/db/6926.json deleted file mode 100644 index fea7933..0000000 --- a/db/6926.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6926, - "codeText": "TS6926", - "title": "Creates a tsconfig.json with the recommended settings in the working directory.", - "category": "message", - "documentation": "" -} diff --git a/db/6927.json b/db/6927.json deleted file mode 100644 index c8f6222..0000000 --- a/db/6927.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6927, - "codeText": "TS6927", - "title": "Compiles the TypeScript project located at the specified path.", - "category": "message", - "documentation": "" -} diff --git a/db/6928.json b/db/6928.json deleted file mode 100644 index 6c7ff71..0000000 --- a/db/6928.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6928, - "codeText": "TS6928", - "title": "An expanded version of this information, showing all possible compiler options", - "category": "message", - "documentation": "" -} diff --git a/db/6929.json b/db/6929.json deleted file mode 100644 index 0d1081b..0000000 --- a/db/6929.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6929, - "codeText": "TS6929", - "title": "Compiles the current project, with additional settings.", - "category": "message", - "documentation": "" -} diff --git a/db/6930.json b/db/6930.json deleted file mode 100644 index acb6253..0000000 --- a/db/6930.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6930, - "codeText": "TS6930", - "title": "`true` for ES2022 and above, including ESNext.", - "category": "message", - "documentation": "" -} diff --git a/db/6931.json b/db/6931.json deleted file mode 100644 index 1a950ee..0000000 --- a/db/6931.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 6931, - "codeText": "TS6931", - "title": "List of file name suffixes to search when resolving a module.", - "category": "error", - "documentation": "" -} diff --git a/db/7005.json b/db/7005.json deleted file mode 100644 index bc85633..0000000 --- a/db/7005.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7005, - "codeText": "TS7005", - "title": "Variable '{0}' implicitly has an '{1}' type.", - "category": "error", - "documentation": "" -} diff --git a/db/7006.json b/db/7006.json deleted file mode 100644 index a07ecb8..0000000 --- a/db/7006.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7006, - "codeText": "TS7006", - "title": "Parameter '{0}' implicitly has an '{1}' type.", - "category": "error", - "documentation": "" -} diff --git a/db/7008.json b/db/7008.json deleted file mode 100644 index bf17c7e..0000000 --- a/db/7008.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7008, - "codeText": "TS7008", - "title": "Member '{0}' implicitly has an '{1}' type.", - "category": "error", - "documentation": "" -} diff --git a/db/7009.json b/db/7009.json deleted file mode 100644 index 2fa60d7..0000000 --- a/db/7009.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7009, - "codeText": "TS7009", - "title": "'new' expression, whose target lacks a construct signature, implicitly has an 'any' type.", - "category": "error", - "documentation": "" -} diff --git a/db/7010.json b/db/7010.json deleted file mode 100644 index 4196a84..0000000 --- a/db/7010.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7010, - "codeText": "TS7010", - "title": "'{0}', which lacks return-type annotation, implicitly has an '{1}' return type.", - "category": "error", - "documentation": "" -} diff --git a/db/7011.json b/db/7011.json deleted file mode 100644 index 12be2c8..0000000 --- a/db/7011.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7011, - "codeText": "TS7011", - "title": "Function expression, which lacks return-type annotation, implicitly has an '{0}' return type.", - "category": "error", - "documentation": "" -} diff --git a/db/7012.json b/db/7012.json deleted file mode 100644 index 186b7a5..0000000 --- a/db/7012.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7012, - "codeText": "TS7012", - "title": "This overload implicitly returns the type '{0}' because it lacks a return type annotation.", - "category": "error", - "documentation": "" -} diff --git a/db/7013.json b/db/7013.json deleted file mode 100644 index 310ef83..0000000 --- a/db/7013.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7013, - "codeText": "TS7013", - "title": "Construct signature, which lacks return-type annotation, implicitly has an 'any' return type.", - "category": "error", - "documentation": "" -} diff --git a/db/7014.json b/db/7014.json deleted file mode 100644 index f35f786..0000000 --- a/db/7014.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7014, - "codeText": "TS7014", - "title": "Function type, which lacks return-type annotation, implicitly has an '{0}' return type.", - "category": "error", - "documentation": "" -} diff --git a/db/7015.json b/db/7015.json deleted file mode 100644 index e15bec0..0000000 --- a/db/7015.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7015, - "codeText": "TS7015", - "title": "Element implicitly has an 'any' type because index expression is not of type 'number'.", - "category": "error", - "documentation": "" -} diff --git a/db/7016.json b/db/7016.json deleted file mode 100644 index 4df1c2d..0000000 --- a/db/7016.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7016, - "codeText": "TS7016", - "title": "Could not find a declaration file for module '{0}'. '{1}' implicitly has an 'any' type.", - "category": "error", - "documentation": "" -} diff --git a/db/7017.json b/db/7017.json deleted file mode 100644 index d6e5fb2..0000000 --- a/db/7017.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7017, - "codeText": "TS7017", - "title": "Element implicitly has an 'any' type because type '{0}' has no index signature.", - "category": "error", - "documentation": "" -} diff --git a/db/7018.json b/db/7018.json deleted file mode 100644 index 42d97cd..0000000 --- a/db/7018.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7018, - "codeText": "TS7018", - "title": "Object literal's property '{0}' implicitly has an '{1}' type.", - "category": "error", - "documentation": "" -} diff --git a/db/7019.json b/db/7019.json deleted file mode 100644 index 3c51c39..0000000 --- a/db/7019.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7019, - "codeText": "TS7019", - "title": "Rest parameter '{0}' implicitly has an 'any[]' type.", - "category": "error", - "documentation": "" -} diff --git a/db/7020.json b/db/7020.json deleted file mode 100644 index 4e1f35b..0000000 --- a/db/7020.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7020, - "codeText": "TS7020", - "title": "Call signature, which lacks return-type annotation, implicitly has an 'any' return type.", - "category": "error", - "documentation": "" -} diff --git a/db/7022.json b/db/7022.json deleted file mode 100644 index 3e205e0..0000000 --- a/db/7022.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7022, - "codeText": "TS7022", - "title": "'{0}' implicitly has type 'any' because it does not have a type annotation and is referenced directly or indirectly in its own initializer.", - "category": "error", - "documentation": "" -} diff --git a/db/7023.json b/db/7023.json deleted file mode 100644 index 543b364..0000000 --- a/db/7023.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7023, - "codeText": "TS7023", - "title": "'{0}' implicitly has return type 'any' because it does not have a return type annotation and is referenced directly or indirectly in one of its return expressions.", - "category": "error", - "documentation": "" -} diff --git a/db/7024.json b/db/7024.json deleted file mode 100644 index 01658df..0000000 --- a/db/7024.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7024, - "codeText": "TS7024", - "title": "Function implicitly has return type 'any' because it does not have a return type annotation and is referenced directly or indirectly in one of its return expressions.", - "category": "error", - "documentation": "" -} diff --git a/db/7025.json b/db/7025.json deleted file mode 100644 index 5853325..0000000 --- a/db/7025.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7025, - "codeText": "TS7025", - "title": "Generator implicitly has yield type '{0}' because it does not yield any values. Consider supplying a return type annotation.", - "category": "error", - "documentation": "" -} diff --git a/db/7026.json b/db/7026.json deleted file mode 100644 index 6003ef4..0000000 --- a/db/7026.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7026, - "codeText": "TS7026", - "title": "JSX element implicitly has type 'any' because no interface 'JSX.{0}' exists.", - "category": "error", - "documentation": "" -} diff --git a/db/7027.json b/db/7027.json deleted file mode 100644 index 0b8a5f7..0000000 --- a/db/7027.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7027, - "codeText": "TS7027", - "title": "Unreachable code detected.", - "category": "error", - "documentation": "" -} diff --git a/db/7028.json b/db/7028.json deleted file mode 100644 index d71a32c..0000000 --- a/db/7028.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7028, - "codeText": "TS7028", - "title": "Unused label.", - "category": "error", - "documentation": "" -} diff --git a/db/7029.json b/db/7029.json deleted file mode 100644 index c91beb1..0000000 --- a/db/7029.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7029, - "codeText": "TS7029", - "title": "Fallthrough case in switch.", - "category": "error", - "documentation": "" -} diff --git a/db/7030.json b/db/7030.json deleted file mode 100644 index 48e08b6..0000000 --- a/db/7030.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7030, - "codeText": "TS7030", - "title": "Not all code paths return a value.", - "category": "error", - "documentation": "" -} diff --git a/db/7031.json b/db/7031.json deleted file mode 100644 index 955d959..0000000 --- a/db/7031.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7031, - "codeText": "TS7031", - "title": "Binding element '{0}' implicitly has an '{1}' type.", - "category": "error", - "documentation": "" -} diff --git a/db/7032.json b/db/7032.json deleted file mode 100644 index 7ac3aad..0000000 --- a/db/7032.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7032, - "codeText": "TS7032", - "title": "Property '{0}' implicitly has type 'any', because its set accessor lacks a parameter type annotation.", - "category": "error", - "documentation": "" -} diff --git a/db/7033.json b/db/7033.json deleted file mode 100644 index edf005a..0000000 --- a/db/7033.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7033, - "codeText": "TS7033", - "title": "Property '{0}' implicitly has type 'any', because its get accessor lacks a return type annotation.", - "category": "error", - "documentation": "" -} diff --git a/db/7034.json b/db/7034.json deleted file mode 100644 index 82be0b5..0000000 --- a/db/7034.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7034, - "codeText": "TS7034", - "title": "Variable '{0}' implicitly has type '{1}' in some locations where its type cannot be determined.", - "category": "error", - "documentation": "" -} diff --git a/db/7035.json b/db/7035.json deleted file mode 100644 index f977dbe..0000000 --- a/db/7035.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7035, - "codeText": "TS7035", - "title": "Try `npm i --save-dev @types/{1}` if it exists or add a new declaration (.d.ts) file containing `declare module '{0}';`", - "category": "error", - "documentation": "" -} diff --git a/db/7036.json b/db/7036.json deleted file mode 100644 index 9bc84c6..0000000 --- a/db/7036.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7036, - "codeText": "TS7036", - "title": "Dynamic import's specifier must be of type 'string', but here has type '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/7037.json b/db/7037.json deleted file mode 100644 index 6ce0b6d..0000000 --- a/db/7037.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7037, - "codeText": "TS7037", - "title": "Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'.", - "category": "message", - "documentation": "" -} diff --git a/db/7038.json b/db/7038.json deleted file mode 100644 index f9c7807..0000000 --- a/db/7038.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7038, - "codeText": "TS7038", - "title": "Type originates at this import. A namespace-style import cannot be called or constructed, and will cause a failure at runtime. Consider using a default import or import require here instead.", - "category": "message", - "documentation": "" -} diff --git a/db/7039.json b/db/7039.json deleted file mode 100644 index f2d8ba0..0000000 --- a/db/7039.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7039, - "codeText": "TS7039", - "title": "Mapped object type implicitly has an 'any' template type.", - "category": "error", - "documentation": "" -} diff --git a/db/7040.json b/db/7040.json deleted file mode 100644 index df416ff..0000000 --- a/db/7040.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7040, - "codeText": "TS7040", - "title": "If the '{0}' package actually exposes this module, consider sending a pull request to amend 'https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/{1}'", - "category": "error", - "documentation": "" -} diff --git a/db/7041.json b/db/7041.json deleted file mode 100644 index c511878..0000000 --- a/db/7041.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7041, - "codeText": "TS7041", - "title": "The containing arrow function captures the global value of 'this'.", - "category": "error", - "documentation": "" -} diff --git a/db/7042.json b/db/7042.json deleted file mode 100644 index 41a38ed..0000000 --- a/db/7042.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7042, - "codeText": "TS7042", - "title": "Module '{0}' was resolved to '{1}', but '--resolveJsonModule' is not used.", - "category": "error", - "documentation": "" -} diff --git a/db/7043.json b/db/7043.json deleted file mode 100644 index 12316ba..0000000 --- a/db/7043.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7043, - "codeText": "TS7043", - "title": "Variable '{0}' implicitly has an '{1}' type, but a better type may be inferred from usage.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/7044.json b/db/7044.json deleted file mode 100644 index a3fa9bb..0000000 --- a/db/7044.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7044, - "codeText": "TS7044", - "title": "Parameter '{0}' implicitly has an '{1}' type, but a better type may be inferred from usage.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/7045.json b/db/7045.json deleted file mode 100644 index 8b52a24..0000000 --- a/db/7045.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7045, - "codeText": "TS7045", - "title": "Member '{0}' implicitly has an '{1}' type, but a better type may be inferred from usage.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/7046.json b/db/7046.json deleted file mode 100644 index 5d6e58f..0000000 --- a/db/7046.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7046, - "codeText": "TS7046", - "title": "Variable '{0}' implicitly has type '{1}' in some locations, but a better type may be inferred from usage.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/7047.json b/db/7047.json deleted file mode 100644 index faa4dce..0000000 --- a/db/7047.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7047, - "codeText": "TS7047", - "title": "Rest parameter '{0}' implicitly has an 'any[]' type, but a better type may be inferred from usage.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/7048.json b/db/7048.json deleted file mode 100644 index 4c280dc..0000000 --- a/db/7048.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7048, - "codeText": "TS7048", - "title": "Property '{0}' implicitly has type 'any', but a better type for its get accessor may be inferred from usage.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/7049.json b/db/7049.json deleted file mode 100644 index 38d61ad..0000000 --- a/db/7049.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7049, - "codeText": "TS7049", - "title": "Property '{0}' implicitly has type 'any', but a better type for its set accessor may be inferred from usage.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/7050.json b/db/7050.json deleted file mode 100644 index 4a6a3d8..0000000 --- a/db/7050.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7050, - "codeText": "TS7050", - "title": "'{0}' implicitly has an '{1}' return type, but a better type may be inferred from usage.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/7051.json b/db/7051.json deleted file mode 100644 index 573b238..0000000 --- a/db/7051.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7051, - "codeText": "TS7051", - "title": "Parameter has a name but no type. Did you mean '{0}: {1}'?", - "category": "error", - "documentation": "" -} diff --git a/db/7052.json b/db/7052.json deleted file mode 100644 index d913e7d..0000000 --- a/db/7052.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7052, - "codeText": "TS7052", - "title": "Element implicitly has an 'any' type because type '{0}' has no index signature. Did you mean to call '{1}'?", - "category": "error", - "documentation": "" -} diff --git a/db/7053.json b/db/7053.json deleted file mode 100644 index a029a47..0000000 --- a/db/7053.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7053, - "codeText": "TS7053", - "title": "Element implicitly has an 'any' type because expression of type '{0}' can't be used to index type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/7054.json b/db/7054.json deleted file mode 100644 index 63cdcf9..0000000 --- a/db/7054.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7054, - "codeText": "TS7054", - "title": "No index signature with a parameter of type '{0}' was found on type '{1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/7055.json b/db/7055.json deleted file mode 100644 index 8dc1549..0000000 --- a/db/7055.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7055, - "codeText": "TS7055", - "title": "'{0}', which lacks return-type annotation, implicitly has an '{1}' yield type.", - "category": "error", - "documentation": "" -} diff --git a/db/7056.json b/db/7056.json deleted file mode 100644 index 5565cea..0000000 --- a/db/7056.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7056, - "codeText": "TS7056", - "title": "The inferred type of this node exceeds the maximum length the compiler will serialize. An explicit type annotation is needed.", - "category": "error", - "documentation": "" -} diff --git a/db/7057.json b/db/7057.json deleted file mode 100644 index 29c6d52..0000000 --- a/db/7057.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7057, - "codeText": "TS7057", - "title": "'yield' expression implicitly results in an 'any' type because its containing generator lacks a return-type annotation.", - "category": "error", - "documentation": "" -} diff --git a/db/7058.json b/db/7058.json deleted file mode 100644 index ffa3cc5..0000000 --- a/db/7058.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7058, - "codeText": "TS7058", - "title": "If the '{0}' package actually exposes this module, try adding a new declaration (.d.ts) file containing `declare module '{1}';`", - "category": "error", - "documentation": "" -} diff --git a/db/7059.json b/db/7059.json deleted file mode 100644 index 5723368..0000000 --- a/db/7059.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7059, - "codeText": "TS7059", - "title": "This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead.", - "category": "error", - "documentation": "" -} diff --git a/db/7060.json b/db/7060.json deleted file mode 100644 index 7cabc3c..0000000 --- a/db/7060.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7060, - "codeText": "TS7060", - "title": "This syntax is reserved in files with the .mts or .cts extension. Add a trailing comma or explicit constraint.", - "category": "error", - "documentation": "" -} diff --git a/db/7061.json b/db/7061.json deleted file mode 100644 index 9ef73d8..0000000 --- a/db/7061.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 7061, - "codeText": "TS7061", - "title": "A mapped type may not declare properties or methods.", - "category": "error", - "documentation": "" -} diff --git a/db/8000.json b/db/8000.json deleted file mode 100644 index 3643130..0000000 --- a/db/8000.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8000, - "codeText": "TS8000", - "title": "You cannot rename this element.", - "category": "error", - "documentation": "" -} diff --git a/db/80001.json b/db/80001.json deleted file mode 100644 index 9fc2fd1..0000000 --- a/db/80001.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 80001, - "codeText": "TS80001", - "title": "File is a CommonJS module; it may be converted to an ES module.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/80002.json b/db/80002.json deleted file mode 100644 index ae5bf5d..0000000 --- a/db/80002.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 80002, - "codeText": "TS80002", - "title": "This constructor function may be converted to a class declaration.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/80003.json b/db/80003.json deleted file mode 100644 index 9a75e9b..0000000 --- a/db/80003.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 80003, - "codeText": "TS80003", - "title": "Import may be converted to a default import.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/80004.json b/db/80004.json deleted file mode 100644 index 37d5f8c..0000000 --- a/db/80004.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 80004, - "codeText": "TS80004", - "title": "JSDoc types may be moved to TypeScript types.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/80005.json b/db/80005.json deleted file mode 100644 index 3191959..0000000 --- a/db/80005.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 80005, - "codeText": "TS80005", - "title": "'require' call may be converted to an import.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/80006.json b/db/80006.json deleted file mode 100644 index 9aff141..0000000 --- a/db/80006.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 80006, - "codeText": "TS80006", - "title": "This may be converted to an async function.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/80007.json b/db/80007.json deleted file mode 100644 index 0a84fd5..0000000 --- a/db/80007.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 80007, - "codeText": "TS80007", - "title": "'await' has no effect on the type of this expression.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/80008.json b/db/80008.json deleted file mode 100644 index 421696f..0000000 --- a/db/80008.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 80008, - "codeText": "TS80008", - "title": "Numeric literals with absolute values equal to 2^53 or greater are too large to be represented accurately as integers.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/80009.json b/db/80009.json deleted file mode 100644 index 248ca52..0000000 --- a/db/80009.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 80009, - "codeText": "TS80009", - "title": "JSDoc typedef may be converted to TypeScript type.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/8001.json b/db/8001.json deleted file mode 100644 index 162f4da..0000000 --- a/db/8001.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8001, - "codeText": "TS8001", - "title": "You cannot rename elements that are defined in the standard TypeScript library.", - "category": "error", - "documentation": "" -} diff --git a/db/80010.json b/db/80010.json deleted file mode 100644 index 2557c81..0000000 --- a/db/80010.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 80010, - "codeText": "TS80010", - "title": "JSDoc typedefs may be converted to TypeScript types.", - "category": "suggestion", - "documentation": "" -} diff --git a/db/8002.json b/db/8002.json deleted file mode 100644 index 600b99b..0000000 --- a/db/8002.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8002, - "codeText": "TS8002", - "title": "'import ... =' can only be used in TypeScript files.", - "category": "error", - "documentation": "" -} diff --git a/db/8003.json b/db/8003.json deleted file mode 100644 index a425cfc..0000000 --- a/db/8003.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8003, - "codeText": "TS8003", - "title": "'export =' can only be used in TypeScript files.", - "category": "error", - "documentation": "" -} diff --git a/db/8004.json b/db/8004.json deleted file mode 100644 index 41a9b6a..0000000 --- a/db/8004.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8004, - "codeText": "TS8004", - "title": "Type parameter declarations can only be used in TypeScript files.", - "category": "error", - "documentation": "" -} diff --git a/db/8005.json b/db/8005.json deleted file mode 100644 index 822cc93..0000000 --- a/db/8005.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8005, - "codeText": "TS8005", - "title": "'implements' clauses can only be used in TypeScript files.", - "category": "error", - "documentation": "" -} diff --git a/db/8006.json b/db/8006.json deleted file mode 100644 index a2a43af..0000000 --- a/db/8006.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8006, - "codeText": "TS8006", - "title": "'{0}' declarations can only be used in TypeScript files.", - "category": "error", - "documentation": "" -} diff --git a/db/8008.json b/db/8008.json deleted file mode 100644 index 5068bf0..0000000 --- a/db/8008.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8008, - "codeText": "TS8008", - "title": "Type aliases can only be used in TypeScript files.", - "category": "error", - "documentation": "" -} diff --git a/db/8009.json b/db/8009.json deleted file mode 100644 index 9579dd3..0000000 --- a/db/8009.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8009, - "codeText": "TS8009", - "title": "The '{0}' modifier can only be used in TypeScript files.", - "category": "error", - "documentation": "" -} diff --git a/db/8010.json b/db/8010.json deleted file mode 100644 index f366044..0000000 --- a/db/8010.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8010, - "codeText": "TS8010", - "title": "Type annotations can only be used in TypeScript files.", - "category": "error", - "documentation": "" -} diff --git a/db/8011.json b/db/8011.json deleted file mode 100644 index 215601b..0000000 --- a/db/8011.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8011, - "codeText": "TS8011", - "title": "Type arguments can only be used in TypeScript files.", - "category": "error", - "documentation": "" -} diff --git a/db/8012.json b/db/8012.json deleted file mode 100644 index a561e47..0000000 --- a/db/8012.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8012, - "codeText": "TS8012", - "title": "Parameter modifiers can only be used in TypeScript files.", - "category": "error", - "documentation": "" -} diff --git a/db/8013.json b/db/8013.json deleted file mode 100644 index 6c5d13b..0000000 --- a/db/8013.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8013, - "codeText": "TS8013", - "title": "Non-null assertions can only be used in TypeScript files.", - "category": "error", - "documentation": "" -} diff --git a/db/8016.json b/db/8016.json deleted file mode 100644 index adc041a..0000000 --- a/db/8016.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8016, - "codeText": "TS8016", - "title": "Type assertion expressions can only be used in TypeScript files.", - "category": "error", - "documentation": "" -} diff --git a/db/8017.json b/db/8017.json deleted file mode 100644 index 2cd6789..0000000 --- a/db/8017.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8017, - "codeText": "TS8017", - "title": "Octal literal types must use ES2015 syntax. Use the syntax '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/8018.json b/db/8018.json deleted file mode 100644 index 7b340be..0000000 --- a/db/8018.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8018, - "codeText": "TS8018", - "title": "Octal literals are not allowed in enums members initializer. Use the syntax '{0}'.", - "category": "error", - "documentation": "" -} diff --git a/db/8019.json b/db/8019.json deleted file mode 100644 index 4ad1271..0000000 --- a/db/8019.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8019, - "codeText": "TS8019", - "title": "Report errors in .js files.", - "category": "message", - "documentation": "" -} diff --git a/db/8020.json b/db/8020.json deleted file mode 100644 index 520b50e..0000000 --- a/db/8020.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8020, - "codeText": "TS8020", - "title": "JSDoc types can only be used inside documentation comments.", - "category": "error", - "documentation": "" -} diff --git a/db/8021.json b/db/8021.json deleted file mode 100644 index dabf0d3..0000000 --- a/db/8021.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8021, - "codeText": "TS8021", - "title": "JSDoc '@typedef' tag should either have a type annotation or be followed by '@property' or '@member' tags.", - "category": "error", - "documentation": "" -} diff --git a/db/8022.json b/db/8022.json deleted file mode 100644 index f38e5dd..0000000 --- a/db/8022.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8022, - "codeText": "TS8022", - "title": "JSDoc '@{0}' is not attached to a class.", - "category": "error", - "documentation": "" -} diff --git a/db/8023.json b/db/8023.json deleted file mode 100644 index 3d334cf..0000000 --- a/db/8023.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8023, - "codeText": "TS8023", - "title": "JSDoc '@{0} {1}' does not match the 'extends {2}' clause.", - "category": "error", - "documentation": "" -} diff --git a/db/8024.json b/db/8024.json deleted file mode 100644 index 716cad5..0000000 --- a/db/8024.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8024, - "codeText": "TS8024", - "title": "JSDoc '@param' tag has name '{0}', but there is no parameter with that name.", - "category": "error", - "documentation": "" -} diff --git a/db/8025.json b/db/8025.json deleted file mode 100644 index 17aee94..0000000 --- a/db/8025.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8025, - "codeText": "TS8025", - "title": "Class declarations cannot have more than one '@augments' or '@extends' tag.", - "category": "error", - "documentation": "" -} diff --git a/db/8026.json b/db/8026.json deleted file mode 100644 index 942592a..0000000 --- a/db/8026.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8026, - "codeText": "TS8026", - "title": "Expected {0} type arguments; provide these with an '@extends' tag.", - "category": "error", - "documentation": "" -} diff --git a/db/8027.json b/db/8027.json deleted file mode 100644 index 268ede7..0000000 --- a/db/8027.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8027, - "codeText": "TS8027", - "title": "Expected {0}-{1} type arguments; provide these with an '@extends' tag.", - "category": "error", - "documentation": "" -} diff --git a/db/8028.json b/db/8028.json deleted file mode 100644 index 92adc48..0000000 --- a/db/8028.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8028, - "codeText": "TS8028", - "title": "JSDoc '...' may only appear in the last parameter of a signature.", - "category": "error", - "documentation": "" -} diff --git a/db/8029.json b/db/8029.json deleted file mode 100644 index 7fadd73..0000000 --- a/db/8029.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8029, - "codeText": "TS8029", - "title": "JSDoc '@param' tag has name '{0}', but there is no parameter with that name. It would match 'arguments' if it had an array type.", - "category": "error", - "documentation": "" -} diff --git a/db/8030.json b/db/8030.json deleted file mode 100644 index 6efb830..0000000 --- a/db/8030.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8030, - "codeText": "TS8030", - "title": "The type of a function declaration must match the function's signature.", - "category": "error", - "documentation": "" -} diff --git a/db/8031.json b/db/8031.json deleted file mode 100644 index 554ade4..0000000 --- a/db/8031.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8031, - "codeText": "TS8031", - "title": "You cannot rename a module via a global import.", - "category": "error", - "documentation": "" -} diff --git a/db/8032.json b/db/8032.json deleted file mode 100644 index 77b24bc..0000000 --- a/db/8032.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8032, - "codeText": "TS8032", - "title": "Qualified name '{0}' is not allowed without a leading '@param {object} {1}'.", - "category": "error", - "documentation": "" -} diff --git a/db/8033.json b/db/8033.json deleted file mode 100644 index 85adbab..0000000 --- a/db/8033.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8033, - "codeText": "TS8033", - "title": "A JSDoc '@typedef' comment may not contain multiple '@type' tags.", - "category": "error", - "documentation": "" -} diff --git a/db/8034.json b/db/8034.json deleted file mode 100644 index 6a04fac..0000000 --- a/db/8034.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8034, - "codeText": "TS8034", - "title": "The tag was first specified here.", - "category": "error", - "documentation": "" -} diff --git a/db/8035.json b/db/8035.json deleted file mode 100644 index 99f4dfe..0000000 --- a/db/8035.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8035, - "codeText": "TS8035", - "title": "You cannot rename elements that are defined in a 'node_modules' folder.", - "category": "error", - "documentation": "" -} diff --git a/db/8036.json b/db/8036.json deleted file mode 100644 index 1a16672..0000000 --- a/db/8036.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8036, - "codeText": "TS8036", - "title": "You cannot rename elements that are defined in another 'node_modules' folder.", - "category": "error", - "documentation": "" -} diff --git a/db/8037.json b/db/8037.json deleted file mode 100644 index e9304f1..0000000 --- a/db/8037.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8037, - "codeText": "TS8037", - "title": "Type satisfaction expressions can only be used in TypeScript files.", - "category": "error", - "documentation": "" -} diff --git a/db/8038.json b/db/8038.json deleted file mode 100644 index 81c5f53..0000000 --- a/db/8038.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8038, - "codeText": "TS8038", - "title": "Decorators must come after 'export' or 'export default' in JavaScript files.", - "category": "error", - "documentation": "" -} diff --git a/db/8039.json b/db/8039.json deleted file mode 100644 index 2fdd9c6..0000000 --- a/db/8039.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 8039, - "codeText": "TS8039", - "title": "A JSDoc '@template' tag may not follow a '@typedef', '@callback', or '@overload' tag", - "category": "error", - "documentation": "" -} diff --git a/db/90001.json b/db/90001.json deleted file mode 100644 index 0efa3ce..0000000 --- a/db/90001.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90001, - "codeText": "TS90001", - "title": "Add missing 'super()' call", - "category": "message", - "documentation": "" -} diff --git a/db/90002.json b/db/90002.json deleted file mode 100644 index e6eed49..0000000 --- a/db/90002.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90002, - "codeText": "TS90002", - "title": "Make 'super()' call the first statement in the constructor", - "category": "message", - "documentation": "" -} diff --git a/db/90003.json b/db/90003.json deleted file mode 100644 index 4eabdb8..0000000 --- a/db/90003.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90003, - "codeText": "TS90003", - "title": "Change 'extends' to 'implements'", - "category": "message", - "documentation": "" -} diff --git a/db/90004.json b/db/90004.json deleted file mode 100644 index 29fbc4a..0000000 --- a/db/90004.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90004, - "codeText": "TS90004", - "title": "Remove unused declaration for: '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/90005.json b/db/90005.json deleted file mode 100644 index 40e11bf..0000000 --- a/db/90005.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90005, - "codeText": "TS90005", - "title": "Remove import from '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/90006.json b/db/90006.json deleted file mode 100644 index 57cc2da..0000000 --- a/db/90006.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90006, - "codeText": "TS90006", - "title": "Implement interface '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/90007.json b/db/90007.json deleted file mode 100644 index 009d5c2..0000000 --- a/db/90007.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90007, - "codeText": "TS90007", - "title": "Implement inherited abstract class", - "category": "message", - "documentation": "" -} diff --git a/db/90008.json b/db/90008.json deleted file mode 100644 index 77f7a06..0000000 --- a/db/90008.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90008, - "codeText": "TS90008", - "title": "Add '{0}.' to unresolved variable", - "category": "message", - "documentation": "" -} diff --git a/db/90010.json b/db/90010.json deleted file mode 100644 index da61304..0000000 --- a/db/90010.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90010, - "codeText": "TS90010", - "title": "Remove variable statement", - "category": "message", - "documentation": "" -} diff --git a/db/90011.json b/db/90011.json deleted file mode 100644 index 0834ad9..0000000 --- a/db/90011.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90011, - "codeText": "TS90011", - "title": "Remove template tag", - "category": "message", - "documentation": "" -} diff --git a/db/90012.json b/db/90012.json deleted file mode 100644 index 6e864a4..0000000 --- a/db/90012.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90012, - "codeText": "TS90012", - "title": "Remove type parameters", - "category": "message", - "documentation": "" -} diff --git a/db/90013.json b/db/90013.json deleted file mode 100644 index 12f65d0..0000000 --- a/db/90013.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90013, - "codeText": "TS90013", - "title": "Import '{0}' from \"{1}\"", - "category": "message", - "documentation": "" -} diff --git a/db/90014.json b/db/90014.json deleted file mode 100644 index 82a09a5..0000000 --- a/db/90014.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90014, - "codeText": "TS90014", - "title": "Change '{0}' to '{1}'", - "category": "message", - "documentation": "" -} diff --git a/db/90016.json b/db/90016.json deleted file mode 100644 index 85dc26f..0000000 --- a/db/90016.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90016, - "codeText": "TS90016", - "title": "Declare property '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/90017.json b/db/90017.json deleted file mode 100644 index 5d72b13..0000000 --- a/db/90017.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90017, - "codeText": "TS90017", - "title": "Add index signature for property '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/90018.json b/db/90018.json deleted file mode 100644 index 681f26c..0000000 --- a/db/90018.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90018, - "codeText": "TS90018", - "title": "Disable checking for this file", - "category": "message", - "documentation": "" -} diff --git a/db/90019.json b/db/90019.json deleted file mode 100644 index 0948231..0000000 --- a/db/90019.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90019, - "codeText": "TS90019", - "title": "Ignore this error message", - "category": "message", - "documentation": "" -} diff --git a/db/90020.json b/db/90020.json deleted file mode 100644 index fce6737..0000000 --- a/db/90020.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90020, - "codeText": "TS90020", - "title": "Initialize property '{0}' in the constructor", - "category": "message", - "documentation": "" -} diff --git a/db/90021.json b/db/90021.json deleted file mode 100644 index 2c1501d..0000000 --- a/db/90021.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90021, - "codeText": "TS90021", - "title": "Initialize static property '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/90022.json b/db/90022.json deleted file mode 100644 index 9780fd6..0000000 --- a/db/90022.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90022, - "codeText": "TS90022", - "title": "Change spelling to '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/90023.json b/db/90023.json deleted file mode 100644 index 0b31149..0000000 --- a/db/90023.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90023, - "codeText": "TS90023", - "title": "Declare method '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/90024.json b/db/90024.json deleted file mode 100644 index 9402c0e..0000000 --- a/db/90024.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90024, - "codeText": "TS90024", - "title": "Declare static method '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/90025.json b/db/90025.json deleted file mode 100644 index 1308d11..0000000 --- a/db/90025.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90025, - "codeText": "TS90025", - "title": "Prefix '{0}' with an underscore", - "category": "message", - "documentation": "" -} diff --git a/db/90026.json b/db/90026.json deleted file mode 100644 index 748d52d..0000000 --- a/db/90026.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90026, - "codeText": "TS90026", - "title": "Rewrite as the indexed access type '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/90027.json b/db/90027.json deleted file mode 100644 index 8a93e4d..0000000 --- a/db/90027.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90027, - "codeText": "TS90027", - "title": "Declare static property '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/90028.json b/db/90028.json deleted file mode 100644 index c58495e..0000000 --- a/db/90028.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90028, - "codeText": "TS90028", - "title": "Call decorator expression", - "category": "message", - "documentation": "" -} diff --git a/db/90029.json b/db/90029.json deleted file mode 100644 index 4ce1120..0000000 --- a/db/90029.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90029, - "codeText": "TS90029", - "title": "Add async modifier to containing function", - "category": "message", - "documentation": "" -} diff --git a/db/90030.json b/db/90030.json deleted file mode 100644 index a4d34db..0000000 --- a/db/90030.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90030, - "codeText": "TS90030", - "title": "Replace 'infer {0}' with 'unknown'", - "category": "message", - "documentation": "" -} diff --git a/db/90031.json b/db/90031.json deleted file mode 100644 index bc5a98a..0000000 --- a/db/90031.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90031, - "codeText": "TS90031", - "title": "Replace all unused 'infer' with 'unknown'", - "category": "message", - "documentation": "" -} diff --git a/db/90034.json b/db/90034.json deleted file mode 100644 index f58b4e1..0000000 --- a/db/90034.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90034, - "codeText": "TS90034", - "title": "Add parameter name", - "category": "message", - "documentation": "" -} diff --git a/db/90035.json b/db/90035.json deleted file mode 100644 index 0f2218b..0000000 --- a/db/90035.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90035, - "codeText": "TS90035", - "title": "Declare private property '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/90036.json b/db/90036.json deleted file mode 100644 index afa04d4..0000000 --- a/db/90036.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90036, - "codeText": "TS90036", - "title": "Replace '{0}' with 'Promise<{1}>'", - "category": "message", - "documentation": "" -} diff --git a/db/90037.json b/db/90037.json deleted file mode 100644 index 596f93e..0000000 --- a/db/90037.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90037, - "codeText": "TS90037", - "title": "Fix all incorrect return type of an async functions", - "category": "message", - "documentation": "" -} diff --git a/db/90038.json b/db/90038.json deleted file mode 100644 index ca29172..0000000 --- a/db/90038.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90038, - "codeText": "TS90038", - "title": "Declare private method '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/90039.json b/db/90039.json deleted file mode 100644 index 697f6a2..0000000 --- a/db/90039.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90039, - "codeText": "TS90039", - "title": "Remove unused destructuring declaration", - "category": "message", - "documentation": "" -} diff --git a/db/90041.json b/db/90041.json deleted file mode 100644 index 0018e3b..0000000 --- a/db/90041.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90041, - "codeText": "TS90041", - "title": "Remove unused declarations for: '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/9005.json b/db/9005.json deleted file mode 100644 index 6966ce0..0000000 --- a/db/9005.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 9005, - "codeText": "TS9005", - "title": "Declaration emit for this file requires using private name '{0}'. An explicit type annotation may unblock declaration emit.", - "category": "error", - "documentation": "" -} diff --git a/db/90053.json b/db/90053.json deleted file mode 100644 index 2362435..0000000 --- a/db/90053.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90053, - "codeText": "TS90053", - "title": "Declare a private field named '{0}'.", - "category": "message", - "documentation": "" -} diff --git a/db/90054.json b/db/90054.json deleted file mode 100644 index 489573a..0000000 --- a/db/90054.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90054, - "codeText": "TS90054", - "title": "Includes imports of types referenced by '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/90055.json b/db/90055.json deleted file mode 100644 index 0619721..0000000 --- a/db/90055.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90055, - "codeText": "TS90055", - "title": "Remove 'type' from import declaration from \"{0}\"", - "category": "message", - "documentation": "" -} diff --git a/db/90056.json b/db/90056.json deleted file mode 100644 index b35c987..0000000 --- a/db/90056.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90056, - "codeText": "TS90056", - "title": "Remove 'type' from import of '{0}' from \"{1}\"", - "category": "message", - "documentation": "" -} diff --git a/db/90057.json b/db/90057.json deleted file mode 100644 index e3bb4bf..0000000 --- a/db/90057.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90057, - "codeText": "TS90057", - "title": "Add import from \"{0}\"", - "category": "message", - "documentation": "" -} diff --git a/db/90058.json b/db/90058.json deleted file mode 100644 index a4650b3..0000000 --- a/db/90058.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90058, - "codeText": "TS90058", - "title": "Update import from \"{0}\"", - "category": "message", - "documentation": "" -} diff --git a/db/90059.json b/db/90059.json deleted file mode 100644 index ec8eee8..0000000 --- a/db/90059.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90059, - "codeText": "TS90059", - "title": "Export '{0}' from module '{1}'", - "category": "message", - "documentation": "" -} diff --git a/db/9006.json b/db/9006.json deleted file mode 100644 index 23d5c49..0000000 --- a/db/9006.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 9006, - "codeText": "TS9006", - "title": "Declaration emit for this file requires using private name '{0}' from module '{1}'. An explicit type annotation may unblock declaration emit.", - "category": "error", - "documentation": "" -} diff --git a/db/90060.json b/db/90060.json deleted file mode 100644 index 1e64891..0000000 --- a/db/90060.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 90060, - "codeText": "TS90060", - "title": "Export all referenced locals", - "category": "message", - "documentation": "" -} diff --git a/db/95001.json b/db/95001.json deleted file mode 100644 index 5fce1fc..0000000 --- a/db/95001.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95001, - "codeText": "TS95001", - "title": "Convert function to an ES2015 class", - "category": "message", - "documentation": "" -} diff --git a/db/95003.json b/db/95003.json deleted file mode 100644 index 054d201..0000000 --- a/db/95003.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95003, - "codeText": "TS95003", - "title": "Convert '{0}' to '{1} in {0}'", - "category": "message", - "documentation": "" -} diff --git a/db/95004.json b/db/95004.json deleted file mode 100644 index c42ef65..0000000 --- a/db/95004.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95004, - "codeText": "TS95004", - "title": "Extract to {0} in {1}", - "category": "message", - "documentation": "" -} diff --git a/db/95005.json b/db/95005.json deleted file mode 100644 index 0ec1881..0000000 --- a/db/95005.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95005, - "codeText": "TS95005", - "title": "Extract function", - "category": "message", - "documentation": "" -} diff --git a/db/95006.json b/db/95006.json deleted file mode 100644 index a1e454d..0000000 --- a/db/95006.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95006, - "codeText": "TS95006", - "title": "Extract constant", - "category": "message", - "documentation": "" -} diff --git a/db/95007.json b/db/95007.json deleted file mode 100644 index d90ae25..0000000 --- a/db/95007.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95007, - "codeText": "TS95007", - "title": "Extract to {0} in enclosing scope", - "category": "message", - "documentation": "" -} diff --git a/db/95008.json b/db/95008.json deleted file mode 100644 index 5a6b014..0000000 --- a/db/95008.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95008, - "codeText": "TS95008", - "title": "Extract to {0} in {1} scope", - "category": "message", - "documentation": "" -} diff --git a/db/95009.json b/db/95009.json deleted file mode 100644 index 6de171b..0000000 --- a/db/95009.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95009, - "codeText": "TS95009", - "title": "Annotate with type from JSDoc", - "category": "message", - "documentation": "" -} diff --git a/db/95011.json b/db/95011.json deleted file mode 100644 index 4a502ee..0000000 --- a/db/95011.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95011, - "codeText": "TS95011", - "title": "Infer type of '{0}' from usage", - "category": "message", - "documentation": "" -} diff --git a/db/95012.json b/db/95012.json deleted file mode 100644 index e41d34d..0000000 --- a/db/95012.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95012, - "codeText": "TS95012", - "title": "Infer parameter types from usage", - "category": "message", - "documentation": "" -} diff --git a/db/95013.json b/db/95013.json deleted file mode 100644 index 58d58dc..0000000 --- a/db/95013.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95013, - "codeText": "TS95013", - "title": "Convert to default import", - "category": "message", - "documentation": "" -} diff --git a/db/95014.json b/db/95014.json deleted file mode 100644 index 22f10c8..0000000 --- a/db/95014.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95014, - "codeText": "TS95014", - "title": "Install '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/95015.json b/db/95015.json deleted file mode 100644 index 7c33fee..0000000 --- a/db/95015.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95015, - "codeText": "TS95015", - "title": "Replace import with '{0}'.", - "category": "message", - "documentation": "" -} diff --git a/db/95016.json b/db/95016.json deleted file mode 100644 index 7af96ee..0000000 --- a/db/95016.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95016, - "codeText": "TS95016", - "title": "Use synthetic 'default' member.", - "category": "message", - "documentation": "" -} diff --git a/db/95017.json b/db/95017.json deleted file mode 100644 index dd76acc..0000000 --- a/db/95017.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95017, - "codeText": "TS95017", - "title": "Convert to ES module", - "category": "message", - "documentation": "" -} diff --git a/db/95018.json b/db/95018.json deleted file mode 100644 index 02c73d2..0000000 --- a/db/95018.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95018, - "codeText": "TS95018", - "title": "Add 'undefined' type to property '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/95019.json b/db/95019.json deleted file mode 100644 index cba15cd..0000000 --- a/db/95019.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95019, - "codeText": "TS95019", - "title": "Add initializer to property '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/95020.json b/db/95020.json deleted file mode 100644 index 2858051..0000000 --- a/db/95020.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95020, - "codeText": "TS95020", - "title": "Add definite assignment assertion to property '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/95021.json b/db/95021.json deleted file mode 100644 index a5a5a94..0000000 --- a/db/95021.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95021, - "codeText": "TS95021", - "title": "Convert all type literals to mapped type", - "category": "message", - "documentation": "" -} diff --git a/db/95022.json b/db/95022.json deleted file mode 100644 index 1c78e9b..0000000 --- a/db/95022.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95022, - "codeText": "TS95022", - "title": "Add all missing members", - "category": "message", - "documentation": "" -} diff --git a/db/95023.json b/db/95023.json deleted file mode 100644 index ea6253e..0000000 --- a/db/95023.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95023, - "codeText": "TS95023", - "title": "Infer all types from usage", - "category": "message", - "documentation": "" -} diff --git a/db/95024.json b/db/95024.json deleted file mode 100644 index f8235aa..0000000 --- a/db/95024.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95024, - "codeText": "TS95024", - "title": "Delete all unused declarations", - "category": "message", - "documentation": "" -} diff --git a/db/95025.json b/db/95025.json deleted file mode 100644 index 73e96b3..0000000 --- a/db/95025.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95025, - "codeText": "TS95025", - "title": "Prefix all unused declarations with '_' where possible", - "category": "message", - "documentation": "" -} diff --git a/db/95026.json b/db/95026.json deleted file mode 100644 index 1eea0c1..0000000 --- a/db/95026.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95026, - "codeText": "TS95026", - "title": "Fix all detected spelling errors", - "category": "message", - "documentation": "" -} diff --git a/db/95027.json b/db/95027.json deleted file mode 100644 index 2e4e833..0000000 --- a/db/95027.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95027, - "codeText": "TS95027", - "title": "Add initializers to all uninitialized properties", - "category": "message", - "documentation": "" -} diff --git a/db/95028.json b/db/95028.json deleted file mode 100644 index 2976ab8..0000000 --- a/db/95028.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95028, - "codeText": "TS95028", - "title": "Add definite assignment assertions to all uninitialized properties", - "category": "message", - "documentation": "" -} diff --git a/db/95029.json b/db/95029.json deleted file mode 100644 index c209c6d..0000000 --- a/db/95029.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95029, - "codeText": "TS95029", - "title": "Add undefined type to all uninitialized properties", - "category": "message", - "documentation": "" -} diff --git a/db/95030.json b/db/95030.json deleted file mode 100644 index e2e5054..0000000 --- a/db/95030.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95030, - "codeText": "TS95030", - "title": "Change all jsdoc-style types to TypeScript", - "category": "message", - "documentation": "" -} diff --git a/db/95031.json b/db/95031.json deleted file mode 100644 index 8d19259..0000000 --- a/db/95031.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95031, - "codeText": "TS95031", - "title": "Change all jsdoc-style types to TypeScript (and add '| undefined' to nullable types)", - "category": "message", - "documentation": "" -} diff --git a/db/95032.json b/db/95032.json deleted file mode 100644 index a5f837f..0000000 --- a/db/95032.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95032, - "codeText": "TS95032", - "title": "Implement all unimplemented interfaces", - "category": "message", - "documentation": "" -} diff --git a/db/95033.json b/db/95033.json deleted file mode 100644 index cf2756a..0000000 --- a/db/95033.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95033, - "codeText": "TS95033", - "title": "Install all missing types packages", - "category": "message", - "documentation": "" -} diff --git a/db/95034.json b/db/95034.json deleted file mode 100644 index f5c5eed..0000000 --- a/db/95034.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95034, - "codeText": "TS95034", - "title": "Rewrite all as indexed access types", - "category": "message", - "documentation": "" -} diff --git a/db/95035.json b/db/95035.json deleted file mode 100644 index d7d80ff..0000000 --- a/db/95035.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95035, - "codeText": "TS95035", - "title": "Convert all to default imports", - "category": "message", - "documentation": "" -} diff --git a/db/95036.json b/db/95036.json deleted file mode 100644 index 7427ff8..0000000 --- a/db/95036.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95036, - "codeText": "TS95036", - "title": "Make all 'super()' calls the first statement in their constructor", - "category": "message", - "documentation": "" -} diff --git a/db/95037.json b/db/95037.json deleted file mode 100644 index f68b0cf..0000000 --- a/db/95037.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95037, - "codeText": "TS95037", - "title": "Add qualifier to all unresolved variables matching a member name", - "category": "message", - "documentation": "" -} diff --git a/db/95038.json b/db/95038.json deleted file mode 100644 index 04f574e..0000000 --- a/db/95038.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95038, - "codeText": "TS95038", - "title": "Change all extended interfaces to 'implements'", - "category": "message", - "documentation": "" -} diff --git a/db/95039.json b/db/95039.json deleted file mode 100644 index dcfb76e..0000000 --- a/db/95039.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95039, - "codeText": "TS95039", - "title": "Add all missing super calls", - "category": "message", - "documentation": "" -} diff --git a/db/95040.json b/db/95040.json deleted file mode 100644 index 16cf54f..0000000 --- a/db/95040.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95040, - "codeText": "TS95040", - "title": "Implement all inherited abstract classes", - "category": "message", - "documentation": "" -} diff --git a/db/95041.json b/db/95041.json deleted file mode 100644 index 2e66e35..0000000 --- a/db/95041.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95041, - "codeText": "TS95041", - "title": "Add all missing 'async' modifiers", - "category": "message", - "documentation": "" -} diff --git a/db/95042.json b/db/95042.json deleted file mode 100644 index 23b4aaa..0000000 --- a/db/95042.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95042, - "codeText": "TS95042", - "title": "Add '@ts-ignore' to all error messages", - "category": "message", - "documentation": "" -} diff --git a/db/95043.json b/db/95043.json deleted file mode 100644 index cefa437..0000000 --- a/db/95043.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95043, - "codeText": "TS95043", - "title": "Annotate everything with types from JSDoc", - "category": "message", - "documentation": "" -} diff --git a/db/95044.json b/db/95044.json deleted file mode 100644 index c03d6a9..0000000 --- a/db/95044.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95044, - "codeText": "TS95044", - "title": "Add '()' to all uncalled decorators", - "category": "message", - "documentation": "" -} diff --git a/db/95045.json b/db/95045.json deleted file mode 100644 index c8ee418..0000000 --- a/db/95045.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95045, - "codeText": "TS95045", - "title": "Convert all constructor functions to classes", - "category": "message", - "documentation": "" -} diff --git a/db/95046.json b/db/95046.json deleted file mode 100644 index 236c475..0000000 --- a/db/95046.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95046, - "codeText": "TS95046", - "title": "Generate 'get' and 'set' accessors", - "category": "message", - "documentation": "" -} diff --git a/db/95047.json b/db/95047.json deleted file mode 100644 index 8c551a0..0000000 --- a/db/95047.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95047, - "codeText": "TS95047", - "title": "Convert 'require' to 'import'", - "category": "message", - "documentation": "" -} diff --git a/db/95048.json b/db/95048.json deleted file mode 100644 index 4d7a12e..0000000 --- a/db/95048.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95048, - "codeText": "TS95048", - "title": "Convert all 'require' to 'import'", - "category": "message", - "documentation": "" -} diff --git a/db/95049.json b/db/95049.json deleted file mode 100644 index a78f60d..0000000 --- a/db/95049.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95049, - "codeText": "TS95049", - "title": "Move to a new file", - "category": "message", - "documentation": "" -} diff --git a/db/95050.json b/db/95050.json deleted file mode 100644 index 686feba..0000000 --- a/db/95050.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95050, - "codeText": "TS95050", - "title": "Remove unreachable code", - "category": "message", - "documentation": "" -} diff --git a/db/95051.json b/db/95051.json deleted file mode 100644 index 3ab9a84..0000000 --- a/db/95051.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95051, - "codeText": "TS95051", - "title": "Remove all unreachable code", - "category": "message", - "documentation": "" -} diff --git a/db/95052.json b/db/95052.json deleted file mode 100644 index 0eb2b0d..0000000 --- a/db/95052.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95052, - "codeText": "TS95052", - "title": "Add missing 'typeof'", - "category": "message", - "documentation": "" -} diff --git a/db/95053.json b/db/95053.json deleted file mode 100644 index 747488a..0000000 --- a/db/95053.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95053, - "codeText": "TS95053", - "title": "Remove unused label", - "category": "message", - "documentation": "" -} diff --git a/db/95054.json b/db/95054.json deleted file mode 100644 index f453ec4..0000000 --- a/db/95054.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95054, - "codeText": "TS95054", - "title": "Remove all unused labels", - "category": "message", - "documentation": "" -} diff --git a/db/95055.json b/db/95055.json deleted file mode 100644 index ea12881..0000000 --- a/db/95055.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95055, - "codeText": "TS95055", - "title": "Convert '{0}' to mapped object type", - "category": "message", - "documentation": "" -} diff --git a/db/95056.json b/db/95056.json deleted file mode 100644 index 8a3be64..0000000 --- a/db/95056.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95056, - "codeText": "TS95056", - "title": "Convert namespace import to named imports", - "category": "message", - "documentation": "" -} diff --git a/db/95057.json b/db/95057.json deleted file mode 100644 index ec165ed..0000000 --- a/db/95057.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95057, - "codeText": "TS95057", - "title": "Convert named imports to namespace import", - "category": "message", - "documentation": "" -} diff --git a/db/95058.json b/db/95058.json deleted file mode 100644 index 8eb6d3a..0000000 --- a/db/95058.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95058, - "codeText": "TS95058", - "title": "Add or remove braces in an arrow function", - "category": "message", - "documentation": "" -} diff --git a/db/95059.json b/db/95059.json deleted file mode 100644 index 92ecf75..0000000 --- a/db/95059.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95059, - "codeText": "TS95059", - "title": "Add braces to arrow function", - "category": "message", - "documentation": "" -} diff --git a/db/95060.json b/db/95060.json deleted file mode 100644 index 3645947..0000000 --- a/db/95060.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95060, - "codeText": "TS95060", - "title": "Remove braces from arrow function", - "category": "message", - "documentation": "" -} diff --git a/db/95061.json b/db/95061.json deleted file mode 100644 index 98210c4..0000000 --- a/db/95061.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95061, - "codeText": "TS95061", - "title": "Convert default export to named export", - "category": "message", - "documentation": "" -} diff --git a/db/95062.json b/db/95062.json deleted file mode 100644 index 37e0e78..0000000 --- a/db/95062.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95062, - "codeText": "TS95062", - "title": "Convert named export to default export", - "category": "message", - "documentation": "" -} diff --git a/db/95063.json b/db/95063.json deleted file mode 100644 index 427ec8a..0000000 --- a/db/95063.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95063, - "codeText": "TS95063", - "title": "Add missing enum member '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/95064.json b/db/95064.json deleted file mode 100644 index f7909f2..0000000 --- a/db/95064.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95064, - "codeText": "TS95064", - "title": "Add all missing imports", - "category": "message", - "documentation": "" -} diff --git a/db/95065.json b/db/95065.json deleted file mode 100644 index 0272a2c..0000000 --- a/db/95065.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95065, - "codeText": "TS95065", - "title": "Convert to async function", - "category": "message", - "documentation": "" -} diff --git a/db/95066.json b/db/95066.json deleted file mode 100644 index 592e197..0000000 --- a/db/95066.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95066, - "codeText": "TS95066", - "title": "Convert all to async functions", - "category": "message", - "documentation": "" -} diff --git a/db/95067.json b/db/95067.json deleted file mode 100644 index 03f7baa..0000000 --- a/db/95067.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95067, - "codeText": "TS95067", - "title": "Add missing call parentheses", - "category": "message", - "documentation": "" -} diff --git a/db/95068.json b/db/95068.json deleted file mode 100644 index 72b9758..0000000 --- a/db/95068.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95068, - "codeText": "TS95068", - "title": "Add all missing call parentheses", - "category": "message", - "documentation": "" -} diff --git a/db/95069.json b/db/95069.json deleted file mode 100644 index 8993fea..0000000 --- a/db/95069.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95069, - "codeText": "TS95069", - "title": "Add 'unknown' conversion for non-overlapping types", - "category": "message", - "documentation": "" -} diff --git a/db/95070.json b/db/95070.json deleted file mode 100644 index 03d4b0d..0000000 --- a/db/95070.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95070, - "codeText": "TS95070", - "title": "Add 'unknown' to all conversions of non-overlapping types", - "category": "message", - "documentation": "" -} diff --git a/db/95071.json b/db/95071.json deleted file mode 100644 index 94b3884..0000000 --- a/db/95071.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95071, - "codeText": "TS95071", - "title": "Add missing 'new' operator to call", - "category": "message", - "documentation": "" -} diff --git a/db/95072.json b/db/95072.json deleted file mode 100644 index 2c54502..0000000 --- a/db/95072.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95072, - "codeText": "TS95072", - "title": "Add missing 'new' operator to all calls", - "category": "message", - "documentation": "" -} diff --git a/db/95073.json b/db/95073.json deleted file mode 100644 index 25abdb5..0000000 --- a/db/95073.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95073, - "codeText": "TS95073", - "title": "Add names to all parameters without names", - "category": "message", - "documentation": "" -} diff --git a/db/95074.json b/db/95074.json deleted file mode 100644 index 540ac29..0000000 --- a/db/95074.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95074, - "codeText": "TS95074", - "title": "Enable the 'experimentalDecorators' option in your configuration file", - "category": "message", - "documentation": "" -} diff --git a/db/95075.json b/db/95075.json deleted file mode 100644 index 573edce..0000000 --- a/db/95075.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95075, - "codeText": "TS95075", - "title": "Convert parameters to destructured object", - "category": "message", - "documentation": "" -} diff --git a/db/95077.json b/db/95077.json deleted file mode 100644 index 11b16e5..0000000 --- a/db/95077.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95077, - "codeText": "TS95077", - "title": "Extract type", - "category": "message", - "documentation": "" -} diff --git a/db/95078.json b/db/95078.json deleted file mode 100644 index f9ed85a..0000000 --- a/db/95078.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95078, - "codeText": "TS95078", - "title": "Extract to type alias", - "category": "message", - "documentation": "" -} diff --git a/db/95079.json b/db/95079.json deleted file mode 100644 index 710159a..0000000 --- a/db/95079.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95079, - "codeText": "TS95079", - "title": "Extract to typedef", - "category": "message", - "documentation": "" -} diff --git a/db/95080.json b/db/95080.json deleted file mode 100644 index 700230b..0000000 --- a/db/95080.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95080, - "codeText": "TS95080", - "title": "Infer 'this' type of '{0}' from usage", - "category": "message", - "documentation": "" -} diff --git a/db/95081.json b/db/95081.json deleted file mode 100644 index 1e62950..0000000 --- a/db/95081.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95081, - "codeText": "TS95081", - "title": "Add 'const' to unresolved variable", - "category": "message", - "documentation": "" -} diff --git a/db/95082.json b/db/95082.json deleted file mode 100644 index 7e0125e..0000000 --- a/db/95082.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95082, - "codeText": "TS95082", - "title": "Add 'const' to all unresolved variables", - "category": "message", - "documentation": "" -} diff --git a/db/95083.json b/db/95083.json deleted file mode 100644 index fbb9d16..0000000 --- a/db/95083.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95083, - "codeText": "TS95083", - "title": "Add 'await'", - "category": "message", - "documentation": "" -} diff --git a/db/95084.json b/db/95084.json deleted file mode 100644 index 1c0c7e8..0000000 --- a/db/95084.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95084, - "codeText": "TS95084", - "title": "Add 'await' to initializer for '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/95085.json b/db/95085.json deleted file mode 100644 index 9b2dd64..0000000 --- a/db/95085.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95085, - "codeText": "TS95085", - "title": "Fix all expressions possibly missing 'await'", - "category": "message", - "documentation": "" -} diff --git a/db/95086.json b/db/95086.json deleted file mode 100644 index 44cdce6..0000000 --- a/db/95086.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95086, - "codeText": "TS95086", - "title": "Remove unnecessary 'await'", - "category": "message", - "documentation": "" -} diff --git a/db/95087.json b/db/95087.json deleted file mode 100644 index c6cdf7b..0000000 --- a/db/95087.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95087, - "codeText": "TS95087", - "title": "Remove all unnecessary uses of 'await'", - "category": "message", - "documentation": "" -} diff --git a/db/95088.json b/db/95088.json deleted file mode 100644 index fbaa24e..0000000 --- a/db/95088.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95088, - "codeText": "TS95088", - "title": "Enable the '--jsx' flag in your configuration file", - "category": "message", - "documentation": "" -} diff --git a/db/95089.json b/db/95089.json deleted file mode 100644 index b611c05..0000000 --- a/db/95089.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95089, - "codeText": "TS95089", - "title": "Add 'await' to initializers", - "category": "message", - "documentation": "" -} diff --git a/db/95090.json b/db/95090.json deleted file mode 100644 index 77d8567..0000000 --- a/db/95090.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95090, - "codeText": "TS95090", - "title": "Extract to interface", - "category": "message", - "documentation": "" -} diff --git a/db/95091.json b/db/95091.json deleted file mode 100644 index fc86219..0000000 --- a/db/95091.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95091, - "codeText": "TS95091", - "title": "Convert to a bigint numeric literal", - "category": "message", - "documentation": "" -} diff --git a/db/95092.json b/db/95092.json deleted file mode 100644 index 4d7675d..0000000 --- a/db/95092.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95092, - "codeText": "TS95092", - "title": "Convert all to bigint numeric literals", - "category": "message", - "documentation": "" -} diff --git a/db/95093.json b/db/95093.json deleted file mode 100644 index e7f2bde..0000000 --- a/db/95093.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95093, - "codeText": "TS95093", - "title": "Convert 'const' to 'let'", - "category": "message", - "documentation": "" -} diff --git a/db/95094.json b/db/95094.json deleted file mode 100644 index aa34dd6..0000000 --- a/db/95094.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95094, - "codeText": "TS95094", - "title": "Prefix with 'declare'", - "category": "message", - "documentation": "" -} diff --git a/db/95095.json b/db/95095.json deleted file mode 100644 index 02907bd..0000000 --- a/db/95095.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95095, - "codeText": "TS95095", - "title": "Prefix all incorrect property declarations with 'declare'", - "category": "message", - "documentation": "" -} diff --git a/db/95096.json b/db/95096.json deleted file mode 100644 index 508ae5a..0000000 --- a/db/95096.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95096, - "codeText": "TS95096", - "title": "Convert to template string", - "category": "message", - "documentation": "" -} diff --git a/db/95097.json b/db/95097.json deleted file mode 100644 index 2f3b999..0000000 --- a/db/95097.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95097, - "codeText": "TS95097", - "title": "Add 'export {}' to make this file into a module", - "category": "message", - "documentation": "" -} diff --git a/db/95098.json b/db/95098.json deleted file mode 100644 index f5a9086..0000000 --- a/db/95098.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95098, - "codeText": "TS95098", - "title": "Set the 'target' option in your configuration file to '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/95099.json b/db/95099.json deleted file mode 100644 index 5db5769..0000000 --- a/db/95099.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95099, - "codeText": "TS95099", - "title": "Set the 'module' option in your configuration file to '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/95100.json b/db/95100.json deleted file mode 100644 index 36bac19..0000000 --- a/db/95100.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95100, - "codeText": "TS95100", - "title": "Convert invalid character to its html entity code", - "category": "message", - "documentation": "" -} diff --git a/db/95101.json b/db/95101.json deleted file mode 100644 index df1440a..0000000 --- a/db/95101.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95101, - "codeText": "TS95101", - "title": "Convert all invalid characters to HTML entity code", - "category": "message", - "documentation": "" -} diff --git a/db/95102.json b/db/95102.json deleted file mode 100644 index 4866e63..0000000 --- a/db/95102.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95102, - "codeText": "TS95102", - "title": "Convert all 'const' to 'let'", - "category": "message", - "documentation": "" -} diff --git a/db/95105.json b/db/95105.json deleted file mode 100644 index c0966c0..0000000 --- a/db/95105.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95105, - "codeText": "TS95105", - "title": "Convert function expression '{0}' to arrow function", - "category": "message", - "documentation": "" -} diff --git a/db/95106.json b/db/95106.json deleted file mode 100644 index e48ad7b..0000000 --- a/db/95106.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95106, - "codeText": "TS95106", - "title": "Convert function declaration '{0}' to arrow function", - "category": "message", - "documentation": "" -} diff --git a/db/95107.json b/db/95107.json deleted file mode 100644 index aa27ba1..0000000 --- a/db/95107.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95107, - "codeText": "TS95107", - "title": "Fix all implicit-'this' errors", - "category": "message", - "documentation": "" -} diff --git a/db/95108.json b/db/95108.json deleted file mode 100644 index a66e107..0000000 --- a/db/95108.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95108, - "codeText": "TS95108", - "title": "Wrap invalid character in an expression container", - "category": "message", - "documentation": "" -} diff --git a/db/95109.json b/db/95109.json deleted file mode 100644 index 4e21cbf..0000000 --- a/db/95109.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95109, - "codeText": "TS95109", - "title": "Wrap all invalid characters in an expression container", - "category": "message", - "documentation": "" -} diff --git a/db/95110.json b/db/95110.json deleted file mode 100644 index 78591e6..0000000 --- a/db/95110.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95110, - "codeText": "TS95110", - "title": "Visit https://aka.ms/tsconfig to read more about this file", - "category": "message", - "documentation": "" -} diff --git a/db/95111.json b/db/95111.json deleted file mode 100644 index 63830af..0000000 --- a/db/95111.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95111, - "codeText": "TS95111", - "title": "Add a return statement", - "category": "message", - "documentation": "" -} diff --git a/db/95112.json b/db/95112.json deleted file mode 100644 index 8b160a7..0000000 --- a/db/95112.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95112, - "codeText": "TS95112", - "title": "Remove braces from arrow function body", - "category": "message", - "documentation": "" -} diff --git a/db/95113.json b/db/95113.json deleted file mode 100644 index 67e0f22..0000000 --- a/db/95113.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95113, - "codeText": "TS95113", - "title": "Wrap the following body with parentheses which should be an object literal", - "category": "message", - "documentation": "" -} diff --git a/db/95114.json b/db/95114.json deleted file mode 100644 index 053d89f..0000000 --- a/db/95114.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95114, - "codeText": "TS95114", - "title": "Add all missing return statement", - "category": "message", - "documentation": "" -} diff --git a/db/95115.json b/db/95115.json deleted file mode 100644 index 0021d91..0000000 --- a/db/95115.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95115, - "codeText": "TS95115", - "title": "Remove braces from all arrow function bodies with relevant issues", - "category": "message", - "documentation": "" -} diff --git a/db/95116.json b/db/95116.json deleted file mode 100644 index 58ff1b5..0000000 --- a/db/95116.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95116, - "codeText": "TS95116", - "title": "Wrap all object literal with parentheses", - "category": "message", - "documentation": "" -} diff --git a/db/95117.json b/db/95117.json deleted file mode 100644 index 67f454d..0000000 --- a/db/95117.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95117, - "codeText": "TS95117", - "title": "Move labeled tuple element modifiers to labels", - "category": "message", - "documentation": "" -} diff --git a/db/95118.json b/db/95118.json deleted file mode 100644 index 1c53f67..0000000 --- a/db/95118.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95118, - "codeText": "TS95118", - "title": "Convert overload list to single signature", - "category": "message", - "documentation": "" -} diff --git a/db/95119.json b/db/95119.json deleted file mode 100644 index 8849ad5..0000000 --- a/db/95119.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95119, - "codeText": "TS95119", - "title": "Generate 'get' and 'set' accessors for all overriding properties", - "category": "message", - "documentation": "" -} diff --git a/db/95120.json b/db/95120.json deleted file mode 100644 index ce7972e..0000000 --- a/db/95120.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95120, - "codeText": "TS95120", - "title": "Wrap in JSX fragment", - "category": "message", - "documentation": "" -} diff --git a/db/95121.json b/db/95121.json deleted file mode 100644 index 97886de..0000000 --- a/db/95121.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95121, - "codeText": "TS95121", - "title": "Wrap all unparented JSX in JSX fragment", - "category": "message", - "documentation": "" -} diff --git a/db/95122.json b/db/95122.json deleted file mode 100644 index 1039845..0000000 --- a/db/95122.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95122, - "codeText": "TS95122", - "title": "Convert arrow function or function expression", - "category": "message", - "documentation": "" -} diff --git a/db/95123.json b/db/95123.json deleted file mode 100644 index 9cfcb60..0000000 --- a/db/95123.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95123, - "codeText": "TS95123", - "title": "Convert to anonymous function", - "category": "message", - "documentation": "" -} diff --git a/db/95124.json b/db/95124.json deleted file mode 100644 index 928545c..0000000 --- a/db/95124.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95124, - "codeText": "TS95124", - "title": "Convert to named function", - "category": "message", - "documentation": "" -} diff --git a/db/95125.json b/db/95125.json deleted file mode 100644 index 27cb72d..0000000 --- a/db/95125.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95125, - "codeText": "TS95125", - "title": "Convert to arrow function", - "category": "message", - "documentation": "" -} diff --git a/db/95126.json b/db/95126.json deleted file mode 100644 index 1aa7a7f..0000000 --- a/db/95126.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95126, - "codeText": "TS95126", - "title": "Remove parentheses", - "category": "message", - "documentation": "" -} diff --git a/db/95127.json b/db/95127.json deleted file mode 100644 index 30093c6..0000000 --- a/db/95127.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95127, - "codeText": "TS95127", - "title": "Could not find a containing arrow function", - "category": "message", - "documentation": "" -} diff --git a/db/95128.json b/db/95128.json deleted file mode 100644 index ef412a7..0000000 --- a/db/95128.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95128, - "codeText": "TS95128", - "title": "Containing function is not an arrow function", - "category": "message", - "documentation": "" -} diff --git a/db/95129.json b/db/95129.json deleted file mode 100644 index 5b0a639..0000000 --- a/db/95129.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95129, - "codeText": "TS95129", - "title": "Could not find export statement", - "category": "message", - "documentation": "" -} diff --git a/db/95130.json b/db/95130.json deleted file mode 100644 index 3d922a2..0000000 --- a/db/95130.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95130, - "codeText": "TS95130", - "title": "This file already has a default export", - "category": "message", - "documentation": "" -} diff --git a/db/95131.json b/db/95131.json deleted file mode 100644 index ebcf98a..0000000 --- a/db/95131.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95131, - "codeText": "TS95131", - "title": "Could not find import clause", - "category": "message", - "documentation": "" -} diff --git a/db/95132.json b/db/95132.json deleted file mode 100644 index 84cb03d..0000000 --- a/db/95132.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95132, - "codeText": "TS95132", - "title": "Could not find namespace import or named imports", - "category": "message", - "documentation": "" -} diff --git a/db/95133.json b/db/95133.json deleted file mode 100644 index d3b0b80..0000000 --- a/db/95133.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95133, - "codeText": "TS95133", - "title": "Selection is not a valid type node", - "category": "message", - "documentation": "" -} diff --git a/db/95134.json b/db/95134.json deleted file mode 100644 index e7c2c87..0000000 --- a/db/95134.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95134, - "codeText": "TS95134", - "title": "No type could be extracted from this type node", - "category": "message", - "documentation": "" -} diff --git a/db/95135.json b/db/95135.json deleted file mode 100644 index 67e5e38..0000000 --- a/db/95135.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95135, - "codeText": "TS95135", - "title": "Could not find property for which to generate accessor", - "category": "message", - "documentation": "" -} diff --git a/db/95136.json b/db/95136.json deleted file mode 100644 index cf73797..0000000 --- a/db/95136.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95136, - "codeText": "TS95136", - "title": "Name is not valid", - "category": "message", - "documentation": "" -} diff --git a/db/95137.json b/db/95137.json deleted file mode 100644 index 1689a45..0000000 --- a/db/95137.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95137, - "codeText": "TS95137", - "title": "Can only convert property with modifier", - "category": "message", - "documentation": "" -} diff --git a/db/95138.json b/db/95138.json deleted file mode 100644 index 366e38e..0000000 --- a/db/95138.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95138, - "codeText": "TS95138", - "title": "Switch each misused '{0}' to '{1}'", - "category": "message", - "documentation": "" -} diff --git a/db/95139.json b/db/95139.json deleted file mode 100644 index a50f529..0000000 --- a/db/95139.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95139, - "codeText": "TS95139", - "title": "Convert to optional chain expression", - "category": "message", - "documentation": "" -} diff --git a/db/95140.json b/db/95140.json deleted file mode 100644 index 72e1344..0000000 --- a/db/95140.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95140, - "codeText": "TS95140", - "title": "Could not find convertible access expression", - "category": "message", - "documentation": "" -} diff --git a/db/95141.json b/db/95141.json deleted file mode 100644 index 7cf3c84..0000000 --- a/db/95141.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95141, - "codeText": "TS95141", - "title": "Could not find matching access expressions", - "category": "message", - "documentation": "" -} diff --git a/db/95142.json b/db/95142.json deleted file mode 100644 index 128c40a..0000000 --- a/db/95142.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95142, - "codeText": "TS95142", - "title": "Can only convert logical AND access chains", - "category": "message", - "documentation": "" -} diff --git a/db/95143.json b/db/95143.json deleted file mode 100644 index b827ae1..0000000 --- a/db/95143.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95143, - "codeText": "TS95143", - "title": "Add 'void' to Promise resolved without a value", - "category": "message", - "documentation": "" -} diff --git a/db/95144.json b/db/95144.json deleted file mode 100644 index 2a5966f..0000000 --- a/db/95144.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95144, - "codeText": "TS95144", - "title": "Add 'void' to all Promises resolved without a value", - "category": "message", - "documentation": "" -} diff --git a/db/95145.json b/db/95145.json deleted file mode 100644 index 64ac298..0000000 --- a/db/95145.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95145, - "codeText": "TS95145", - "title": "Use element access for '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/95146.json b/db/95146.json deleted file mode 100644 index 0c9ba09..0000000 --- a/db/95146.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95146, - "codeText": "TS95146", - "title": "Use element access for all undeclared properties.", - "category": "message", - "documentation": "" -} diff --git a/db/95147.json b/db/95147.json deleted file mode 100644 index 520641c..0000000 --- a/db/95147.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95147, - "codeText": "TS95147", - "title": "Delete all unused imports", - "category": "message", - "documentation": "" -} diff --git a/db/95148.json b/db/95148.json deleted file mode 100644 index 5214b5e..0000000 --- a/db/95148.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95148, - "codeText": "TS95148", - "title": "Infer function return type", - "category": "message", - "documentation": "" -} diff --git a/db/95149.json b/db/95149.json deleted file mode 100644 index cbeee6e..0000000 --- a/db/95149.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95149, - "codeText": "TS95149", - "title": "Return type must be inferred from a function", - "category": "message", - "documentation": "" -} diff --git a/db/95150.json b/db/95150.json deleted file mode 100644 index 7bffc04..0000000 --- a/db/95150.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95150, - "codeText": "TS95150", - "title": "Could not determine function return type", - "category": "message", - "documentation": "" -} diff --git a/db/95151.json b/db/95151.json deleted file mode 100644 index 06f75d4..0000000 --- a/db/95151.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95151, - "codeText": "TS95151", - "title": "Could not convert to arrow function", - "category": "message", - "documentation": "" -} diff --git a/db/95152.json b/db/95152.json deleted file mode 100644 index 8bef770..0000000 --- a/db/95152.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95152, - "codeText": "TS95152", - "title": "Could not convert to named function", - "category": "message", - "documentation": "" -} diff --git a/db/95153.json b/db/95153.json deleted file mode 100644 index 92bcf10..0000000 --- a/db/95153.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95153, - "codeText": "TS95153", - "title": "Could not convert to anonymous function", - "category": "message", - "documentation": "" -} diff --git a/db/95154.json b/db/95154.json deleted file mode 100644 index b4ef052..0000000 --- a/db/95154.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95154, - "codeText": "TS95154", - "title": "Can only convert string concatenation", - "category": "message", - "documentation": "" -} diff --git a/db/95155.json b/db/95155.json deleted file mode 100644 index 240132f..0000000 --- a/db/95155.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95155, - "codeText": "TS95155", - "title": "Selection is not a valid statement or statements", - "category": "message", - "documentation": "" -} diff --git a/db/95156.json b/db/95156.json deleted file mode 100644 index 64427f8..0000000 --- a/db/95156.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95156, - "codeText": "TS95156", - "title": "Add missing function declaration '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/95157.json b/db/95157.json deleted file mode 100644 index 3be6f62..0000000 --- a/db/95157.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95157, - "codeText": "TS95157", - "title": "Add all missing function declarations", - "category": "message", - "documentation": "" -} diff --git a/db/95158.json b/db/95158.json deleted file mode 100644 index 6370d0d..0000000 --- a/db/95158.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95158, - "codeText": "TS95158", - "title": "Method not implemented.", - "category": "message", - "documentation": "" -} diff --git a/db/95159.json b/db/95159.json deleted file mode 100644 index a11f57a..0000000 --- a/db/95159.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95159, - "codeText": "TS95159", - "title": "Function not implemented.", - "category": "message", - "documentation": "" -} diff --git a/db/95160.json b/db/95160.json deleted file mode 100644 index 8711ed1..0000000 --- a/db/95160.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95160, - "codeText": "TS95160", - "title": "Add 'override' modifier", - "category": "message", - "documentation": "" -} diff --git a/db/95161.json b/db/95161.json deleted file mode 100644 index 421f901..0000000 --- a/db/95161.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95161, - "codeText": "TS95161", - "title": "Remove 'override' modifier", - "category": "message", - "documentation": "" -} diff --git a/db/95162.json b/db/95162.json deleted file mode 100644 index 880ac6c..0000000 --- a/db/95162.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95162, - "codeText": "TS95162", - "title": "Add all missing 'override' modifiers", - "category": "message", - "documentation": "" -} diff --git a/db/95163.json b/db/95163.json deleted file mode 100644 index 073a4d8..0000000 --- a/db/95163.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95163, - "codeText": "TS95163", - "title": "Remove all unnecessary 'override' modifiers", - "category": "message", - "documentation": "" -} diff --git a/db/95164.json b/db/95164.json deleted file mode 100644 index fcf2ed6..0000000 --- a/db/95164.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95164, - "codeText": "TS95164", - "title": "Can only convert named export", - "category": "message", - "documentation": "" -} diff --git a/db/95165.json b/db/95165.json deleted file mode 100644 index f46cb75..0000000 --- a/db/95165.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95165, - "codeText": "TS95165", - "title": "Add missing properties", - "category": "message", - "documentation": "" -} diff --git a/db/95166.json b/db/95166.json deleted file mode 100644 index e7dfc78..0000000 --- a/db/95166.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95166, - "codeText": "TS95166", - "title": "Add all missing properties", - "category": "message", - "documentation": "" -} diff --git a/db/95167.json b/db/95167.json deleted file mode 100644 index 3d3d8d0..0000000 --- a/db/95167.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95167, - "codeText": "TS95167", - "title": "Add missing attributes", - "category": "message", - "documentation": "" -} diff --git a/db/95168.json b/db/95168.json deleted file mode 100644 index f45238e..0000000 --- a/db/95168.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95168, - "codeText": "TS95168", - "title": "Add all missing attributes", - "category": "message", - "documentation": "" -} diff --git a/db/95169.json b/db/95169.json deleted file mode 100644 index c2746d2..0000000 --- a/db/95169.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95169, - "codeText": "TS95169", - "title": "Add 'undefined' to optional property type", - "category": "message", - "documentation": "" -} diff --git a/db/95170.json b/db/95170.json deleted file mode 100644 index ad1e016..0000000 --- a/db/95170.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95170, - "codeText": "TS95170", - "title": "Convert named imports to default import", - "category": "message", - "documentation": "" -} diff --git a/db/95171.json b/db/95171.json deleted file mode 100644 index 61646e1..0000000 --- a/db/95171.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95171, - "codeText": "TS95171", - "title": "Delete unused '@param' tag '{0}'", - "category": "message", - "documentation": "" -} diff --git a/db/95172.json b/db/95172.json deleted file mode 100644 index 75420e9..0000000 --- a/db/95172.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95172, - "codeText": "TS95172", - "title": "Delete all unused '@param' tags", - "category": "message", - "documentation": "" -} diff --git a/db/95173.json b/db/95173.json deleted file mode 100644 index 8af715d..0000000 --- a/db/95173.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95173, - "codeText": "TS95173", - "title": "Rename '@param' tag name '{0}' to '{1}'", - "category": "message", - "documentation": "" -} diff --git a/db/95174.json b/db/95174.json deleted file mode 100644 index 1865afc..0000000 --- a/db/95174.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95174, - "codeText": "TS95174", - "title": "Use `{0}`.", - "category": "message", - "documentation": "" -} diff --git a/db/95175.json b/db/95175.json deleted file mode 100644 index 1149490..0000000 --- a/db/95175.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95175, - "codeText": "TS95175", - "title": "Use `Number.isNaN` in all conditions.", - "category": "message", - "documentation": "" -} diff --git a/db/95176.json b/db/95176.json deleted file mode 100644 index f23c1c3..0000000 --- a/db/95176.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95176, - "codeText": "TS95176", - "title": "Convert typedef to TypeScript type.", - "category": "message", - "documentation": "" -} diff --git a/db/95177.json b/db/95177.json deleted file mode 100644 index 80e0bae..0000000 --- a/db/95177.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95177, - "codeText": "TS95177", - "title": "Convert all typedef to TypeScript types.", - "category": "message", - "documentation": "" -} diff --git a/db/95178.json b/db/95178.json deleted file mode 100644 index 026cff6..0000000 --- a/db/95178.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95178, - "codeText": "TS95178", - "title": "Move to file", - "category": "message", - "documentation": "" -} diff --git a/db/95179.json b/db/95179.json deleted file mode 100644 index b9189e3..0000000 --- a/db/95179.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95179, - "codeText": "TS95179", - "title": "Cannot move to file, selected file is invalid", - "category": "message", - "documentation": "" -} diff --git a/db/95180.json b/db/95180.json deleted file mode 100644 index 84d80c7..0000000 --- a/db/95180.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95180, - "codeText": "TS95180", - "title": "Use 'import type'", - "category": "message", - "documentation": "" -} diff --git a/db/95181.json b/db/95181.json deleted file mode 100644 index 675fbcf..0000000 --- a/db/95181.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95181, - "codeText": "TS95181", - "title": "Use 'type {0}'", - "category": "message", - "documentation": "" -} diff --git a/db/95182.json b/db/95182.json deleted file mode 100644 index 48006c3..0000000 --- a/db/95182.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95182, - "codeText": "TS95182", - "title": "Fix all with type-only imports", - "category": "message", - "documentation": "" -} diff --git a/db/95183.json b/db/95183.json deleted file mode 100644 index 0a1402e..0000000 --- a/db/95183.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95183, - "codeText": "TS95183", - "title": "Cannot move statements to the selected file", - "category": "message", - "documentation": "" -} diff --git a/db/95184.json b/db/95184.json deleted file mode 100644 index 43d1a29..0000000 --- a/db/95184.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95184, - "codeText": "TS95184", - "title": "Inline variable", - "category": "message", - "documentation": "" -} diff --git a/db/95185.json b/db/95185.json deleted file mode 100644 index eca2bb1..0000000 --- a/db/95185.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95185, - "codeText": "TS95185", - "title": "Could not find variable to inline.", - "category": "message", - "documentation": "" -} diff --git a/db/95186.json b/db/95186.json deleted file mode 100644 index 8c8ab12..0000000 --- a/db/95186.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95186, - "codeText": "TS95186", - "title": "Variables with multiple declarations cannot be inlined.", - "category": "message", - "documentation": "" -} diff --git a/db/95187.json b/db/95187.json deleted file mode 100644 index 63eb0d5..0000000 --- a/db/95187.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "code": 95187, - "codeText": "TS95187", - "title": "Add missing comma for object member completion '{0}'.", - "category": "message", - "documentation": "" -} diff --git a/db/_all.json b/db/_all.json deleted file mode 100644 index 5529029..0000000 --- a/db/_all.json +++ /dev/null @@ -1,14268 +0,0 @@ -[ - { - "code": 1002, - "codeText": "TS1002", - "title": "Unterminated string literal.", - "category": "error", - "documentation": "Occurs when there is an unterminated string literal somewhere. String literals\nmust be enclosed by single (`'`) or double (`\"`) quotes.\n\nOften, it caused by an attempt to use a string literal over multiple lines:\n\n```ts\nconst str = \"Here is some text\n that I want to break\n across multiple lines.\";\n```\n", - "tags": [ - "syntax-error", - "incomplete-code", - "strings" - ], - "related": [ - 1003 - ], - "fixes": [ - { - "title": "Multiple Lines", - "body": "If you are trying to break a string across multiple lines, you can use template\nliterals using the backtick (`` ` ``) instead:\n\n```ts\nconst str = `Here is some text\n that I want to break\n across multiple lines.`;\n```\n\nOr you can use string concatenation:\n\n```ts\nconst str = \"Here is some text\" +\n \"that I want to break \" +\n \"across multiple lines.\";\n```\n\nOr you can use a backslash (`\\`) at the end of the line:\n\n```ts\nconst str = \"Here is some text \\\n that I want to break \\\n across multiple lines.\";\n```\n" - } - ] - }, - { - "code": 1003, - "codeText": "TS1003", - "title": "Identifier expected.", - "category": "error", - "documentation": "", - "tags": [ - "syntax-error", - "incomplete-code" - ], - "related": [ - 1002 - ] - }, - { - "code": 1005, - "codeText": "TS1005", - "title": "'{0}' expected.", - "category": "error", - "documentation": "Occurs when various syntax characters are making the code invalid.\n", - "tags": [ - "syntax-error", - "incomplete-code" - ], - "related": [ - 1002 - ], - "fixes": [ - { - "title": "'=' expected with type aliases", - "body": "Unlike interfaces, type aliases must have a left hand side and right hand side\nof a statement, so code like this is invalid syntax:\n\n```ts\ntype Person {\n age: number;\n name: string;\n}\n```\n\nInstead it should look like this:\n\n```ts\ntype Person = {\n age: number;\n name: string;\n};\n```\n" - }, - { - "title": "';' expected with arrow functions", - "body": "Code like this is trying to implicitly return an object with the map function,\nbut is actually invalid syntax:\n\n```ts\nconst items = [[\"a\", 1], [\"b\", 2]];\nconst mapped = items.map(([key, value]) => { [key]: value });\n```\n\nInstead, use parenthesis (`()`) around the return value:\n\n```ts\nconst items = [[\"a\", 1], [\"b\", 2]];\nconst mapped = items.map(([key, value]) => ({ [key]: value }));\n```\n" - } - ] - }, - { - "code": 1006, - "codeText": "TS1006", - "title": "A file cannot have a reference to itself.", - "category": "error", - "documentation": "When using\n[Triple-Slash Directives](https://www.typescriptlang.org/docs/handbook/triple-slash-directives.html),\nif a file references itself, this error will appear.\n\n**test.ts**\n\n```ts\n/// \n```\n", - "tags": [ - "triple-slash" - ], - "fixes": [ - { - "title": "Remove the reference", - "body": "To fix the issue, just remove the reference. It is unnecessary as you can\nalready access everything in the file.\n" - } - ] - }, - { - "code": 1007, - "codeText": "TS1007", - "title": "The parser expected to find a '{1}' to match the '{0}' token here.", - "category": "error", - "documentation": "" - }, - { - "code": 1009, - "codeText": "TS1009", - "title": "Trailing comma not allowed.", - "category": "error", - "documentation": "If an inheritance clause (`extends` or `implements`) has a trailing comma, this\nerror is reported:\n\n```ts\ninterface A {}\n\nclass B implements A {\n}\n```\n", - "tags": [ - "trailing-comma", - "syntax-error" - ], - "fixes": [ - { - "title": "Remove trailing comma", - "body": "Remove the trailing comma:\n\n```ts\ninterface A {}\n\nclass B implements A {\n}\n```\n" - } - ] - }, - { - "code": 1010, - "codeText": "TS1010", - "title": "'*/' expected.", - "category": "error", - "documentation": "Occurs when a block comment is not properly terminated before the end of the\nfile is reached:\n\n```ts\n/**\n * Comment text\n *\nfunction test() {}\n```\n", - "tags": [ - "syntax-error", - "incomplete-code" - ], - "fixes": [ - { - "title": "Terminate block comment", - "body": "Properly terminate the block comment:\n\n```ts\n/**\n * Comment text\n */\nfunction test() {}\n```\n" - } - ] - }, - { - "code": 1011, - "codeText": "TS1011", - "title": "An element access expression should take an argument.", - "category": "error", - "documentation": "When accessing a property of an array or object with bracket notation, you will\nget this error if no property is supplied.\n\n```ts\nconst a = [1, 2, 3]\nconst b = a[]\n\n// or\nconst c = { d: 4 }\nconst d = c[]\n```\n", - "tags": [ - "syntax-error", - "missing-code" - ], - "fixes": [ - { - "title": "Provide an index argument", - "body": "To fix the error, provide an index or property:\n\n```ts\nconst a = [1, 2, 3];\nconst b = a[1];\n\n// or\nconst c = { d: 4 };\nconst d = c[\"d\"];\n```\n" - } - ] - }, - { - "code": 1012, - "codeText": "TS1012", - "title": "Unexpected token.", - "category": "error", - "documentation": "" - }, - { - "code": 1013, - "codeText": "TS1013", - "title": "A rest parameter or binding pattern may not have a trailing comma.", - "category": "error", - "documentation": "If a function uses destructuring to consume the last argument in a function or\nhas a rest argument, the argument may not have a trailing comma.\n\n```ts\nfunction test(...args: any[]) {}\n```\n", - "tags": [ - "syntax-error", - "tailing-comma" - ], - "related": [ - 1014 - ], - "fixes": [ - { - "title": "Remove trailing comma", - "body": "To fix the error, remove the trailing comma:\n\n```ts\nfunction test(...args: any[]) {}\n```\n" - } - ] - }, - { - "code": 1014, - "codeText": "TS1014", - "title": "A rest parameter must be last in a parameter list.", - "category": "error", - "documentation": "It is not possible to have multiple rest parameters, or have rest parameters\nbefore regular parameters since they consume all other arguments.\n\n```ts\nfunction printf(...args: any[], format: string) {}\n// or\nfunction callMany(\n ...functions: ((...args: T[]) => void)[],\n ...args: T\n) {}\n```\n", - "tags": [ - "syntax-error" - ], - "related": [ - 1013 - ], - "fixes": [ - { - "title": "Move rest parameter to the end", - "body": "Consider moving the rest parameter to the end:\n\n```ts\nfunction printf(format: string, ...args: any[]) {}\n```\n" - }, - { - "title": "Accept an array", - "body": "Consider accepting an array of arguments:\n\n```ts\nfunction printf(args: any[], format: string) {}\n\nfunction callMany(\n functions: ((...args: T[]) => void)[],\n ...args: T\n) {}\n```\n" - } - ] - }, - { - "code": 1015, - "codeText": "TS1015", - "title": "Parameter cannot have question mark and initializer.", - "category": "error", - "documentation": "If a parameter is marked as optional with `?`, it means that passing `undefined`\nis acceptable. If a parameter is marked as optional by providing an initializer,\nit communicates to readers that if not provided (or set to `undefined`) the\ndefault will be used. It doesn't make sense to use both modifiers.\n\n```ts\nfunction test(a?: number = 0) {}\n```\n", - "tags": [ - "syntax-error" - ], - "related": [ - 1016 - ], - "fixes": [ - { - "title": "Remove the question mark or the initializer", - "body": "Remove the question mark if the default better communicates your intent, or\nremove the initializer:\n\n```ts\nfunction test(a: number = 0) {}\n// or\nfunction test(a?: number) {}\n```\n" - } - ] - }, - { - "code": 1016, - "codeText": "TS1016", - "title": "A required parameter cannot follow an optional parameter.", - "category": "error", - "documentation": "When a parameter is marked as optional with ? it indicates that callers can omit\nthe argument when calling the function. If another parameter is required after\nthe optional parameter, the ? would be effectively invalidated since users must\npass the argument in order to provide the later required argument.\n\n```ts\nfunction test(a?: number, b: number) {}\n```\n", - "tags": [ - "syntax-error" - ], - "related": [ - 1015 - ], - "fixes": [ - { - "title": "Allow the argument to be undefined.", - "body": "Explicitly union the first argument with undefined and omit the question mark:\n\n```ts\nfunction test(a: number | undefined, b: number) {}\n```\n" - }, - { - "title": "Re-order parameters", - "body": "Reorder the parameters so that required parameters appear before the optional\nones:\n\n```ts\nfunction test(b: number, a?: number) {}\n```\n" - } - ] - }, - { - "code": 1017, - "codeText": "TS1017", - "title": "An index signature cannot have a rest parameter.", - "category": "error", - "documentation": "When writing an index signature, there must be exactly one parameter which is\nnot a rest parameter:\n\n```ts\ninterface A {\n [...index: string]: boolean;\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Remove the ellipsis.", - "body": "To fix the error, just remove the ellipsis token (`...`):\n\n```ts\ninterface A {\n [index: string]: boolean;\n}\n```\n\nIf you meant to state that the describes a function, use parenthesis rather than\nbrackets:\n\n```ts\ninterface A {\n (...args: string[]): boolean;\n}\n```\n" - } - ] - }, - { - "code": 1018, - "codeText": "TS1018", - "title": "An index signature parameter cannot have an accessibility modifier.", - "category": "error", - "documentation": "Unlike regular function parameters, index signature parameters cannot have an\naccessibility modifier:\n\n```ts\ninterface A {\n [private index: string]: boolean;\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Remove accessability modifier.", - "body": "To fix the error, just remove the accessibility modifier:\n\n```ts\ninterface A {\n [index: string]: boolean;\n}\n```\n" - } - ] - }, - { - "code": 1019, - "codeText": "TS1019", - "title": "An index signature parameter cannot have a question mark.", - "category": "error", - "documentation": "Unlike regular function parameters, index signature parameters cannot be marked\noptional. The parameter will always exist when determining the type:\n\n```ts\ninterface A {\n [index?: string]: boolean;\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Remove the question mark token.", - "body": "To fix the error, just remove the `?` token:\n\n```ts\ninterface A {\n [index: string]: boolean;\n}\n```\n" - } - ] - }, - { - "code": 1020, - "codeText": "TS1020", - "title": "An index signature parameter cannot have an initializer.", - "category": "error", - "documentation": "" - }, - { - "code": 1021, - "codeText": "TS1021", - "title": "An index signature must have a type annotation.", - "category": "error", - "documentation": "When defining an index signature, the signature must provide a type:\n\n```\ninterface A {\n [a: string]\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Provide a type.", - "body": "To fix the error, provide a type. All other properties on the object must be\nassignable to this type:\n\n```ts\ninterface A {\n [a: string]: string;\n}\n```\n" - } - ] - }, - { - "code": 1022, - "codeText": "TS1022", - "title": "An index signature parameter must have a type annotation.", - "category": "error", - "documentation": "" - }, - { - "code": 1024, - "codeText": "TS1024", - "title": "'readonly' modifier can only appear on a property declaration or index signature.", - "category": "error", - "documentation": "It is not possible to mark all properties as `readonly` by marking the container\nas `readonly`:\n\n```ts\nreadonly class A {\n static x = 1;\n}\nreadonly const a = { a: 1 };\n```\n\n## See also\n\n- [TypeScript 3.4 release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-3-4/)\n- [`as const` proposal](https://github.com/Microsoft/TypeScript/issues/26979)\n", - "fixes": [ - { - "title": "Remove readonly keyword.", - "body": "To fix the error, move the `readonly` declaration into the object for classes:\n\n```ts\nclass A {\n static readonly x = 1;\n}\n```\n" - }, - { - "title": "Use const keyword.", - "body": "For objects, you can use const assertions to deeply mark the object as read\nonly.\n\n```ts\nconst a = { a: 1 } as const;\n```\n" - } - ] - }, - { - "code": 1025, - "codeText": "TS1025", - "title": "An index signature cannot have a trailing comma.", - "category": "error", - "documentation": "" - }, - { - "code": 1028, - "codeText": "TS1028", - "title": "Accessibility modifier already seen.", - "category": "error", - "documentation": "Members of a class can only have one accessibility modifier. If multiple are\nfound, this error will occur.\n\n```ts\nclass A {\n private public x!: number\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Remove duplicate modifier.", - "body": "To fix the error, remove one of the modifiers:\n\n```ts\nclass A {\n private x!: number;\n}\n```\n" - } - ] - }, - { - "code": 1029, - "codeText": "TS1029", - "title": "'{0}' modifier must precede '{1}' modifier.", - "category": "error", - "documentation": "Some modifiers must be placed in a specific order. For example the following is\ninvalid:\n\n```ts\nasync export function test() {\n return 1;\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Swap the order of the modifiers.", - "body": "Swap the order of the indicated modifiers:\n\n```ts\nexport async function test() {\n return 1;\n}\n```\n" - } - ] - }, - { - "code": 1030, - "codeText": "TS1030", - "title": "'{0}' modifier already seen.", - "category": "error", - "documentation": "Modifiers can only appear once per property. If a modifier is repeated, an error\nwill be shown:\n\n```ts\nclass A {\n readonly readonly x: string;\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Remove duplicated modifier.", - "body": "Remove the duplicated modifier:\n\n```ts\nclass A {\n readonly x: string;\n}\n```\n" - } - ] - }, - { - "code": 1031, - "codeText": "TS1031", - "title": "'{0}' modifier cannot appear on class elements of this kind.", - "category": "error", - "documentation": "Some modifiers don't make sense when applied to class elements:\n\n```ts\nclass A {\n declare a!: string;\n export b!: string;\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Remove invalid modifiers.", - "body": "Remove the invalid modifiers:\n\n```ts\nclass A {\n a!: string;\n b!: string;\n}\n```\n" - } - ] - }, - { - "code": 1034, - "codeText": "TS1034", - "title": "'super' must be followed by an argument list or member access.", - "category": "error", - "documentation": "When super appears in a derived class, it must be used, not just left as an\nempty statement:\n\n```ts\nclass Base {\n method() {\n console.log(\"Base#method\");\n }\n}\n\nclass A extends Base {\n method() {\n super; // Error\n }\n}\n```\n", - "tags": [ - "syntax-error" - ], - "fixes": [ - { - "title": "Invoke super as a function.", - "body": "Utilize `super()` in the method:\n\n```ts\nclass Base {\n method() {\n console.log(\"Base#method\");\n }\n}\n\nclass A extends Base {\n method() {\n super();\n }\n}\n```\n" - }, - { - "title": "Access a property of super.", - "body": "Access some property of the ancestor:\n\n```ts\nclass Base {\n prop = \"prop\";\n}\n\nclass A extends Base {\n constructor() {\n console.log(super.prop);\n }\n}\n```\n" - } - ] - }, - { - "code": 1035, - "codeText": "TS1035", - "title": "Only ambient modules can use quoted names.", - "category": "error", - "documentation": "When defining a module that can be imported via the `module` keyword, it must be\ndeclared as an ambient module. The following is an error:\n\n```ts\nmodule \"some-npm-module\" {\n export function run();\n}\n```\n", - "tags": [ - "syntax-error", - "typescript-only", - "declarations" - ], - "related": [ - 1039 - ], - "fixes": [ - { - "title": "Use the declare keyword.", - "body": "Utilize the `declare` keyword before the `module` keyword:\n\n```ts\ndeclare module \"some-npm-module\" {\n export function run();\n}\n```\n" - } - ] - }, - { - "code": 1036, - "codeText": "TS1036", - "title": "Statements are not allowed in ambient contexts.", - "category": "error", - "documentation": "When defining the shape of a module that is just a declaration, statements\naren't allowed as the represent \"functional\" code versus the \"shape\" of the\nmodule. For example the following is an error:\n\n```ts\ndeclare module \"some-npm-module\" {\n export const a = 1;\n a; // Error\n}\n```\n", - "tags": [ - "syntax-error", - "typescript-only", - "declarations" - ], - "fixes": [ - { - "title": "Remove statements.", - "body": "Remove any statements:\n\n```ts\ndeclare module \"some-npm-module\" {\n export const a = 1;\n}\n```\n" - } - ] - }, - { - "code": 1038, - "codeText": "TS1038", - "title": "A 'declare' modifier cannot be used in an already ambient context.", - "category": "error", - "documentation": "When defining the shape of a module in a declaration file, all definitions\nwithin the declared module are already ambient, so they do not need the declare\nattribute:\n\n```ts\ndeclare module \"some-npm-module\" {\n export declare const a: number;\n}\n```\n", - "tags": [ - "syntax-error", - "typescript-only", - "declarations" - ], - "fixes": [ - { - "title": "Remove declare keyword.", - "body": "Remove the unnecessary `declare` keyword:\n\n```ts\ndeclare module \"some-npm-module\" {\n export const a: number;\n}\n```\n" - } - ] - }, - { - "code": 1039, - "codeText": "TS1039", - "title": "Initializers are not allowed in ambient contexts.", - "category": "error", - "documentation": "Initializers represent functional code and are invalid in declarations:\n\n```ts\ndeclare module \"some-npm-module\" {\n export let a = 1;\n // ^^^ Error\n}\n```\n", - "tags": [ - "syntax-error", - "typescript-only", - "declarations" - ], - "related": [ - 1035 - ], - "fixes": [ - { - "title": "Replace with type definition.", - "body": "Replace the initializer with an appropriate type definition:\n\n```ts\ndeclare module \"some-npm-module\" {\n export let a: number;\n}\n```\n" - } - ] - }, - { - "code": 1040, - "codeText": "TS1040", - "title": "'{0}' modifier cannot be used in an ambient context.", - "category": "error", - "documentation": "The `async` keyword only impacts implementation code and therefore isn't valid\nin an ambient/declaration context. Therefore the following is an error:\n\n```ts\ndeclare module \"some-npm-module\" {\n export async function test(): Promise;\n // ^^^^^ Error\n}\n```\n", - "tags": [ - "syntax-error", - "typescript-only", - "declarations" - ], - "related": [ - 1042 - ], - "fixes": [ - { - "title": "Remove async keyword.", - "body": "Remove the async keyword:\n\n```ts\ndeclare module \"some-npm-module\" {\n export function test(): Promise;\n}\n```\n" - } - ] - }, - { - "code": 1042, - "codeText": "TS1042", - "title": "'{0}' modifier cannot be used here.", - "category": "error", - "documentation": "Certain modifiers cannot be used in certain positions, for example, the `async`\nmodifier cannot be used in a leading space on a class field:\n\n```ts\nclass A {\n async prop!: () => Promise;\n async prop2 = () => \"string\";\n}\n```\n", - "tags": [ - "syntax-error" - ], - "related": [ - 1040 - ], - "fixes": [ - { - "title": "Move modifier to a valid location.", - "body": "Remove the `async` modifier, or move it to the value instead of the property:\n\n```ts\nclass A {\n prop!: () => Promise;\n prop2 = async () => \"string\";\n}\n```\n" - } - ] - }, - { - "code": 1044, - "codeText": "TS1044", - "title": "'{0}' modifier cannot appear on a module or namespace element.", - "category": "error", - "documentation": "Most modifiers cannot be applied to members in a namespace or ambient module. If\nyou try to add them, you will get an error.\n\n```ts\nnamespace A {\n static const a = 1;\n private const b = 2;\n protected const c = 3;\n private const d = 4;\n}\n```\n", - "tags": [ - "syntax-error", - "typescript-only", - "declarations" - ], - "fixes": [ - { - "title": "Remove invalid modifiers.", - "body": "Remove invalid modifiers:\n\n```ts\nnamespace A {\n const a = 1;\n const b = 2;\n const c = 3;\n const d = 4;\n}\n```\n" - } - ] - }, - { - "code": 1046, - "codeText": "TS1046", - "title": "Top-level declarations in .d.ts files must start with either a 'declare' or 'export' modifier.", - "category": "error", - "documentation": "Declaration files (`.d.ts`) cannot contain implementation code, they can only\ndescribe the shape of a module. Therefore the following will cause this error:\n\n```ts\nconst a = 1;\n```\n", - "tags": [ - "syntax-error", - "typescript-only", - "declarations" - ], - "fixes": [ - { - "title": "Add 'declare' or 'export' to each top-level declaration.", - "body": "Ensure each top-level declaration uses the `declare` or `export` keyword:\n\n```ts\ndeclare const a: 1;\n```\n" - } - ] - }, - { - "code": 1047, - "codeText": "TS1047", - "title": "A rest parameter cannot be optional.", - "category": "error", - "documentation": "Marking a parameter optional (`?`) indicates that it could be `undefined`, but\nwhen using the rest token (`...`) indicates that if there are no additional\narguments being passed, parameter will simply be set to an empty array.\nTherefore these tokens are incompatible:\n\n```ts\nfunction test(...args?: any[]) {}\n```\n", - "tags": [ - "syntax-error" - ], - "related": [ - 1048 - ], - "fixes": [ - { - "title": "Remove optional token.", - "body": "Remove the `?` token:\n\n```ts\nfunction test(...args: any[]) {}\n```\n" - } - ] - }, - { - "code": 1048, - "codeText": "TS1048", - "title": "A rest parameter cannot have an initializer.", - "category": "error", - "documentation": "Since rest parameters will always be defined, even if no arguments are passed to\nthe function or method, it doesn't make sense for them to have initializers:\n\n```ts\nfunction test(...args: number[] = [1, 2, 3]) {}\n```\n", - "tags": [ - "syntax-error" - ], - "related": [ - 1047 - ], - "fixes": [ - { - "title": "Move out or destructure with initializers.", - "body": "If you need the first few arguments to have initializers, you can move them out\nof the rest parameter or destructure the argument and default the first few\nmembers there.\n\n```ts\nfunction test(a = 1, b = 2, c = 3, ...rest: number[]) {}\n// or\nfunction test(...[a = 1, b = 2, c = 3, ...rest]: number[]) {}\n```\n" - } - ] - }, - { - "code": 1049, - "codeText": "TS1049", - "title": "A 'set' accessor must have exactly one parameter.", - "category": "error", - "documentation": "Since setter functions are called when assignment occurs, they can only accept\none value to set, so the following errors:\n\n```ts\nclass A {\n set value(a: number, b: number) {}\n}\n```\n", - "tags": [ - "accessors" - ], - "related": [ - 1051, - 1052, - 1053 - ], - "fixes": [ - { - "title": "Remove extra parameters.", - "body": "Remove any extra parameters:\n\n```ts\nclass A {\n set value(a: number) {}\n}\n```\n" - }, - { - "title": "Utilize a tuple.", - "body": "Utilize a tuple to combine values in a single parameter:\n\n```ts\nclass A {\n set value([a, b]: [number, number]) {}\n}\n```\n" - } - ] - }, - { - "code": 1051, - "codeText": "TS1051", - "title": "A 'set' accessor cannot have an optional parameter.", - "category": "error", - "documentation": "A set accessor is only called when a value is being assigned and will always\nprovide a single value, which cannot be optional. Therefore the following is\ninvalid:\n\n```ts\nclass A {\n set value(a?: number) {}\n}\n```\n", - "tags": [ - "accessors" - ], - "related": [ - 1049, - 1052, - 1053 - ], - "fixes": [ - { - "title": "Remove the optional token.", - "body": "Remove the `?` token:\n\n```ts\nclass A {\n set value(a: number) {}\n}\n```\n\nIf you want to be able to be able to set the property to `undefined`, explicitly\nadd it to the type annotation:\n\n```ts\nclass A {\n set value(a: number | undefined) {}\n}\n```\n" - } - ] - }, - { - "code": 1052, - "codeText": "TS1052", - "title": "A 'set' accessor parameter cannot have an initializer.", - "category": "error", - "documentation": "A set accessor is only called when a value is being assigned and will always\nprovide a single value, which cannot be optional. Therefore the following is\ninvalid:\n\n```ts\nclass A {\n set value(a = 0) {}\n}\n```\n", - "tags": [ - "accessors" - ], - "related": [ - 1049, - 1051, - 1053 - ], - "fixes": [ - { - "title": "Remove the initializer.", - "body": "Remove the initializer:\n\n```ts\nclass A {\n set value(a: number) {}\n}\n```\n\nIf you want to be able to be able to have a default value when the property is\nset to `undefined`, add `undefined` to the type annotation and handle the\nbehavior in the implementation:\n\n```ts\nclass A {\n #a = 0;\n\n set value(a: number | undefined) {\n this.#a = a ?? 0;\n }\n}\n```\n" - } - ] - }, - { - "code": 1053, - "codeText": "TS1053", - "title": "A 'set' accessor cannot have rest parameter.", - "category": "error", - "documentation": "Set accessors only ever receive a single value when invoked, therefore a\nvariable number of arguments is not valid:\n\n```ts\nclass A {\n set value(...a: number[]) {}\n}\n```\n", - "tags": [ - "accessors" - ], - "related": [ - 1049, - 1051, - 1052 - ], - "fixes": [ - { - "title": "Remove the rest token.", - "body": "Remove the rest token (`...`):\n\n```ts\nclass A {\n set value(a: number) {}\n}\n```\n\nIf you are trying to accept multiple values, just use an array in the type\nannotation:\n\n```ts\nclass A {\n set value(a: number[]) {}\n}\n```\n" - } - ] - }, - { - "code": 1054, - "codeText": "TS1054", - "title": "A 'get' accessor cannot have parameters.", - "category": "error", - "documentation": "Get accessors are called when a property is read, and therefore cannot take any\nparameters, so the following is invalid:\n\n```ts\nclass A {\n get value(cached: boolean) {}\n}\n```\n", - "tags": [ - "accessors" - ], - "fixes": [ - { - "title": "Remove parameters.", - "body": "Remove any parameters from the get accessor:\n\n```ts\nclass A {\n get value() {}\n}\n```\n\nIf you really need to provide additional information when getting a value, you\nshould just use a method:\n\n```ts\nclass A {\n getValue(cached: boolean) {}\n}\n```\n" - } - ] - }, - { - "code": 1055, - "codeText": "TS1055", - "title": "Type '{0}' is not a valid async function return type in ES5/ES3 because it does not refer to a Promise-compatible constructor value.", - "category": "error", - "documentation": "When targeting ES3 or ES5, async functions which try to declare a non-promise\nreturn type will throw this error:\n\n```ts\nclass A {\n async method(): number {\n return 1;\n }\n}\n```\n", - "tags": [ - "async" - ], - "related": [ - 1064 - ], - "fixes": [ - { - "title": "Use a promise return type.", - "body": "Change the return type to be a promise:\n\n```ts\nclass A {\n async method(): Promise {\n return 1;\n }\n}\n```\n" - } - ] - }, - { - "code": 1056, - "codeText": "TS1056", - "title": "Accessors are only available when targeting ECMAScript 5 and higher.", - "category": "error", - "documentation": "When targeting ES3, `get` and `set` accessors were not supported and cannot be\ndown emitted, therefore they are unavailable and the follow will cause an error:\n\n```ts\nclass A {\n get value() {\n return 1;\n }\n}\n```\n", - "tags": [ - "down-emit" - ], - "fixes": [ - { - "title": "Target ES5 or later.", - "body": "Consider [targeting](https://www.typescriptlang.org/tsconfig#target) ES5 or\nlater.\n\nIf you still need to support older browsers (<= Internet Explorer 8) you will\nneed to rewrite your code to not use getters.\n" - } - ] - }, - { - "code": 1058, - "codeText": "TS1058", - "title": "The return type of an async function must either be a valid promise or must not contain a callable 'then' member.", - "category": "error", - "documentation": "" - }, - { - "code": 1059, - "codeText": "TS1059", - "title": "A promise must have a 'then' method.", - "category": "error", - "documentation": "" - }, - { - "code": 1060, - "codeText": "TS1060", - "title": "The first parameter of the 'then' method of a promise must be a callback.", - "category": "error", - "documentation": "" - }, - { - "code": 1061, - "codeText": "TS1061", - "title": "Enum member must have initializer.", - "category": "error", - "documentation": "" - }, - { - "code": 1062, - "codeText": "TS1062", - "title": "Type is referenced directly or indirectly in the fulfillment callback of its own 'then' method.", - "category": "error", - "documentation": "" - }, - { - "code": 1063, - "codeText": "TS1063", - "title": "An export assignment cannot be used in a namespace.", - "category": "error", - "documentation": "" - }, - { - "code": 1064, - "codeText": "TS1064", - "title": "The return type of an async function or method must be the global Promise type. Did you mean to write 'Promise<{0}>'?", - "category": "error", - "documentation": "" - }, - { - "code": 1065, - "codeText": "TS1065", - "title": "The return type of an async function or method must be the global Promise type.", - "category": "error", - "documentation": "" - }, - { - "code": 1066, - "codeText": "TS1066", - "title": "In ambient enum declarations member initializer must be constant expression.", - "category": "error", - "documentation": "" - }, - { - "code": 1068, - "codeText": "TS1068", - "title": "Unexpected token. A constructor, method, accessor, or property was expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1069, - "codeText": "TS1069", - "title": "Unexpected token. A type parameter name was expected without curly braces.", - "category": "error", - "documentation": "" - }, - { - "code": 1070, - "codeText": "TS1070", - "title": "'{0}' modifier cannot appear on a type member.", - "category": "error", - "documentation": "" - }, - { - "code": 1071, - "codeText": "TS1071", - "title": "'{0}' modifier cannot appear on an index signature.", - "category": "error", - "documentation": "" - }, - { - "code": 1079, - "codeText": "TS1079", - "title": "A '{0}' modifier cannot be used with an import declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 1084, - "codeText": "TS1084", - "title": "Invalid 'reference' directive syntax.", - "category": "error", - "documentation": "" - }, - { - "code": 1085, - "codeText": "TS1085", - "title": "Octal literals are not available when targeting ECMAScript 5 and higher. Use the syntax '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 1089, - "codeText": "TS1089", - "title": "'{0}' modifier cannot appear on a constructor declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 1090, - "codeText": "TS1090", - "title": "'{0}' modifier cannot appear on a parameter.", - "category": "error", - "documentation": "" - }, - { - "code": 1091, - "codeText": "TS1091", - "title": "Only a single variable declaration is allowed in a 'for...in' statement.", - "category": "error", - "documentation": "" - }, - { - "code": 1092, - "codeText": "TS1092", - "title": "Type parameters cannot appear on a constructor declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 1093, - "codeText": "TS1093", - "title": "Type annotation cannot appear on a constructor declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 1094, - "codeText": "TS1094", - "title": "An accessor cannot have type parameters.", - "category": "error", - "documentation": "" - }, - { - "code": 1095, - "codeText": "TS1095", - "title": "A 'set' accessor cannot have a return type annotation.", - "category": "error", - "documentation": "" - }, - { - "code": 1096, - "codeText": "TS1096", - "title": "An index signature must have exactly one parameter.", - "category": "error", - "documentation": "" - }, - { - "code": 1097, - "codeText": "TS1097", - "title": "'{0}' list cannot be empty.", - "category": "error", - "documentation": "" - }, - { - "code": 1098, - "codeText": "TS1098", - "title": "Type parameter list cannot be empty.", - "category": "error", - "documentation": "" - }, - { - "code": 1099, - "codeText": "TS1099", - "title": "Type argument list cannot be empty.", - "category": "error", - "documentation": "" - }, - { - "code": 1100, - "codeText": "TS1100", - "title": "Invalid use of '{0}' in strict mode.", - "category": "error", - "documentation": "" - }, - { - "code": 1101, - "codeText": "TS1101", - "title": "'with' statements are not allowed in strict mode.", - "category": "error", - "documentation": "" - }, - { - "code": 1102, - "codeText": "TS1102", - "title": "'delete' cannot be called on an identifier in strict mode.", - "category": "error", - "documentation": "" - }, - { - "code": 1103, - "codeText": "TS1103", - "title": "'for await' loops are only allowed within async functions and at the top levels of modules.", - "category": "error", - "documentation": "" - }, - { - "code": 1104, - "codeText": "TS1104", - "title": "A 'continue' statement can only be used within an enclosing iteration statement.", - "category": "error", - "documentation": "" - }, - { - "code": 1105, - "codeText": "TS1105", - "title": "A 'break' statement can only be used within an enclosing iteration or switch statement.", - "category": "error", - "documentation": "" - }, - { - "code": 1106, - "codeText": "TS1106", - "title": "The left-hand side of a 'for...of' statement may not be 'async'.", - "category": "error", - "documentation": "" - }, - { - "code": 1107, - "codeText": "TS1107", - "title": "Jump target cannot cross function boundary.", - "category": "error", - "documentation": "" - }, - { - "code": 1108, - "codeText": "TS1108", - "title": "A 'return' statement can only be used within a function body.", - "category": "error", - "documentation": "" - }, - { - "code": 1109, - "codeText": "TS1109", - "title": "Expression expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1110, - "codeText": "TS1110", - "title": "Type expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1111, - "codeText": "TS1111", - "title": "Private field '{0}' must be declared in an enclosing class.", - "category": "error", - "documentation": "" - }, - { - "code": 1113, - "codeText": "TS1113", - "title": "A 'default' clause cannot appear more than once in a 'switch' statement.", - "category": "error", - "documentation": "" - }, - { - "code": 1114, - "codeText": "TS1114", - "title": "Duplicate label '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 1115, - "codeText": "TS1115", - "title": "A 'continue' statement can only jump to a label of an enclosing iteration statement.", - "category": "error", - "documentation": "" - }, - { - "code": 1116, - "codeText": "TS1116", - "title": "A 'break' statement can only jump to a label of an enclosing statement.", - "category": "error", - "documentation": "" - }, - { - "code": 1117, - "codeText": "TS1117", - "title": "An object literal cannot have multiple properties with the same name.", - "category": "error", - "documentation": "" - }, - { - "code": 1118, - "codeText": "TS1118", - "title": "An object literal cannot have multiple get/set accessors with the same name.", - "category": "error", - "documentation": "" - }, - { - "code": 1119, - "codeText": "TS1119", - "title": "An object literal cannot have property and accessor with the same name.", - "category": "error", - "documentation": "" - }, - { - "code": 1120, - "codeText": "TS1120", - "title": "An export assignment cannot have modifiers.", - "category": "error", - "documentation": "" - }, - { - "code": 1121, - "codeText": "TS1121", - "title": "Octal literals are not allowed in strict mode.", - "category": "error", - "documentation": "" - }, - { - "code": 1123, - "codeText": "TS1123", - "title": "Variable declaration list cannot be empty.", - "category": "error", - "documentation": "" - }, - { - "code": 1124, - "codeText": "TS1124", - "title": "Digit expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1125, - "codeText": "TS1125", - "title": "Hexadecimal digit expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1126, - "codeText": "TS1126", - "title": "Unexpected end of text.", - "category": "error", - "documentation": "" - }, - { - "code": 1127, - "codeText": "TS1127", - "title": "Invalid character.", - "category": "error", - "documentation": "" - }, - { - "code": 1128, - "codeText": "TS1128", - "title": "Declaration or statement expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1129, - "codeText": "TS1129", - "title": "Statement expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1130, - "codeText": "TS1130", - "title": "'case' or 'default' expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1131, - "codeText": "TS1131", - "title": "Property or signature expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1132, - "codeText": "TS1132", - "title": "Enum member expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1134, - "codeText": "TS1134", - "title": "Variable declaration expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1135, - "codeText": "TS1135", - "title": "Argument expression expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1136, - "codeText": "TS1136", - "title": "Property assignment expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1137, - "codeText": "TS1137", - "title": "Expression or comma expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1138, - "codeText": "TS1138", - "title": "Parameter declaration expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1139, - "codeText": "TS1139", - "title": "Type parameter declaration expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1140, - "codeText": "TS1140", - "title": "Type argument expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1141, - "codeText": "TS1141", - "title": "String literal expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1142, - "codeText": "TS1142", - "title": "Line break not permitted here.", - "category": "error", - "documentation": "" - }, - { - "code": 1144, - "codeText": "TS1144", - "title": "'{' or ';' expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1145, - "codeText": "TS1145", - "title": "'{' or JSX element expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1146, - "codeText": "TS1146", - "title": "Declaration expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1147, - "codeText": "TS1147", - "title": "Import declarations in a namespace cannot reference a module.", - "category": "error", - "documentation": "" - }, - { - "code": 1148, - "codeText": "TS1148", - "title": "Cannot use imports, exports, or module augmentations when '--module' is 'none'.", - "category": "error", - "documentation": "" - }, - { - "code": 1149, - "codeText": "TS1149", - "title": "File name '{0}' differs from already included file name '{1}' only in casing.", - "category": "error", - "documentation": "" - }, - { - "code": 1155, - "codeText": "TS1155", - "title": "'const' declarations must be initialized.", - "category": "error", - "documentation": "" - }, - { - "code": 1156, - "codeText": "TS1156", - "title": "'const' declarations can only be declared inside a block.", - "category": "error", - "documentation": "" - }, - { - "code": 1157, - "codeText": "TS1157", - "title": "'let' declarations can only be declared inside a block.", - "category": "error", - "documentation": "" - }, - { - "code": 1160, - "codeText": "TS1160", - "title": "Unterminated template literal.", - "category": "error", - "documentation": "" - }, - { - "code": 1161, - "codeText": "TS1161", - "title": "Unterminated regular expression literal.", - "category": "error", - "documentation": "" - }, - { - "code": 1162, - "codeText": "TS1162", - "title": "An object member cannot be declared optional.", - "category": "error", - "documentation": "" - }, - { - "code": 1163, - "codeText": "TS1163", - "title": "A 'yield' expression is only allowed in a generator body.", - "category": "error", - "documentation": "" - }, - { - "code": 1164, - "codeText": "TS1164", - "title": "Computed property names are not allowed in enums.", - "category": "error", - "documentation": "" - }, - { - "code": 1165, - "codeText": "TS1165", - "title": "A computed property name in an ambient context must refer to an expression whose type is a literal type or a 'unique symbol' type.", - "category": "error", - "documentation": "" - }, - { - "code": 1166, - "codeText": "TS1166", - "title": "A computed property name in a class property declaration must have a simple literal type or a 'unique symbol' type.", - "category": "error", - "documentation": "" - }, - { - "code": 1168, - "codeText": "TS1168", - "title": "A computed property name in a method overload must refer to an expression whose type is a literal type or a 'unique symbol' type.", - "category": "error", - "documentation": "" - }, - { - "code": 1169, - "codeText": "TS1169", - "title": "A computed property name in an interface must refer to an expression whose type is a literal type or a 'unique symbol' type.", - "category": "error", - "documentation": "" - }, - { - "code": 1170, - "codeText": "TS1170", - "title": "A computed property name in a type literal must refer to an expression whose type is a literal type or a 'unique symbol' type.", - "category": "error", - "documentation": "" - }, - { - "code": 1171, - "codeText": "TS1171", - "title": "A comma expression is not allowed in a computed property name.", - "category": "error", - "documentation": "" - }, - { - "code": 1172, - "codeText": "TS1172", - "title": "'extends' clause already seen.", - "category": "error", - "documentation": "" - }, - { - "code": 1173, - "codeText": "TS1173", - "title": "'extends' clause must precede 'implements' clause.", - "category": "error", - "documentation": "" - }, - { - "code": 1174, - "codeText": "TS1174", - "title": "Classes can only extend a single class.", - "category": "error", - "documentation": "" - }, - { - "code": 1175, - "codeText": "TS1175", - "title": "'implements' clause already seen.", - "category": "error", - "documentation": "" - }, - { - "code": 1176, - "codeText": "TS1176", - "title": "Interface declaration cannot have 'implements' clause.", - "category": "error", - "documentation": "" - }, - { - "code": 1177, - "codeText": "TS1177", - "title": "Binary digit expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1178, - "codeText": "TS1178", - "title": "Octal digit expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1179, - "codeText": "TS1179", - "title": "Unexpected token. '{' expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1180, - "codeText": "TS1180", - "title": "Property destructuring pattern expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1181, - "codeText": "TS1181", - "title": "Array element destructuring pattern expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1182, - "codeText": "TS1182", - "title": "A destructuring declaration must have an initializer.", - "category": "error", - "documentation": "" - }, - { - "code": 1183, - "codeText": "TS1183", - "title": "An implementation cannot be declared in ambient contexts.", - "category": "error", - "documentation": "" - }, - { - "code": 1184, - "codeText": "TS1184", - "title": "Modifiers cannot appear here.", - "category": "error", - "documentation": "" - }, - { - "code": 1185, - "codeText": "TS1185", - "title": "Merge conflict marker encountered.", - "category": "error", - "documentation": "" - }, - { - "code": 1186, - "codeText": "TS1186", - "title": "A rest element cannot have an initializer.", - "category": "error", - "documentation": "" - }, - { - "code": 1187, - "codeText": "TS1187", - "title": "A parameter property may not be declared using a binding pattern.", - "category": "error", - "documentation": "" - }, - { - "code": 1188, - "codeText": "TS1188", - "title": "Only a single variable declaration is allowed in a 'for...of' statement.", - "category": "error", - "documentation": "" - }, - { - "code": 1189, - "codeText": "TS1189", - "title": "The variable declaration of a 'for...in' statement cannot have an initializer.", - "category": "error", - "documentation": "" - }, - { - "code": 1190, - "codeText": "TS1190", - "title": "The variable declaration of a 'for...of' statement cannot have an initializer.", - "category": "error", - "documentation": "" - }, - { - "code": 1191, - "codeText": "TS1191", - "title": "An import declaration cannot have modifiers.", - "category": "error", - "documentation": "" - }, - { - "code": 1192, - "codeText": "TS1192", - "title": "Module '{0}' has no default export.", - "category": "error", - "documentation": "" - }, - { - "code": 1193, - "codeText": "TS1193", - "title": "An export declaration cannot have modifiers.", - "category": "error", - "documentation": "" - }, - { - "code": 1194, - "codeText": "TS1194", - "title": "Export declarations are not permitted in a namespace.", - "category": "error", - "documentation": "" - }, - { - "code": 1195, - "codeText": "TS1195", - "title": "'export *' does not re-export a default.", - "category": "error", - "documentation": "" - }, - { - "code": 1196, - "codeText": "TS1196", - "title": "Catch clause variable type annotation must be 'any' or 'unknown' if specified.", - "category": "error", - "documentation": "" - }, - { - "code": 1197, - "codeText": "TS1197", - "title": "Catch clause variable cannot have an initializer.", - "category": "error", - "documentation": "" - }, - { - "code": 1198, - "codeText": "TS1198", - "title": "An extended Unicode escape value must be between 0x0 and 0x10FFFF inclusive.", - "category": "error", - "documentation": "" - }, - { - "code": 1199, - "codeText": "TS1199", - "title": "Unterminated Unicode escape sequence.", - "category": "error", - "documentation": "" - }, - { - "code": 1200, - "codeText": "TS1200", - "title": "Line terminator not permitted before arrow.", - "category": "error", - "documentation": "" - }, - { - "code": 1202, - "codeText": "TS1202", - "title": "Import assignment cannot be used when targeting ECMAScript modules. Consider using 'import * as ns from \"mod\"', 'import {a} from \"mod\"', 'import d from \"mod\"', or another module format instead.", - "category": "error", - "documentation": "" - }, - { - "code": 1203, - "codeText": "TS1203", - "title": "Export assignment cannot be used when targeting ECMAScript modules. Consider using 'export default' or another module format instead.", - "category": "error", - "documentation": "" - }, - { - "code": 1205, - "codeText": "TS1205", - "title": "Re-exporting a type when the '--isolatedModules' flag is provided requires using 'export type'.", - "category": "error", - "documentation": "" - }, - { - "code": 1206, - "codeText": "TS1206", - "title": "Decorators are not valid here.", - "category": "error", - "documentation": "" - }, - { - "code": 1207, - "codeText": "TS1207", - "title": "Decorators cannot be applied to multiple get/set accessors of the same name.", - "category": "error", - "documentation": "" - }, - { - "code": 1208, - "codeText": "TS1208", - "title": "'{0}' cannot be compiled under '--isolatedModules' because it is considered a global script file. Add an import, export, or an empty 'export {}' statement to make it a module.", - "category": "error", - "documentation": "" - }, - { - "code": 1209, - "codeText": "TS1209", - "title": "Invalid optional chain from new expression. Did you mean to call '{0}()'?", - "category": "error", - "documentation": "" - }, - { - "code": 1210, - "codeText": "TS1210", - "title": "Code contained in a class is evaluated in JavaScript's strict mode which does not allow this use of '{0}'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.", - "category": "error", - "documentation": "" - }, - { - "code": 1211, - "codeText": "TS1211", - "title": "A class declaration without the 'default' modifier must have a name.", - "category": "error", - "documentation": "" - }, - { - "code": 1212, - "codeText": "TS1212", - "title": "Identifier expected. '{0}' is a reserved word in strict mode.", - "category": "error", - "documentation": "" - }, - { - "code": 1213, - "codeText": "TS1213", - "title": "Identifier expected. '{0}' is a reserved word in strict mode. Class definitions are automatically in strict mode.", - "category": "error", - "documentation": "" - }, - { - "code": 1214, - "codeText": "TS1214", - "title": "Identifier expected. '{0}' is a reserved word in strict mode. Modules are automatically in strict mode.", - "category": "error", - "documentation": "" - }, - { - "code": 1215, - "codeText": "TS1215", - "title": "Invalid use of '{0}'. Modules are automatically in strict mode.", - "category": "error", - "documentation": "" - }, - { - "code": 1216, - "codeText": "TS1216", - "title": "Identifier expected. '__esModule' is reserved as an exported marker when transforming ECMAScript modules.", - "category": "error", - "documentation": "" - }, - { - "code": 1218, - "codeText": "TS1218", - "title": "Export assignment is not supported when '--module' flag is 'system'.", - "category": "error", - "documentation": "" - }, - { - "code": 1219, - "codeText": "TS1219", - "title": "Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option in your 'tsconfig' or 'jsconfig' to remove this warning.", - "category": "error", - "documentation": "" - }, - { - "code": 1221, - "codeText": "TS1221", - "title": "Generators are not allowed in an ambient context.", - "category": "error", - "documentation": "" - }, - { - "code": 1222, - "codeText": "TS1222", - "title": "An overload signature cannot be declared as a generator.", - "category": "error", - "documentation": "" - }, - { - "code": 1223, - "codeText": "TS1223", - "title": "'{0}' tag already specified.", - "category": "error", - "documentation": "" - }, - { - "code": 1224, - "codeText": "TS1224", - "title": "Signature '{0}' must be a type predicate.", - "category": "error", - "documentation": "" - }, - { - "code": 1225, - "codeText": "TS1225", - "title": "Cannot find parameter '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 1226, - "codeText": "TS1226", - "title": "Type predicate '{0}' is not assignable to '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 1227, - "codeText": "TS1227", - "title": "Parameter '{0}' is not in the same position as parameter '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 1228, - "codeText": "TS1228", - "title": "A type predicate is only allowed in return type position for functions and methods.", - "category": "error", - "documentation": "" - }, - { - "code": 1229, - "codeText": "TS1229", - "title": "A type predicate cannot reference a rest parameter.", - "category": "error", - "documentation": "" - }, - { - "code": 1230, - "codeText": "TS1230", - "title": "A type predicate cannot reference element '{0}' in a binding pattern.", - "category": "error", - "documentation": "" - }, - { - "code": 1231, - "codeText": "TS1231", - "title": "An export assignment must be at the top level of a file or module declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 1232, - "codeText": "TS1232", - "title": "An import declaration can only be used at the top level of a namespace or module.", - "category": "error", - "documentation": "" - }, - { - "code": 1233, - "codeText": "TS1233", - "title": "An export declaration can only be used at the top level of a namespace or module.", - "category": "error", - "documentation": "" - }, - { - "code": 1234, - "codeText": "TS1234", - "title": "An ambient module declaration is only allowed at the top level in a file.", - "category": "error", - "documentation": "" - }, - { - "code": 1235, - "codeText": "TS1235", - "title": "A namespace declaration is only allowed at the top level of a namespace or module.", - "category": "error", - "documentation": "" - }, - { - "code": 1236, - "codeText": "TS1236", - "title": "The return type of a property decorator function must be either 'void' or 'any'.", - "category": "error", - "documentation": "" - }, - { - "code": 1237, - "codeText": "TS1237", - "title": "The return type of a parameter decorator function must be either 'void' or 'any'.", - "category": "error", - "documentation": "" - }, - { - "code": 1238, - "codeText": "TS1238", - "title": "Unable to resolve signature of class decorator when called as an expression.", - "category": "error", - "documentation": "" - }, - { - "code": 1239, - "codeText": "TS1239", - "title": "Unable to resolve signature of parameter decorator when called as an expression.", - "category": "error", - "documentation": "" - }, - { - "code": 1240, - "codeText": "TS1240", - "title": "Unable to resolve signature of property decorator when called as an expression.", - "category": "error", - "documentation": "" - }, - { - "code": 1241, - "codeText": "TS1241", - "title": "Unable to resolve signature of method decorator when called as an expression.", - "category": "error", - "documentation": "" - }, - { - "code": 1242, - "codeText": "TS1242", - "title": "'abstract' modifier can only appear on a class, method, or property declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 1243, - "codeText": "TS1243", - "title": "'{0}' modifier cannot be used with '{1}' modifier.", - "category": "error", - "documentation": "" - }, - { - "code": 1244, - "codeText": "TS1244", - "title": "Abstract methods can only appear within an abstract class.", - "category": "error", - "documentation": "" - }, - { - "code": 1245, - "codeText": "TS1245", - "title": "Method '{0}' cannot have an implementation because it is marked abstract.", - "category": "error", - "documentation": "" - }, - { - "code": 1246, - "codeText": "TS1246", - "title": "An interface property cannot have an initializer.", - "category": "error", - "documentation": "" - }, - { - "code": 1247, - "codeText": "TS1247", - "title": "A type literal property cannot have an initializer.", - "category": "error", - "documentation": "" - }, - { - "code": 1248, - "codeText": "TS1248", - "title": "A class member cannot have the '{0}' keyword.", - "category": "error", - "documentation": "" - }, - { - "code": 1249, - "codeText": "TS1249", - "title": "A decorator can only decorate a method implementation, not an overload.", - "category": "error", - "documentation": "" - }, - { - "code": 1250, - "codeText": "TS1250", - "title": "Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'.", - "category": "error", - "documentation": "" - }, - { - "code": 1251, - "codeText": "TS1251", - "title": "Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'. Class definitions are automatically in strict mode.", - "category": "error", - "documentation": "" - }, - { - "code": 1252, - "codeText": "TS1252", - "title": "Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'. Modules are automatically in strict mode.", - "category": "error", - "documentation": "" - }, - { - "code": 1253, - "codeText": "TS1253", - "title": "Abstract properties can only appear within an abstract class.", - "category": "error", - "documentation": "" - }, - { - "code": 1254, - "codeText": "TS1254", - "title": "A 'const' initializer in an ambient context must be a string or numeric literal or literal enum reference.", - "category": "error", - "documentation": "" - }, - { - "code": 1255, - "codeText": "TS1255", - "title": "A definite assignment assertion '!' is not permitted in this context.", - "category": "error", - "documentation": "" - }, - { - "code": 1257, - "codeText": "TS1257", - "title": "A required element cannot follow an optional element.", - "category": "error", - "documentation": "" - }, - { - "code": 1258, - "codeText": "TS1258", - "title": "A default export must be at the top level of a file or module declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 1259, - "codeText": "TS1259", - "title": "Module '{0}' can only be default-imported using the '{1}' flag", - "category": "error", - "documentation": "" - }, - { - "code": 1260, - "codeText": "TS1260", - "title": "Keywords cannot contain escape characters.", - "category": "error", - "documentation": "" - }, - { - "code": 1261, - "codeText": "TS1261", - "title": "Already included file name '{0}' differs from file name '{1}' only in casing.", - "category": "error", - "documentation": "" - }, - { - "code": 1262, - "codeText": "TS1262", - "title": "Identifier expected. '{0}' is a reserved word at the top-level of a module.", - "category": "error", - "documentation": "" - }, - { - "code": 1263, - "codeText": "TS1263", - "title": "Declarations with initializers cannot also have definite assignment assertions.", - "category": "error", - "documentation": "" - }, - { - "code": 1264, - "codeText": "TS1264", - "title": "Declarations with definite assignment assertions must also have type annotations.", - "category": "error", - "documentation": "" - }, - { - "code": 1265, - "codeText": "TS1265", - "title": "A rest element cannot follow another rest element.", - "category": "error", - "documentation": "" - }, - { - "code": 1266, - "codeText": "TS1266", - "title": "An optional element cannot follow a rest element.", - "category": "error", - "documentation": "" - }, - { - "code": 1267, - "codeText": "TS1267", - "title": "Property '{0}' cannot have an initializer because it is marked abstract.", - "category": "error", - "documentation": "" - }, - { - "code": 1268, - "codeText": "TS1268", - "title": "An index signature parameter type must be 'string', 'number', 'symbol', or a template literal type.", - "category": "error", - "documentation": "" - }, - { - "code": 1269, - "codeText": "TS1269", - "title": "Cannot use 'export import' on a type or type-only namespace when the '--isolatedModules' flag is provided.", - "category": "error", - "documentation": "" - }, - { - "code": 1270, - "codeText": "TS1270", - "title": "Decorator function return type '{0}' is not assignable to type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 1271, - "codeText": "TS1271", - "title": "Decorator function return type is '{0}' but is expected to be 'void' or 'any'.", - "category": "error", - "documentation": "" - }, - { - "code": 1272, - "codeText": "TS1272", - "title": "A type referenced in a decorated signature must be imported with 'import type' or a namespace import when 'isolatedModules' and 'emitDecoratorMetadata' are enabled.", - "category": "error", - "documentation": "" - }, - { - "code": 1273, - "codeText": "TS1273", - "title": "'{0}' modifier cannot appear on a type parameter", - "category": "error", - "documentation": "" - }, - { - "code": 1274, - "codeText": "TS1274", - "title": "'{0}' modifier can only appear on a type parameter of a class, interface or type alias", - "category": "error", - "documentation": "" - }, - { - "code": 1275, - "codeText": "TS1275", - "title": "'accessor' modifier can only appear on a property declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 1276, - "codeText": "TS1276", - "title": "An 'accessor' property cannot be declared optional.", - "category": "error", - "documentation": "" - }, - { - "code": 1277, - "codeText": "TS1277", - "title": "'{0}' modifier can only appear on a type parameter of a function, method or class", - "category": "error", - "documentation": "" - }, - { - "code": 1278, - "codeText": "TS1278", - "title": "The runtime will invoke the decorator with {1} arguments, but the decorator expects {0}.", - "category": "error", - "documentation": "" - }, - { - "code": 1279, - "codeText": "TS1279", - "title": "The runtime will invoke the decorator with {1} arguments, but the decorator expects at least {0}.", - "category": "error", - "documentation": "" - }, - { - "code": 1280, - "codeText": "TS1280", - "title": "Namespaces are not allowed in global script files when '{0}' is enabled. If this file is not intended to be a global script, set 'moduleDetection' to 'force' or add an empty 'export {}' statement.", - "category": "error", - "documentation": "" - }, - { - "code": 1281, - "codeText": "TS1281", - "title": "Cannot access '{0}' from another file without qualification when '{1}' is enabled. Use '{2}' instead.", - "category": "error", - "documentation": "" - }, - { - "code": 1282, - "codeText": "TS1282", - "title": "An 'export =' declaration must reference a value when 'verbatimModuleSyntax' is enabled, but '{0}' only refers to a type.", - "category": "error", - "documentation": "" - }, - { - "code": 1283, - "codeText": "TS1283", - "title": "An 'export =' declaration must reference a real value when 'verbatimModuleSyntax' is enabled, but '{0}' resolves to a type-only declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 1284, - "codeText": "TS1284", - "title": "An 'export default' must reference a value when 'verbatimModuleSyntax' is enabled, but '{0}' only refers to a type.", - "category": "error", - "documentation": "" - }, - { - "code": 1285, - "codeText": "TS1285", - "title": "An 'export default' must reference a real value when 'verbatimModuleSyntax' is enabled, but '{0}' resolves to a type-only declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 1286, - "codeText": "TS1286", - "title": "ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.", - "category": "error", - "documentation": "" - }, - { - "code": 1287, - "codeText": "TS1287", - "title": "A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.", - "category": "error", - "documentation": "" - }, - { - "code": 1288, - "codeText": "TS1288", - "title": "An import alias cannot resolve to a type or type-only declaration when 'verbatimModuleSyntax' is enabled.", - "category": "error", - "documentation": "" - }, - { - "code": 1300, - "codeText": "TS1300", - "title": "'with' statements are not allowed in an async function block.", - "category": "error", - "documentation": "" - }, - { - "code": 1308, - "codeText": "TS1308", - "title": "'await' expressions are only allowed within async functions and at the top levels of modules.", - "category": "error", - "documentation": "" - }, - { - "code": 1309, - "codeText": "TS1309", - "title": "The current file is a CommonJS module and cannot use 'await' at the top level.", - "category": "error", - "documentation": "" - }, - { - "code": 1312, - "codeText": "TS1312", - "title": "Did you mean to use a ':'? An '=' can only follow a property name when the containing object literal is part of a destructuring pattern.", - "category": "error", - "documentation": "" - }, - { - "code": 1313, - "codeText": "TS1313", - "title": "The body of an 'if' statement cannot be the empty statement.", - "category": "error", - "documentation": "" - }, - { - "code": 1314, - "codeText": "TS1314", - "title": "Global module exports may only appear in module files.", - "category": "error", - "documentation": "" - }, - { - "code": 1315, - "codeText": "TS1315", - "title": "Global module exports may only appear in declaration files.", - "category": "error", - "documentation": "" - }, - { - "code": 1316, - "codeText": "TS1316", - "title": "Global module exports may only appear at top level.", - "category": "error", - "documentation": "" - }, - { - "code": 1317, - "codeText": "TS1317", - "title": "A parameter property cannot be declared using a rest parameter.", - "category": "error", - "documentation": "" - }, - { - "code": 1318, - "codeText": "TS1318", - "title": "An abstract accessor cannot have an implementation.", - "category": "error", - "documentation": "" - }, - { - "code": 1319, - "codeText": "TS1319", - "title": "A default export can only be used in an ECMAScript-style module.", - "category": "error", - "documentation": "" - }, - { - "code": 1320, - "codeText": "TS1320", - "title": "Type of 'await' operand must either be a valid promise or must not contain a callable 'then' member.", - "category": "error", - "documentation": "" - }, - { - "code": 1321, - "codeText": "TS1321", - "title": "Type of 'yield' operand in an async generator must either be a valid promise or must not contain a callable 'then' member.", - "category": "error", - "documentation": "" - }, - { - "code": 1322, - "codeText": "TS1322", - "title": "Type of iterated elements of a 'yield*' operand must either be a valid promise or must not contain a callable 'then' member.", - "category": "error", - "documentation": "" - }, - { - "code": 1323, - "codeText": "TS1323", - "title": "Dynamic imports are only supported when the '--module' flag is set to 'es2020', 'es2022', 'esnext', 'commonjs', 'amd', 'system', 'umd', 'node16', or 'nodenext'.", - "category": "error", - "documentation": "" - }, - { - "code": 1324, - "codeText": "TS1324", - "title": "Dynamic imports only support a second argument when the '--module' option is set to 'esnext', 'node16', or 'nodenext'.", - "category": "error", - "documentation": "" - }, - { - "code": 1325, - "codeText": "TS1325", - "title": "Argument of dynamic import cannot be spread element.", - "category": "error", - "documentation": "" - }, - { - "code": 1326, - "codeText": "TS1326", - "title": "This use of 'import' is invalid. 'import()' calls can be written, but they must have parentheses and cannot have type arguments.", - "category": "error", - "documentation": "" - }, - { - "code": 1327, - "codeText": "TS1327", - "title": "String literal with double quotes expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1328, - "codeText": "TS1328", - "title": "Property value can only be string literal, numeric literal, 'true', 'false', 'null', object literal or array literal.", - "category": "error", - "documentation": "" - }, - { - "code": 1329, - "codeText": "TS1329", - "title": "'{0}' accepts too few arguments to be used as a decorator here. Did you mean to call it first and write '@{0}()'?", - "category": "error", - "documentation": "" - }, - { - "code": 1330, - "codeText": "TS1330", - "title": "A property of an interface or type literal whose type is a 'unique symbol' type must be 'readonly'.", - "category": "error", - "documentation": "" - }, - { - "code": 1331, - "codeText": "TS1331", - "title": "A property of a class whose type is a 'unique symbol' type must be both 'static' and 'readonly'.", - "category": "error", - "documentation": "" - }, - { - "code": 1332, - "codeText": "TS1332", - "title": "A variable whose type is a 'unique symbol' type must be 'const'.", - "category": "error", - "documentation": "" - }, - { - "code": 1333, - "codeText": "TS1333", - "title": "'unique symbol' types may not be used on a variable declaration with a binding name.", - "category": "error", - "documentation": "" - }, - { - "code": 1334, - "codeText": "TS1334", - "title": "'unique symbol' types are only allowed on variables in a variable statement.", - "category": "error", - "documentation": "" - }, - { - "code": 1335, - "codeText": "TS1335", - "title": "'unique symbol' types are not allowed here.", - "category": "error", - "documentation": "" - }, - { - "code": 1337, - "codeText": "TS1337", - "title": "An index signature parameter type cannot be a literal type or generic type. Consider using a mapped object type instead.", - "category": "error", - "documentation": "" - }, - { - "code": 1338, - "codeText": "TS1338", - "title": "'infer' declarations are only permitted in the 'extends' clause of a conditional type.", - "category": "error", - "documentation": "" - }, - { - "code": 1339, - "codeText": "TS1339", - "title": "Module '{0}' does not refer to a value, but is used as a value here.", - "category": "error", - "documentation": "" - }, - { - "code": 1340, - "codeText": "TS1340", - "title": "Module '{0}' does not refer to a type, but is used as a type here. Did you mean 'typeof import('{0}')'?", - "category": "error", - "documentation": "" - }, - { - "code": 1341, - "codeText": "TS1341", - "title": "Class constructor may not be an accessor.", - "category": "error", - "documentation": "" - }, - { - "code": 1342, - "codeText": "TS1342", - "title": "Type arguments cannot be used here.", - "category": "error", - "documentation": "" - }, - { - "code": 1343, - "codeText": "TS1343", - "title": "The 'import.meta' meta-property is only allowed when the '--module' option is 'es2020', 'es2022', 'esnext', 'system', 'node16', or 'nodenext'.", - "category": "error", - "documentation": "" - }, - { - "code": 1344, - "codeText": "TS1344", - "title": "'A label is not allowed here.", - "category": "error", - "documentation": "" - }, - { - "code": 1345, - "codeText": "TS1345", - "title": "An expression of type 'void' cannot be tested for truthiness.", - "category": "error", - "documentation": "" - }, - { - "code": 1346, - "codeText": "TS1346", - "title": "This parameter is not allowed with 'use strict' directive.", - "category": "error", - "documentation": "" - }, - { - "code": 1347, - "codeText": "TS1347", - "title": "'use strict' directive cannot be used with non-simple parameter list.", - "category": "error", - "documentation": "" - }, - { - "code": 1348, - "codeText": "TS1348", - "title": "Non-simple parameter declared here.", - "category": "error", - "documentation": "" - }, - { - "code": 1349, - "codeText": "TS1349", - "title": "'use strict' directive used here.", - "category": "error", - "documentation": "" - }, - { - "code": 1350, - "codeText": "TS1350", - "title": "Print the final configuration instead of building.", - "category": "message", - "documentation": "" - }, - { - "code": 1351, - "codeText": "TS1351", - "title": "An identifier or keyword cannot immediately follow a numeric literal.", - "category": "error", - "documentation": "" - }, - { - "code": 1352, - "codeText": "TS1352", - "title": "A bigint literal cannot use exponential notation.", - "category": "error", - "documentation": "" - }, - { - "code": 1353, - "codeText": "TS1353", - "title": "A bigint literal must be an integer.", - "category": "error", - "documentation": "" - }, - { - "code": 1354, - "codeText": "TS1354", - "title": "'readonly' type modifier is only permitted on array and tuple literal types.", - "category": "error", - "documentation": "" - }, - { - "code": 1355, - "codeText": "TS1355", - "title": "A 'const' assertions can only be applied to references to enum members, or string, number, boolean, array, or object literals.", - "category": "error", - "documentation": "" - }, - { - "code": 1356, - "codeText": "TS1356", - "title": "Did you mean to mark this function as 'async'?", - "category": "error", - "documentation": "" - }, - { - "code": 1357, - "codeText": "TS1357", - "title": "An enum member name must be followed by a ',', '=', or '}'.", - "category": "error", - "documentation": "" - }, - { - "code": 1358, - "codeText": "TS1358", - "title": "Tagged template expressions are not permitted in an optional chain.", - "category": "error", - "documentation": "" - }, - { - "code": 1359, - "codeText": "TS1359", - "title": "Identifier expected. '{0}' is a reserved word that cannot be used here.", - "category": "error", - "documentation": "" - }, - { - "code": 1360, - "codeText": "TS1360", - "title": "Type '{0}' does not satisfy the expected type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 1361, - "codeText": "TS1361", - "title": "'{0}' cannot be used as a value because it was imported using 'import type'.", - "category": "error", - "documentation": "" - }, - { - "code": 1362, - "codeText": "TS1362", - "title": "'{0}' cannot be used as a value because it was exported using 'export type'.", - "category": "error", - "documentation": "" - }, - { - "code": 1363, - "codeText": "TS1363", - "title": "A type-only import can specify a default import or named bindings, but not both.", - "category": "error", - "documentation": "" - }, - { - "code": 1364, - "codeText": "TS1364", - "title": "Convert to type-only export", - "category": "message", - "documentation": "" - }, - { - "code": 1365, - "codeText": "TS1365", - "title": "Convert all re-exported types to type-only exports", - "category": "message", - "documentation": "" - }, - { - "code": 1366, - "codeText": "TS1366", - "title": "Split into two separate import declarations", - "category": "message", - "documentation": "" - }, - { - "code": 1367, - "codeText": "TS1367", - "title": "Split all invalid type-only imports", - "category": "message", - "documentation": "" - }, - { - "code": 1368, - "codeText": "TS1368", - "title": "Class constructor may not be a generator.", - "category": "error", - "documentation": "" - }, - { - "code": 1369, - "codeText": "TS1369", - "title": "Did you mean '{0}'?", - "category": "message", - "documentation": "" - }, - { - "code": 1371, - "codeText": "TS1371", - "title": "This import is never used as a value and must use 'import type' because 'importsNotUsedAsValues' is set to 'error'.", - "category": "error", - "documentation": "" - }, - { - "code": 1373, - "codeText": "TS1373", - "title": "Convert to type-only import", - "category": "message", - "documentation": "" - }, - { - "code": 1374, - "codeText": "TS1374", - "title": "Convert all imports not used as a value to type-only imports", - "category": "message", - "documentation": "" - }, - { - "code": 1375, - "codeText": "TS1375", - "title": "'await' expressions are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module.", - "category": "error", - "documentation": "" - }, - { - "code": 1376, - "codeText": "TS1376", - "title": "'{0}' was imported here.", - "category": "message", - "documentation": "" - }, - { - "code": 1377, - "codeText": "TS1377", - "title": "'{0}' was exported here.", - "category": "message", - "documentation": "" - }, - { - "code": 1378, - "codeText": "TS1378", - "title": "Top-level 'await' expressions are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher.", - "category": "error", - "documentation": "" - }, - { - "code": 1379, - "codeText": "TS1379", - "title": "An import alias cannot reference a declaration that was exported using 'export type'.", - "category": "error", - "documentation": "" - }, - { - "code": 1380, - "codeText": "TS1380", - "title": "An import alias cannot reference a declaration that was imported using 'import type'.", - "category": "error", - "documentation": "" - }, - { - "code": 1381, - "codeText": "TS1381", - "title": "Unexpected token. Did you mean `{'}'}` or `}`?", - "category": "error", - "documentation": "" - }, - { - "code": 1382, - "codeText": "TS1382", - "title": "Unexpected token. Did you mean `{'>'}` or `>`?", - "category": "error", - "documentation": "" - }, - { - "code": 1383, - "codeText": "TS1383", - "title": "Only named exports may use 'export type'.", - "category": "error", - "documentation": "" - }, - { - "code": 1385, - "codeText": "TS1385", - "title": "Function type notation must be parenthesized when used in a union type.", - "category": "error", - "documentation": "" - }, - { - "code": 1386, - "codeText": "TS1386", - "title": "Constructor type notation must be parenthesized when used in a union type.", - "category": "error", - "documentation": "" - }, - { - "code": 1387, - "codeText": "TS1387", - "title": "Function type notation must be parenthesized when used in an intersection type.", - "category": "error", - "documentation": "" - }, - { - "code": 1388, - "codeText": "TS1388", - "title": "Constructor type notation must be parenthesized when used in an intersection type.", - "category": "error", - "documentation": "" - }, - { - "code": 1389, - "codeText": "TS1389", - "title": "'{0}' is not allowed as a variable declaration name.", - "category": "error", - "documentation": "" - }, - { - "code": 1390, - "codeText": "TS1390", - "title": "'{0}' is not allowed as a parameter name.", - "category": "error", - "documentation": "" - }, - { - "code": 1392, - "codeText": "TS1392", - "title": "An import alias cannot use 'import type'", - "category": "error", - "documentation": "" - }, - { - "code": 1393, - "codeText": "TS1393", - "title": "Imported via {0} from file '{1}'", - "category": "message", - "documentation": "" - }, - { - "code": 1394, - "codeText": "TS1394", - "title": "Imported via {0} from file '{1}' with packageId '{2}'", - "category": "message", - "documentation": "" - }, - { - "code": 1395, - "codeText": "TS1395", - "title": "Imported via {0} from file '{1}' to import 'importHelpers' as specified in compilerOptions", - "category": "message", - "documentation": "" - }, - { - "code": 1396, - "codeText": "TS1396", - "title": "Imported via {0} from file '{1}' with packageId '{2}' to import 'importHelpers' as specified in compilerOptions", - "category": "message", - "documentation": "" - }, - { - "code": 1397, - "codeText": "TS1397", - "title": "Imported via {0} from file '{1}' to import 'jsx' and 'jsxs' factory functions", - "category": "message", - "documentation": "" - }, - { - "code": 1398, - "codeText": "TS1398", - "title": "Imported via {0} from file '{1}' with packageId '{2}' to import 'jsx' and 'jsxs' factory functions", - "category": "message", - "documentation": "" - }, - { - "code": 1399, - "codeText": "TS1399", - "title": "File is included via import here.", - "category": "message", - "documentation": "" - }, - { - "code": 1400, - "codeText": "TS1400", - "title": "Referenced via '{0}' from file '{1}'", - "category": "message", - "documentation": "" - }, - { - "code": 1401, - "codeText": "TS1401", - "title": "File is included via reference here.", - "category": "message", - "documentation": "" - }, - { - "code": 1402, - "codeText": "TS1402", - "title": "Type library referenced via '{0}' from file '{1}'", - "category": "message", - "documentation": "" - }, - { - "code": 1403, - "codeText": "TS1403", - "title": "Type library referenced via '{0}' from file '{1}' with packageId '{2}'", - "category": "message", - "documentation": "" - }, - { - "code": 1404, - "codeText": "TS1404", - "title": "File is included via type library reference here.", - "category": "message", - "documentation": "" - }, - { - "code": 1405, - "codeText": "TS1405", - "title": "Library referenced via '{0}' from file '{1}'", - "category": "message", - "documentation": "" - }, - { - "code": 1406, - "codeText": "TS1406", - "title": "File is included via library reference here.", - "category": "message", - "documentation": "" - }, - { - "code": 1407, - "codeText": "TS1407", - "title": "Matched by include pattern '{0}' in '{1}'", - "category": "message", - "documentation": "" - }, - { - "code": 1408, - "codeText": "TS1408", - "title": "File is matched by include pattern specified here.", - "category": "message", - "documentation": "" - }, - { - "code": 1409, - "codeText": "TS1409", - "title": "Part of 'files' list in tsconfig.json", - "category": "message", - "documentation": "" - }, - { - "code": 1410, - "codeText": "TS1410", - "title": "File is matched by 'files' list specified here.", - "category": "message", - "documentation": "" - }, - { - "code": 1411, - "codeText": "TS1411", - "title": "Output from referenced project '{0}' included because '{1}' specified", - "category": "message", - "documentation": "" - }, - { - "code": 1412, - "codeText": "TS1412", - "title": "Output from referenced project '{0}' included because '--module' is specified as 'none'", - "category": "message", - "documentation": "" - }, - { - "code": 1413, - "codeText": "TS1413", - "title": "File is output from referenced project specified here.", - "category": "message", - "documentation": "" - }, - { - "code": 1414, - "codeText": "TS1414", - "title": "Source from referenced project '{0}' included because '{1}' specified", - "category": "message", - "documentation": "" - }, - { - "code": 1415, - "codeText": "TS1415", - "title": "Source from referenced project '{0}' included because '--module' is specified as 'none'", - "category": "message", - "documentation": "" - }, - { - "code": 1416, - "codeText": "TS1416", - "title": "File is source from referenced project specified here.", - "category": "message", - "documentation": "" - }, - { - "code": 1417, - "codeText": "TS1417", - "title": "Entry point of type library '{0}' specified in compilerOptions", - "category": "message", - "documentation": "" - }, - { - "code": 1418, - "codeText": "TS1418", - "title": "Entry point of type library '{0}' specified in compilerOptions with packageId '{1}'", - "category": "message", - "documentation": "" - }, - { - "code": 1419, - "codeText": "TS1419", - "title": "File is entry point of type library specified here.", - "category": "message", - "documentation": "" - }, - { - "code": 1420, - "codeText": "TS1420", - "title": "Entry point for implicit type library '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 1421, - "codeText": "TS1421", - "title": "Entry point for implicit type library '{0}' with packageId '{1}'", - "category": "message", - "documentation": "" - }, - { - "code": 1422, - "codeText": "TS1422", - "title": "Library '{0}' specified in compilerOptions", - "category": "message", - "documentation": "" - }, - { - "code": 1423, - "codeText": "TS1423", - "title": "File is library specified here.", - "category": "message", - "documentation": "" - }, - { - "code": 1424, - "codeText": "TS1424", - "title": "Default library", - "category": "message", - "documentation": "" - }, - { - "code": 1425, - "codeText": "TS1425", - "title": "Default library for target '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 1426, - "codeText": "TS1426", - "title": "File is default library for target specified here.", - "category": "message", - "documentation": "" - }, - { - "code": 1427, - "codeText": "TS1427", - "title": "Root file specified for compilation", - "category": "message", - "documentation": "" - }, - { - "code": 1428, - "codeText": "TS1428", - "title": "File is output of project reference source '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 1429, - "codeText": "TS1429", - "title": "File redirects to file '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 1430, - "codeText": "TS1430", - "title": "The file is in the program because:", - "category": "message", - "documentation": "" - }, - { - "code": 1431, - "codeText": "TS1431", - "title": "'for await' loops are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module.", - "category": "error", - "documentation": "" - }, - { - "code": 1432, - "codeText": "TS1432", - "title": "Top-level 'for await' loops are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher.", - "category": "error", - "documentation": "" - }, - { - "code": 1433, - "codeText": "TS1433", - "title": "Decorators may not be applied to 'this' parameters.", - "category": "error", - "documentation": "" - }, - { - "code": 1434, - "codeText": "TS1434", - "title": "Unexpected keyword or identifier.", - "category": "error", - "documentation": "" - }, - { - "code": 1435, - "codeText": "TS1435", - "title": "Unknown keyword or identifier. Did you mean '{0}'?", - "category": "error", - "documentation": "" - }, - { - "code": 1436, - "codeText": "TS1436", - "title": "Decorators must precede the name and all keywords of property declarations.", - "category": "error", - "documentation": "" - }, - { - "code": 1437, - "codeText": "TS1437", - "title": "Namespace must be given a name.", - "category": "error", - "documentation": "" - }, - { - "code": 1438, - "codeText": "TS1438", - "title": "Interface must be given a name.", - "category": "error", - "documentation": "" - }, - { - "code": 1439, - "codeText": "TS1439", - "title": "Type alias must be given a name.", - "category": "error", - "documentation": "" - }, - { - "code": 1440, - "codeText": "TS1440", - "title": "Variable declaration not allowed at this location.", - "category": "error", - "documentation": "" - }, - { - "code": 1441, - "codeText": "TS1441", - "title": "Cannot start a function call in a type annotation.", - "category": "error", - "documentation": "" - }, - { - "code": 1442, - "codeText": "TS1442", - "title": "Expected '=' for property initializer.", - "category": "error", - "documentation": "" - }, - { - "code": 1443, - "codeText": "TS1443", - "title": "Module declaration names may only use ' or \" quoted strings.", - "category": "error", - "documentation": "" - }, - { - "code": 1444, - "codeText": "TS1444", - "title": "'{0}' is a type and must be imported using a type-only import when 'preserveValueImports' and 'isolatedModules' are both enabled.", - "category": "error", - "documentation": "" - }, - { - "code": 1446, - "codeText": "TS1446", - "title": "'{0}' resolves to a type-only declaration and must be imported using a type-only import when 'preserveValueImports' and 'isolatedModules' are both enabled.", - "category": "error", - "documentation": "" - }, - { - "code": 1448, - "codeText": "TS1448", - "title": "'{0}' resolves to a type-only declaration and must be re-exported using a type-only re-export when 'isolatedModules' is enabled.", - "category": "error", - "documentation": "" - }, - { - "code": 1449, - "codeText": "TS1449", - "title": "Preserve unused imported values in the JavaScript output that would otherwise be removed.", - "category": "message", - "documentation": "" - }, - { - "code": 1450, - "codeText": "TS1450", - "title": "Dynamic imports can only accept a module specifier and an optional assertion as arguments", - "category": "message", - "documentation": "" - }, - { - "code": 1451, - "codeText": "TS1451", - "title": "Private identifiers are only allowed in class bodies and may only be used as part of a class member declaration, property access, or on the left-hand-side of an 'in' expression", - "category": "error", - "documentation": "" - }, - { - "code": 1452, - "codeText": "TS1452", - "title": "'resolution-mode' assertions are only supported when `moduleResolution` is `node16` or `nodenext`.", - "category": "error", - "documentation": "" - }, - { - "code": 1453, - "codeText": "TS1453", - "title": "`resolution-mode` should be either `require` or `import`.", - "category": "error", - "documentation": "" - }, - { - "code": 1454, - "codeText": "TS1454", - "title": "`resolution-mode` can only be set for type-only imports.", - "category": "error", - "documentation": "" - }, - { - "code": 1455, - "codeText": "TS1455", - "title": "`resolution-mode` is the only valid key for type import assertions.", - "category": "error", - "documentation": "" - }, - { - "code": 1456, - "codeText": "TS1456", - "title": "Type import assertions should have exactly one key - `resolution-mode` - with value `import` or `require`.", - "category": "error", - "documentation": "" - }, - { - "code": 1457, - "codeText": "TS1457", - "title": "Matched by default include pattern '**/*'", - "category": "message", - "documentation": "" - }, - { - "code": 1458, - "codeText": "TS1458", - "title": "File is ECMAScript module because '{0}' has field \"type\" with value \"module\"", - "category": "message", - "documentation": "" - }, - { - "code": 1459, - "codeText": "TS1459", - "title": "File is CommonJS module because '{0}' has field \"type\" whose value is not \"module\"", - "category": "message", - "documentation": "" - }, - { - "code": 1460, - "codeText": "TS1460", - "title": "File is CommonJS module because '{0}' does not have field \"type\"", - "category": "message", - "documentation": "" - }, - { - "code": 1461, - "codeText": "TS1461", - "title": "File is CommonJS module because 'package.json' was not found", - "category": "message", - "documentation": "" - }, - { - "code": 1470, - "codeText": "TS1470", - "title": "The 'import.meta' meta-property is not allowed in files which will build into CommonJS output.", - "category": "error", - "documentation": "" - }, - { - "code": 1471, - "codeText": "TS1471", - "title": "Module '{0}' cannot be imported using this construct. The specifier only resolves to an ES module, which cannot be imported with 'require'. Use an ECMAScript import instead.", - "category": "error", - "documentation": "" - }, - { - "code": 1472, - "codeText": "TS1472", - "title": "'catch' or 'finally' expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1473, - "codeText": "TS1473", - "title": "An import declaration can only be used at the top level of a module.", - "category": "error", - "documentation": "" - }, - { - "code": 1474, - "codeText": "TS1474", - "title": "An export declaration can only be used at the top level of a module.", - "category": "error", - "documentation": "" - }, - { - "code": 1475, - "codeText": "TS1475", - "title": "Control what method is used to detect module-format JS files.", - "category": "message", - "documentation": "" - }, - { - "code": 1476, - "codeText": "TS1476", - "title": "\"auto\": Treat files with imports, exports, import.meta, jsx (with jsx: react-jsx), or esm format (with module: node16+) as modules.", - "category": "message", - "documentation": "" - }, - { - "code": 1477, - "codeText": "TS1477", - "title": "An instantiation expression cannot be followed by a property access.", - "category": "error", - "documentation": "" - }, - { - "code": 1478, - "codeText": "TS1478", - "title": "Identifier or string literal expected.", - "category": "error", - "documentation": "" - }, - { - "code": 1479, - "codeText": "TS1479", - "title": "The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"{0}\")' call instead.", - "category": "error", - "documentation": "" - }, - { - "code": 1480, - "codeText": "TS1480", - "title": "To convert this file to an ECMAScript module, change its file extension to '{0}' or create a local package.json file with `{ \"type\": \"module\" }`.", - "category": "message", - "documentation": "" - }, - { - "code": 1481, - "codeText": "TS1481", - "title": "To convert this file to an ECMAScript module, change its file extension to '{0}', or add the field `\"type\": \"module\"` to '{1}'.", - "category": "message", - "documentation": "" - }, - { - "code": 1482, - "codeText": "TS1482", - "title": "To convert this file to an ECMAScript module, add the field `\"type\": \"module\"` to '{0}'.", - "category": "message", - "documentation": "" - }, - { - "code": 1483, - "codeText": "TS1483", - "title": "To convert this file to an ECMAScript module, create a local package.json file with `{ \"type\": \"module\" }`.", - "category": "message", - "documentation": "" - }, - { - "code": 1484, - "codeText": "TS1484", - "title": "'{0}' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.", - "category": "error", - "documentation": "" - }, - { - "code": 1485, - "codeText": "TS1485", - "title": "'{0}' resolves to a type-only declaration and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.", - "category": "error", - "documentation": "" - }, - { - "code": 1486, - "codeText": "TS1486", - "title": "Decorator used before 'export' here.", - "category": "error", - "documentation": "" - }, - { - "code": 1487, - "codeText": "TS1487", - "title": "Octal escape sequences are not allowed. Use the syntax '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 1488, - "codeText": "TS1488", - "title": "Escape sequence '{0}' is not allowed.", - "category": "error", - "documentation": "" - }, - { - "code": 1489, - "codeText": "TS1489", - "title": "Decimals with leading zeros are not allowed.", - "category": "error", - "documentation": "" - }, - { - "code": 1490, - "codeText": "TS1490", - "title": "File appears to be binary.", - "category": "error", - "documentation": "" - }, - { - "code": 1491, - "codeText": "TS1491", - "title": "'{0}' modifier cannot appear on a 'using' declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 1492, - "codeText": "TS1492", - "title": "'{0}' declarations may not have binding patterns.", - "category": "error", - "documentation": "" - }, - { - "code": 1493, - "codeText": "TS1493", - "title": "The left-hand side of a 'for...in' statement cannot be a 'using' declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 1494, - "codeText": "TS1494", - "title": "The left-hand side of a 'for...in' statement cannot be an 'await using' declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 1495, - "codeText": "TS1495", - "title": "'{0}' modifier cannot appear on an 'await using' declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 2200, - "codeText": "TS2200", - "title": "The types of '{0}' are incompatible between these types.", - "category": "error", - "documentation": "" - }, - { - "code": 2201, - "codeText": "TS2201", - "title": "The types returned by '{0}' are incompatible between these types.", - "category": "error", - "documentation": "" - }, - { - "code": 2202, - "codeText": "TS2202", - "title": "Call signature return types '{0}' and '{1}' are incompatible.", - "category": "error", - "documentation": "" - }, - { - "code": 2203, - "codeText": "TS2203", - "title": "Construct signature return types '{0}' and '{1}' are incompatible.", - "category": "error", - "documentation": "" - }, - { - "code": 2204, - "codeText": "TS2204", - "title": "Call signatures with no arguments have incompatible return types '{0}' and '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2205, - "codeText": "TS2205", - "title": "Construct signatures with no arguments have incompatible return types '{0}' and '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2206, - "codeText": "TS2206", - "title": "The 'type' modifier cannot be used on a named import when 'import type' is used on its import statement.", - "category": "error", - "documentation": "" - }, - { - "code": 2207, - "codeText": "TS2207", - "title": "The 'type' modifier cannot be used on a named export when 'export type' is used on its export statement.", - "category": "error", - "documentation": "" - }, - { - "code": 2208, - "codeText": "TS2208", - "title": "This type parameter might need an `extends {0}` constraint.", - "category": "error", - "documentation": "" - }, - { - "code": 2209, - "codeText": "TS2209", - "title": "The project root is ambiguous, but is required to resolve export map entry '{0}' in file '{1}'. Supply the `rootDir` compiler option to disambiguate.", - "category": "error", - "documentation": "" - }, - { - "code": 2210, - "codeText": "TS2210", - "title": "The project root is ambiguous, but is required to resolve import map entry '{0}' in file '{1}'. Supply the `rootDir` compiler option to disambiguate.", - "category": "error", - "documentation": "" - }, - { - "code": 2211, - "codeText": "TS2211", - "title": "Add `extends` constraint.", - "category": "message", - "documentation": "" - }, - { - "code": 2212, - "codeText": "TS2212", - "title": "Add `extends` constraint to all type parameters", - "category": "message", - "documentation": "" - }, - { - "code": 2300, - "codeText": "TS2300", - "title": "Duplicate identifier '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2301, - "codeText": "TS2301", - "title": "Initializer of instance member variable '{0}' cannot reference identifier '{1}' declared in the constructor.", - "category": "error", - "documentation": "" - }, - { - "code": 2302, - "codeText": "TS2302", - "title": "Static members cannot reference class type parameters.", - "category": "error", - "documentation": "" - }, - { - "code": 2303, - "codeText": "TS2303", - "title": "Circular definition of import alias '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2304, - "codeText": "TS2304", - "title": "Cannot find name '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2305, - "codeText": "TS2305", - "title": "Module '{0}' has no exported member '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2306, - "codeText": "TS2306", - "title": "File '{0}' is not a module.", - "category": "error", - "documentation": "" - }, - { - "code": 2307, - "codeText": "TS2307", - "title": "Cannot find module '{0}' or its corresponding type declarations.", - "category": "error", - "documentation": "" - }, - { - "code": 2308, - "codeText": "TS2308", - "title": "Module {0} has already exported a member named '{1}'. Consider explicitly re-exporting to resolve the ambiguity.", - "category": "error", - "documentation": "" - }, - { - "code": 2309, - "codeText": "TS2309", - "title": "An export assignment cannot be used in a module with other exported elements.", - "category": "error", - "documentation": "" - }, - { - "code": 2310, - "codeText": "TS2310", - "title": "Type '{0}' recursively references itself as a base type.", - "category": "error", - "documentation": "" - }, - { - "code": 2311, - "codeText": "TS2311", - "title": "Cannot find name '{0}'. Did you mean to write this in an async function?", - "category": "error", - "documentation": "" - }, - { - "code": 2312, - "codeText": "TS2312", - "title": "An interface can only extend an object type or intersection of object types with statically known members.", - "category": "error", - "documentation": "" - }, - { - "code": 2313, - "codeText": "TS2313", - "title": "Type parameter '{0}' has a circular constraint.", - "category": "error", - "documentation": "" - }, - { - "code": 2314, - "codeText": "TS2314", - "title": "Generic type '{0}' requires {1} type argument(s).", - "category": "error", - "documentation": "" - }, - { - "code": 2315, - "codeText": "TS2315", - "title": "Type '{0}' is not generic.", - "category": "error", - "documentation": "" - }, - { - "code": 2316, - "codeText": "TS2316", - "title": "Global type '{0}' must be a class or interface type.", - "category": "error", - "documentation": "" - }, - { - "code": 2317, - "codeText": "TS2317", - "title": "Global type '{0}' must have {1} type parameter(s).", - "category": "error", - "documentation": "" - }, - { - "code": 2318, - "codeText": "TS2318", - "title": "Cannot find global type '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2319, - "codeText": "TS2319", - "title": "Named property '{0}' of types '{1}' and '{2}' are not identical.", - "category": "error", - "documentation": "" - }, - { - "code": 2320, - "codeText": "TS2320", - "title": "Interface '{0}' cannot simultaneously extend types '{1}' and '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2321, - "codeText": "TS2321", - "title": "Excessive stack depth comparing types '{0}' and '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2322, - "codeText": "TS2322", - "title": "Type '{0}' is not assignable to type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2323, - "codeText": "TS2323", - "title": "Cannot redeclare exported variable '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2324, - "codeText": "TS2324", - "title": "Property '{0}' is missing in type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2325, - "codeText": "TS2325", - "title": "Property '{0}' is private in type '{1}' but not in type '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2326, - "codeText": "TS2326", - "title": "Types of property '{0}' are incompatible.", - "category": "error", - "documentation": "" - }, - { - "code": 2327, - "codeText": "TS2327", - "title": "Property '{0}' is optional in type '{1}' but required in type '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2328, - "codeText": "TS2328", - "title": "Types of parameters '{0}' and '{1}' are incompatible.", - "category": "error", - "documentation": "" - }, - { - "code": 2329, - "codeText": "TS2329", - "title": "Index signature for type '{0}' is missing in type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2330, - "codeText": "TS2330", - "title": "'{0}' and '{1}' index signatures are incompatible.", - "category": "error", - "documentation": "" - }, - { - "code": 2331, - "codeText": "TS2331", - "title": "'this' cannot be referenced in a module or namespace body.", - "category": "error", - "documentation": "" - }, - { - "code": 2332, - "codeText": "TS2332", - "title": "'this' cannot be referenced in current location.", - "category": "error", - "documentation": "" - }, - { - "code": 2333, - "codeText": "TS2333", - "title": "'this' cannot be referenced in constructor arguments.", - "category": "error", - "documentation": "" - }, - { - "code": 2334, - "codeText": "TS2334", - "title": "'this' cannot be referenced in a static property initializer.", - "category": "error", - "documentation": "" - }, - { - "code": 2335, - "codeText": "TS2335", - "title": "'super' can only be referenced in a derived class.", - "category": "error", - "documentation": "" - }, - { - "code": 2336, - "codeText": "TS2336", - "title": "'super' cannot be referenced in constructor arguments.", - "category": "error", - "documentation": "" - }, - { - "code": 2337, - "codeText": "TS2337", - "title": "Super calls are not permitted outside constructors or in nested functions inside constructors.", - "category": "error", - "documentation": "" - }, - { - "code": 2338, - "codeText": "TS2338", - "title": "'super' property access is permitted only in a constructor, member function, or member accessor of a derived class.", - "category": "error", - "documentation": "" - }, - { - "code": 2339, - "codeText": "TS2339", - "title": "Property '{0}' does not exist on type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2340, - "codeText": "TS2340", - "title": "Only public and protected methods of the base class are accessible via the 'super' keyword.", - "category": "error", - "documentation": "" - }, - { - "code": 2341, - "codeText": "TS2341", - "title": "Property '{0}' is private and only accessible within class '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2343, - "codeText": "TS2343", - "title": "This syntax requires an imported helper named '{1}' which does not exist in '{0}'. Consider upgrading your version of '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2344, - "codeText": "TS2344", - "title": "Type '{0}' does not satisfy the constraint '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2345, - "codeText": "TS2345", - "title": "Argument of type '{0}' is not assignable to parameter of type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2346, - "codeText": "TS2346", - "title": "Call target does not contain any signatures.", - "category": "error", - "documentation": "" - }, - { - "code": 2347, - "codeText": "TS2347", - "title": "Untyped function calls may not accept type arguments.", - "category": "error", - "documentation": "" - }, - { - "code": 2348, - "codeText": "TS2348", - "title": "Value of type '{0}' is not callable. Did you mean to include 'new'?", - "category": "error", - "documentation": "" - }, - { - "code": 2349, - "codeText": "TS2349", - "title": "This expression is not callable.", - "category": "error", - "documentation": "" - }, - { - "code": 2350, - "codeText": "TS2350", - "title": "Only a void function can be called with the 'new' keyword.", - "category": "error", - "documentation": "" - }, - { - "code": 2351, - "codeText": "TS2351", - "title": "This expression is not constructable.", - "category": "error", - "documentation": "" - }, - { - "code": 2352, - "codeText": "TS2352", - "title": "Conversion of type '{0}' to type '{1}' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.", - "category": "error", - "documentation": "" - }, - { - "code": 2353, - "codeText": "TS2353", - "title": "Object literal may only specify known properties, and '{0}' does not exist in type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2354, - "codeText": "TS2354", - "title": "This syntax requires an imported helper but module '{0}' cannot be found.", - "category": "error", - "documentation": "" - }, - { - "code": 2355, - "codeText": "TS2355", - "title": "A function whose declared type is neither 'void' nor 'any' must return a value.", - "category": "error", - "documentation": "" - }, - { - "code": 2356, - "codeText": "TS2356", - "title": "An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.", - "category": "error", - "documentation": "" - }, - { - "code": 2357, - "codeText": "TS2357", - "title": "The operand of an increment or decrement operator must be a variable or a property access.", - "category": "error", - "documentation": "" - }, - { - "code": 2358, - "codeText": "TS2358", - "title": "The left-hand side of an 'instanceof' expression must be of type 'any', an object type or a type parameter.", - "category": "error", - "documentation": "" - }, - { - "code": 2359, - "codeText": "TS2359", - "title": "The right-hand side of an 'instanceof' expression must be of type 'any' or of a type assignable to the 'Function' interface type.", - "category": "error", - "documentation": "" - }, - { - "code": 2362, - "codeText": "TS2362", - "title": "The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.", - "category": "error", - "documentation": "" - }, - { - "code": 2363, - "codeText": "TS2363", - "title": "The right-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.", - "category": "error", - "documentation": "" - }, - { - "code": 2364, - "codeText": "TS2364", - "title": "The left-hand side of an assignment expression must be a variable or a property access.", - "category": "error", - "documentation": "" - }, - { - "code": 2365, - "codeText": "TS2365", - "title": "Operator '{0}' cannot be applied to types '{1}' and '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2366, - "codeText": "TS2366", - "title": "Function lacks ending return statement and return type does not include 'undefined'.", - "category": "error", - "documentation": "" - }, - { - "code": 2367, - "codeText": "TS2367", - "title": "This comparison appears to be unintentional because the types '{0}' and '{1}' have no overlap.", - "category": "error", - "documentation": "" - }, - { - "code": 2368, - "codeText": "TS2368", - "title": "Type parameter name cannot be '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2369, - "codeText": "TS2369", - "title": "A parameter property is only allowed in a constructor implementation.", - "category": "error", - "documentation": "" - }, - { - "code": 2370, - "codeText": "TS2370", - "title": "A rest parameter must be of an array type.", - "category": "error", - "documentation": "" - }, - { - "code": 2371, - "codeText": "TS2371", - "title": "A parameter initializer is only allowed in a function or constructor implementation.", - "category": "error", - "documentation": "" - }, - { - "code": 2372, - "codeText": "TS2372", - "title": "Parameter '{0}' cannot reference itself.", - "category": "error", - "documentation": "" - }, - { - "code": 2373, - "codeText": "TS2373", - "title": "Parameter '{0}' cannot reference identifier '{1}' declared after it.", - "category": "error", - "documentation": "" - }, - { - "code": 2374, - "codeText": "TS2374", - "title": "Duplicate index signature for type '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2375, - "codeText": "TS2375", - "title": "Type '{0}' is not assignable to type '{1}' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.", - "category": "error", - "documentation": "" - }, - { - "code": 2376, - "codeText": "TS2376", - "title": "A 'super' call must be the first statement in the constructor to refer to 'super' or 'this' when a derived class contains initialized properties, parameter properties, or private identifiers.", - "category": "error", - "documentation": "" - }, - { - "code": 2377, - "codeText": "TS2377", - "title": "Constructors for derived classes must contain a 'super' call.", - "category": "error", - "documentation": "" - }, - { - "code": 2378, - "codeText": "TS2378", - "title": "A 'get' accessor must return a value.", - "category": "error", - "documentation": "" - }, - { - "code": 2379, - "codeText": "TS2379", - "title": "Argument of type '{0}' is not assignable to parameter of type '{1}' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.", - "category": "error", - "documentation": "" - }, - { - "code": 2380, - "codeText": "TS2380", - "title": "The return type of a 'get' accessor must be assignable to its 'set' accessor type", - "category": "error", - "documentation": "" - }, - { - "code": 2383, - "codeText": "TS2383", - "title": "Overload signatures must all be exported or non-exported.", - "category": "error", - "documentation": "" - }, - { - "code": 2384, - "codeText": "TS2384", - "title": "Overload signatures must all be ambient or non-ambient.", - "category": "error", - "documentation": "" - }, - { - "code": 2385, - "codeText": "TS2385", - "title": "Overload signatures must all be public, private or protected.", - "category": "error", - "documentation": "" - }, - { - "code": 2386, - "codeText": "TS2386", - "title": "Overload signatures must all be optional or required.", - "category": "error", - "documentation": "" - }, - { - "code": 2387, - "codeText": "TS2387", - "title": "Function overload must be static.", - "category": "error", - "documentation": "" - }, - { - "code": 2388, - "codeText": "TS2388", - "title": "Function overload must not be static.", - "category": "error", - "documentation": "" - }, - { - "code": 2389, - "codeText": "TS2389", - "title": "Function implementation name must be '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2390, - "codeText": "TS2390", - "title": "Constructor implementation is missing.", - "category": "error", - "documentation": "" - }, - { - "code": 2391, - "codeText": "TS2391", - "title": "Function implementation is missing or not immediately following the declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 2392, - "codeText": "TS2392", - "title": "Multiple constructor implementations are not allowed.", - "category": "error", - "documentation": "" - }, - { - "code": 2393, - "codeText": "TS2393", - "title": "Duplicate function implementation.", - "category": "error", - "documentation": "" - }, - { - "code": 2394, - "codeText": "TS2394", - "title": "This overload signature is not compatible with its implementation signature.", - "category": "error", - "documentation": "" - }, - { - "code": 2395, - "codeText": "TS2395", - "title": "Individual declarations in merged declaration '{0}' must be all exported or all local.", - "category": "error", - "documentation": "" - }, - { - "code": 2396, - "codeText": "TS2396", - "title": "Duplicate identifier 'arguments'. Compiler uses 'arguments' to initialize rest parameters.", - "category": "error", - "documentation": "" - }, - { - "code": 2397, - "codeText": "TS2397", - "title": "Declaration name conflicts with built-in global identifier '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2398, - "codeText": "TS2398", - "title": "'constructor' cannot be used as a parameter property name.", - "category": "error", - "documentation": "" - }, - { - "code": 2399, - "codeText": "TS2399", - "title": "Duplicate identifier '_this'. Compiler uses variable declaration '_this' to capture 'this' reference.", - "category": "error", - "documentation": "" - }, - { - "code": 2400, - "codeText": "TS2400", - "title": "Expression resolves to variable declaration '_this' that compiler uses to capture 'this' reference.", - "category": "error", - "documentation": "" - }, - { - "code": 2401, - "codeText": "TS2401", - "title": "A 'super' call must be a root-level statement within a constructor of a derived class that contains initialized properties, parameter properties, or private identifiers.", - "category": "error", - "documentation": "" - }, - { - "code": 2402, - "codeText": "TS2402", - "title": "Expression resolves to '_super' that compiler uses to capture base class reference.", - "category": "error", - "documentation": "" - }, - { - "code": 2403, - "codeText": "TS2403", - "title": "Subsequent variable declarations must have the same type. Variable '{0}' must be of type '{1}', but here has type '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2404, - "codeText": "TS2404", - "title": "The left-hand side of a 'for...in' statement cannot use a type annotation.", - "category": "error", - "documentation": "" - }, - { - "code": 2405, - "codeText": "TS2405", - "title": "The left-hand side of a 'for...in' statement must be of type 'string' or 'any'.", - "category": "error", - "documentation": "" - }, - { - "code": 2406, - "codeText": "TS2406", - "title": "The left-hand side of a 'for...in' statement must be a variable or a property access.", - "category": "error", - "documentation": "" - }, - { - "code": 2407, - "codeText": "TS2407", - "title": "The right-hand side of a 'for...in' statement must be of type 'any', an object type or a type parameter, but here has type '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2408, - "codeText": "TS2408", - "title": "Setters cannot return a value.", - "category": "error", - "documentation": "" - }, - { - "code": 2409, - "codeText": "TS2409", - "title": "Return type of constructor signature must be assignable to the instance type of the class.", - "category": "error", - "documentation": "" - }, - { - "code": 2410, - "codeText": "TS2410", - "title": "The 'with' statement is not supported. All symbols in a 'with' block will have type 'any'.", - "category": "error", - "documentation": "" - }, - { - "code": 2411, - "codeText": "TS2411", - "title": "Property '{0}' of type '{1}' is not assignable to '{2}' index type '{3}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2412, - "codeText": "TS2412", - "title": "Type '{0}' is not assignable to type '{1}' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the type of the target.", - "category": "error", - "documentation": "" - }, - { - "code": 2413, - "codeText": "TS2413", - "title": "'{0}' index type '{1}' is not assignable to '{2}' index type '{3}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2414, - "codeText": "TS2414", - "title": "Class name cannot be '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2415, - "codeText": "TS2415", - "title": "Class '{0}' incorrectly extends base class '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2416, - "codeText": "TS2416", - "title": "Property '{0}' in type '{1}' is not assignable to the same property in base type '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2417, - "codeText": "TS2417", - "title": "Class static side '{0}' incorrectly extends base class static side '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2418, - "codeText": "TS2418", - "title": "Type of computed property's value is '{0}', which is not assignable to type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2419, - "codeText": "TS2419", - "title": "Types of construct signatures are incompatible.", - "category": "error", - "documentation": "" - }, - { - "code": 2420, - "codeText": "TS2420", - "title": "Class '{0}' incorrectly implements interface '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2422, - "codeText": "TS2422", - "title": "A class can only implement an object type or intersection of object types with statically known members.", - "category": "error", - "documentation": "" - }, - { - "code": 2423, - "codeText": "TS2423", - "title": "Class '{0}' defines instance member function '{1}', but extended class '{2}' defines it as instance member accessor.", - "category": "error", - "documentation": "" - }, - { - "code": 2425, - "codeText": "TS2425", - "title": "Class '{0}' defines instance member property '{1}', but extended class '{2}' defines it as instance member function.", - "category": "error", - "documentation": "" - }, - { - "code": 2426, - "codeText": "TS2426", - "title": "Class '{0}' defines instance member accessor '{1}', but extended class '{2}' defines it as instance member function.", - "category": "error", - "documentation": "" - }, - { - "code": 2427, - "codeText": "TS2427", - "title": "Interface name cannot be '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2428, - "codeText": "TS2428", - "title": "All declarations of '{0}' must have identical type parameters.", - "category": "error", - "documentation": "" - }, - { - "code": 2430, - "codeText": "TS2430", - "title": "Interface '{0}' incorrectly extends interface '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2431, - "codeText": "TS2431", - "title": "Enum name cannot be '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2432, - "codeText": "TS2432", - "title": "In an enum with multiple declarations, only one declaration can omit an initializer for its first enum element.", - "category": "error", - "documentation": "" - }, - { - "code": 2433, - "codeText": "TS2433", - "title": "A namespace declaration cannot be in a different file from a class or function with which it is merged.", - "category": "error", - "documentation": "" - }, - { - "code": 2434, - "codeText": "TS2434", - "title": "A namespace declaration cannot be located prior to a class or function with which it is merged.", - "category": "error", - "documentation": "" - }, - { - "code": 2435, - "codeText": "TS2435", - "title": "Ambient modules cannot be nested in other modules or namespaces.", - "category": "error", - "documentation": "" - }, - { - "code": 2436, - "codeText": "TS2436", - "title": "Ambient module declaration cannot specify relative module name.", - "category": "error", - "documentation": "" - }, - { - "code": 2437, - "codeText": "TS2437", - "title": "Module '{0}' is hidden by a local declaration with the same name.", - "category": "error", - "documentation": "" - }, - { - "code": 2438, - "codeText": "TS2438", - "title": "Import name cannot be '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2439, - "codeText": "TS2439", - "title": "Import or export declaration in an ambient module declaration cannot reference module through relative module name.", - "category": "error", - "documentation": "" - }, - { - "code": 2440, - "codeText": "TS2440", - "title": "Import declaration conflicts with local declaration of '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2441, - "codeText": "TS2441", - "title": "Duplicate identifier '{0}'. Compiler reserves name '{1}' in top level scope of a module.", - "category": "error", - "documentation": "" - }, - { - "code": 2442, - "codeText": "TS2442", - "title": "Types have separate declarations of a private property '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2443, - "codeText": "TS2443", - "title": "Property '{0}' is protected but type '{1}' is not a class derived from '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2444, - "codeText": "TS2444", - "title": "Property '{0}' is protected in type '{1}' but public in type '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2445, - "codeText": "TS2445", - "title": "Property '{0}' is protected and only accessible within class '{1}' and its subclasses.", - "category": "error", - "documentation": "" - }, - { - "code": 2446, - "codeText": "TS2446", - "title": "Property '{0}' is protected and only accessible through an instance of class '{1}'. This is an instance of class '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2447, - "codeText": "TS2447", - "title": "The '{0}' operator is not allowed for boolean types. Consider using '{1}' instead.", - "category": "error", - "documentation": "" - }, - { - "code": 2448, - "codeText": "TS2448", - "title": "Block-scoped variable '{0}' used before its declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 2449, - "codeText": "TS2449", - "title": "Class '{0}' used before its declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 2450, - "codeText": "TS2450", - "title": "Enum '{0}' used before its declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 2451, - "codeText": "TS2451", - "title": "Cannot redeclare block-scoped variable '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2452, - "codeText": "TS2452", - "title": "An enum member cannot have a numeric name.", - "category": "error", - "documentation": "" - }, - { - "code": 2454, - "codeText": "TS2454", - "title": "Variable '{0}' is used before being assigned.", - "category": "error", - "documentation": "" - }, - { - "code": 2456, - "codeText": "TS2456", - "title": "Type alias '{0}' circularly references itself.", - "category": "error", - "documentation": "" - }, - { - "code": 2457, - "codeText": "TS2457", - "title": "Type alias name cannot be '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2458, - "codeText": "TS2458", - "title": "An AMD module cannot have multiple name assignments.", - "category": "error", - "documentation": "" - }, - { - "code": 2459, - "codeText": "TS2459", - "title": "Module '{0}' declares '{1}' locally, but it is not exported.", - "category": "error", - "documentation": "" - }, - { - "code": 2460, - "codeText": "TS2460", - "title": "Module '{0}' declares '{1}' locally, but it is exported as '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2461, - "codeText": "TS2461", - "title": "Type '{0}' is not an array type.", - "category": "error", - "documentation": "" - }, - { - "code": 2462, - "codeText": "TS2462", - "title": "A rest element must be last in a destructuring pattern.", - "category": "error", - "documentation": "" - }, - { - "code": 2463, - "codeText": "TS2463", - "title": "A binding pattern parameter cannot be optional in an implementation signature.", - "category": "error", - "documentation": "" - }, - { - "code": 2464, - "codeText": "TS2464", - "title": "A computed property name must be of type 'string', 'number', 'symbol', or 'any'.", - "category": "error", - "documentation": "" - }, - { - "code": 2465, - "codeText": "TS2465", - "title": "'this' cannot be referenced in a computed property name.", - "category": "error", - "documentation": "" - }, - { - "code": 2466, - "codeText": "TS2466", - "title": "'super' cannot be referenced in a computed property name.", - "category": "error", - "documentation": "" - }, - { - "code": 2467, - "codeText": "TS2467", - "title": "A computed property name cannot reference a type parameter from its containing type.", - "category": "error", - "documentation": "" - }, - { - "code": 2468, - "codeText": "TS2468", - "title": "Cannot find global value '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2469, - "codeText": "TS2469", - "title": "The '{0}' operator cannot be applied to type 'symbol'.", - "category": "error", - "documentation": "" - }, - { - "code": 2472, - "codeText": "TS2472", - "title": "Spread operator in 'new' expressions is only available when targeting ECMAScript 5 and higher.", - "category": "error", - "documentation": "" - }, - { - "code": 2473, - "codeText": "TS2473", - "title": "Enum declarations must all be const or non-const.", - "category": "error", - "documentation": "" - }, - { - "code": 2474, - "codeText": "TS2474", - "title": "const enum member initializers must be constant expressions.", - "category": "error", - "documentation": "" - }, - { - "code": 2475, - "codeText": "TS2475", - "title": "'const' enums can only be used in property or index access expressions or the right hand side of an import declaration or export assignment or type query.", - "category": "error", - "documentation": "" - }, - { - "code": 2476, - "codeText": "TS2476", - "title": "A const enum member can only be accessed using a string literal.", - "category": "error", - "documentation": "" - }, - { - "code": 2477, - "codeText": "TS2477", - "title": "'const' enum member initializer was evaluated to a non-finite value.", - "category": "error", - "documentation": "" - }, - { - "code": 2478, - "codeText": "TS2478", - "title": "'const' enum member initializer was evaluated to disallowed value 'NaN'.", - "category": "error", - "documentation": "" - }, - { - "code": 2480, - "codeText": "TS2480", - "title": "'let' is not allowed to be used as a name in 'let' or 'const' declarations.", - "category": "error", - "documentation": "" - }, - { - "code": 2481, - "codeText": "TS2481", - "title": "Cannot initialize outer scoped variable '{0}' in the same scope as block scoped declaration '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2483, - "codeText": "TS2483", - "title": "The left-hand side of a 'for...of' statement cannot use a type annotation.", - "category": "error", - "documentation": "" - }, - { - "code": 2484, - "codeText": "TS2484", - "title": "Export declaration conflicts with exported declaration of '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2487, - "codeText": "TS2487", - "title": "The left-hand side of a 'for...of' statement must be a variable or a property access.", - "category": "error", - "documentation": "" - }, - { - "code": 2488, - "codeText": "TS2488", - "title": "Type '{0}' must have a '[Symbol.iterator]()' method that returns an iterator.", - "category": "error", - "documentation": "" - }, - { - "code": 2489, - "codeText": "TS2489", - "title": "An iterator must have a 'next()' method.", - "category": "error", - "documentation": "" - }, - { - "code": 2490, - "codeText": "TS2490", - "title": "The type returned by the '{0}()' method of an iterator must have a 'value' property.", - "category": "error", - "documentation": "" - }, - { - "code": 2491, - "codeText": "TS2491", - "title": "The left-hand side of a 'for...in' statement cannot be a destructuring pattern.", - "category": "error", - "documentation": "" - }, - { - "code": 2492, - "codeText": "TS2492", - "title": "Cannot redeclare identifier '{0}' in catch clause.", - "category": "error", - "documentation": "" - }, - { - "code": 2493, - "codeText": "TS2493", - "title": "Tuple type '{0}' of length '{1}' has no element at index '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2494, - "codeText": "TS2494", - "title": "Using a string in a 'for...of' statement is only supported in ECMAScript 5 and higher.", - "category": "error", - "documentation": "" - }, - { - "code": 2495, - "codeText": "TS2495", - "title": "Type '{0}' is not an array type or a string type.", - "category": "error", - "documentation": "" - }, - { - "code": 2496, - "codeText": "TS2496", - "title": "The 'arguments' object cannot be referenced in an arrow function in ES3 and ES5. Consider using a standard function expression.", - "category": "error", - "documentation": "" - }, - { - "code": 2497, - "codeText": "TS2497", - "title": "This module can only be referenced with ECMAScript imports/exports by turning on the '{0}' flag and referencing its default export.", - "category": "error", - "documentation": "" - }, - { - "code": 2498, - "codeText": "TS2498", - "title": "Module '{0}' uses 'export =' and cannot be used with 'export *'.", - "category": "error", - "documentation": "" - }, - { - "code": 2499, - "codeText": "TS2499", - "title": "An interface can only extend an identifier/qualified-name with optional type arguments.", - "category": "error", - "documentation": "" - }, - { - "code": 2500, - "codeText": "TS2500", - "title": "A class can only implement an identifier/qualified-name with optional type arguments.", - "category": "error", - "documentation": "" - }, - { - "code": 2501, - "codeText": "TS2501", - "title": "A rest element cannot contain a binding pattern.", - "category": "error", - "documentation": "" - }, - { - "code": 2502, - "codeText": "TS2502", - "title": "'{0}' is referenced directly or indirectly in its own type annotation.", - "category": "error", - "documentation": "" - }, - { - "code": 2503, - "codeText": "TS2503", - "title": "Cannot find namespace '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2504, - "codeText": "TS2504", - "title": "Type '{0}' must have a '[Symbol.asyncIterator]()' method that returns an async iterator.", - "category": "error", - "documentation": "" - }, - { - "code": 2505, - "codeText": "TS2505", - "title": "A generator cannot have a 'void' type annotation.", - "category": "error", - "documentation": "" - }, - { - "code": 2506, - "codeText": "TS2506", - "title": "'{0}' is referenced directly or indirectly in its own base expression.", - "category": "error", - "documentation": "" - }, - { - "code": 2507, - "codeText": "TS2507", - "title": "Type '{0}' is not a constructor function type.", - "category": "error", - "documentation": "" - }, - { - "code": 2508, - "codeText": "TS2508", - "title": "No base constructor has the specified number of type arguments.", - "category": "error", - "documentation": "" - }, - { - "code": 2509, - "codeText": "TS2509", - "title": "Base constructor return type '{0}' is not an object type or intersection of object types with statically known members.", - "category": "error", - "documentation": "" - }, - { - "code": 2510, - "codeText": "TS2510", - "title": "Base constructors must all have the same return type.", - "category": "error", - "documentation": "" - }, - { - "code": 2511, - "codeText": "TS2511", - "title": "Cannot create an instance of an abstract class.", - "category": "error", - "documentation": "" - }, - { - "code": 2512, - "codeText": "TS2512", - "title": "Overload signatures must all be abstract or non-abstract.", - "category": "error", - "documentation": "" - }, - { - "code": 2513, - "codeText": "TS2513", - "title": "Abstract method '{0}' in class '{1}' cannot be accessed via super expression.", - "category": "error", - "documentation": "" - }, - { - "code": 2514, - "codeText": "TS2514", - "title": "A tuple type cannot be indexed with a negative value.", - "category": "error", - "documentation": "" - }, - { - "code": 2515, - "codeText": "TS2515", - "title": "Non-abstract class '{0}' does not implement inherited abstract member '{1}' from class '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2516, - "codeText": "TS2516", - "title": "All declarations of an abstract method must be consecutive.", - "category": "error", - "documentation": "" - }, - { - "code": 2517, - "codeText": "TS2517", - "title": "Cannot assign an abstract constructor type to a non-abstract constructor type.", - "category": "error", - "documentation": "" - }, - { - "code": 2518, - "codeText": "TS2518", - "title": "A 'this'-based type guard is not compatible with a parameter-based type guard.", - "category": "error", - "documentation": "" - }, - { - "code": 2519, - "codeText": "TS2519", - "title": "An async iterator must have a 'next()' method.", - "category": "error", - "documentation": "" - }, - { - "code": 2520, - "codeText": "TS2520", - "title": "Duplicate identifier '{0}'. Compiler uses declaration '{1}' to support async functions.", - "category": "error", - "documentation": "" - }, - { - "code": 2522, - "codeText": "TS2522", - "title": "The 'arguments' object cannot be referenced in an async function or method in ES3 and ES5. Consider using a standard function or method.", - "category": "error", - "documentation": "" - }, - { - "code": 2523, - "codeText": "TS2523", - "title": "'yield' expressions cannot be used in a parameter initializer.", - "category": "error", - "documentation": "" - }, - { - "code": 2524, - "codeText": "TS2524", - "title": "'await' expressions cannot be used in a parameter initializer.", - "category": "error", - "documentation": "" - }, - { - "code": 2525, - "codeText": "TS2525", - "title": "Initializer provides no value for this binding element and the binding element has no default value.", - "category": "error", - "documentation": "" - }, - { - "code": 2526, - "codeText": "TS2526", - "title": "A 'this' type is available only in a non-static member of a class or interface.", - "category": "error", - "documentation": "" - }, - { - "code": 2527, - "codeText": "TS2527", - "title": "The inferred type of '{0}' references an inaccessible '{1}' type. A type annotation is necessary.", - "category": "error", - "documentation": "" - }, - { - "code": 2528, - "codeText": "TS2528", - "title": "A module cannot have multiple default exports.", - "category": "error", - "documentation": "" - }, - { - "code": 2529, - "codeText": "TS2529", - "title": "Duplicate identifier '{0}'. Compiler reserves name '{1}' in top level scope of a module containing async functions.", - "category": "error", - "documentation": "" - }, - { - "code": 2530, - "codeText": "TS2530", - "title": "Property '{0}' is incompatible with index signature.", - "category": "error", - "documentation": "" - }, - { - "code": 2531, - "codeText": "TS2531", - "title": "Object is possibly 'null'.", - "category": "error", - "documentation": "" - }, - { - "code": 2532, - "codeText": "TS2532", - "title": "Object is possibly 'undefined'.", - "category": "error", - "documentation": "" - }, - { - "code": 2533, - "codeText": "TS2533", - "title": "Object is possibly 'null' or 'undefined'.", - "category": "error", - "documentation": "" - }, - { - "code": 2534, - "codeText": "TS2534", - "title": "A function returning 'never' cannot have a reachable end point.", - "category": "error", - "documentation": "" - }, - { - "code": 2536, - "codeText": "TS2536", - "title": "Type '{0}' cannot be used to index type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2537, - "codeText": "TS2537", - "title": "Type '{0}' has no matching index signature for type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2538, - "codeText": "TS2538", - "title": "Type '{0}' cannot be used as an index type.", - "category": "error", - "documentation": "" - }, - { - "code": 2539, - "codeText": "TS2539", - "title": "Cannot assign to '{0}' because it is not a variable.", - "category": "error", - "documentation": "" - }, - { - "code": 2540, - "codeText": "TS2540", - "title": "Cannot assign to '{0}' because it is a read-only property.", - "category": "error", - "documentation": "" - }, - { - "code": 2542, - "codeText": "TS2542", - "title": "Index signature in type '{0}' only permits reading.", - "category": "error", - "documentation": "" - }, - { - "code": 2543, - "codeText": "TS2543", - "title": "Duplicate identifier '_newTarget'. Compiler uses variable declaration '_newTarget' to capture 'new.target' meta-property reference.", - "category": "error", - "documentation": "" - }, - { - "code": 2544, - "codeText": "TS2544", - "title": "Expression resolves to variable declaration '_newTarget' that compiler uses to capture 'new.target' meta-property reference.", - "category": "error", - "documentation": "" - }, - { - "code": 2545, - "codeText": "TS2545", - "title": "A mixin class must have a constructor with a single rest parameter of type 'any[]'.", - "category": "error", - "documentation": "" - }, - { - "code": 2547, - "codeText": "TS2547", - "title": "The type returned by the '{0}()' method of an async iterator must be a promise for a type with a 'value' property.", - "category": "error", - "documentation": "" - }, - { - "code": 2548, - "codeText": "TS2548", - "title": "Type '{0}' is not an array type or does not have a '[Symbol.iterator]()' method that returns an iterator.", - "category": "error", - "documentation": "" - }, - { - "code": 2549, - "codeText": "TS2549", - "title": "Type '{0}' is not an array type or a string type or does not have a '[Symbol.iterator]()' method that returns an iterator.", - "category": "error", - "documentation": "" - }, - { - "code": 2550, - "codeText": "TS2550", - "title": "Property '{0}' does not exist on type '{1}'. Do you need to change your target library? Try changing the 'lib' compiler option to '{2}' or later.", - "category": "error", - "documentation": "" - }, - { - "code": 2551, - "codeText": "TS2551", - "title": "Property '{0}' does not exist on type '{1}'. Did you mean '{2}'?", - "category": "error", - "documentation": "" - }, - { - "code": 2552, - "codeText": "TS2552", - "title": "Cannot find name '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" - }, - { - "code": 2553, - "codeText": "TS2553", - "title": "Computed values are not permitted in an enum with string valued members.", - "category": "error", - "documentation": "" - }, - { - "code": 2554, - "codeText": "TS2554", - "title": "Expected {0} arguments, but got {1}.", - "category": "error", - "documentation": "" - }, - { - "code": 2555, - "codeText": "TS2555", - "title": "Expected at least {0} arguments, but got {1}.", - "category": "error", - "documentation": "" - }, - { - "code": 2556, - "codeText": "TS2556", - "title": "A spread argument must either have a tuple type or be passed to a rest parameter.", - "category": "error", - "documentation": "" - }, - { - "code": 2558, - "codeText": "TS2558", - "title": "Expected {0} type arguments, but got {1}.", - "category": "error", - "documentation": "" - }, - { - "code": 2559, - "codeText": "TS2559", - "title": "Type '{0}' has no properties in common with type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2560, - "codeText": "TS2560", - "title": "Value of type '{0}' has no properties in common with type '{1}'. Did you mean to call it?", - "category": "error", - "documentation": "" - }, - { - "code": 2561, - "codeText": "TS2561", - "title": "Object literal may only specify known properties, but '{0}' does not exist in type '{1}'. Did you mean to write '{2}'?", - "category": "error", - "documentation": "" - }, - { - "code": 2562, - "codeText": "TS2562", - "title": "Base class expressions cannot reference class type parameters.", - "category": "error", - "documentation": "" - }, - { - "code": 2563, - "codeText": "TS2563", - "title": "The containing function or module body is too large for control flow analysis.", - "category": "error", - "documentation": "" - }, - { - "code": 2564, - "codeText": "TS2564", - "title": "Property '{0}' has no initializer and is not definitely assigned in the constructor.", - "category": "error", - "documentation": "" - }, - { - "code": 2565, - "codeText": "TS2565", - "title": "Property '{0}' is used before being assigned.", - "category": "error", - "documentation": "" - }, - { - "code": 2566, - "codeText": "TS2566", - "title": "A rest element cannot have a property name.", - "category": "error", - "documentation": "" - }, - { - "code": 2567, - "codeText": "TS2567", - "title": "Enum declarations can only merge with namespace or other enum declarations.", - "category": "error", - "documentation": "" - }, - { - "code": 2568, - "codeText": "TS2568", - "title": "Property '{0}' may not exist on type '{1}'. Did you mean '{2}'?", - "category": "error", - "documentation": "" - }, - { - "code": 2570, - "codeText": "TS2570", - "title": "Could not find name '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" - }, - { - "code": 2571, - "codeText": "TS2571", - "title": "Object is of type 'unknown'.", - "category": "error", - "documentation": "" - }, - { - "code": 2574, - "codeText": "TS2574", - "title": "A rest element type must be an array type.", - "category": "error", - "documentation": "" - }, - { - "code": 2575, - "codeText": "TS2575", - "title": "No overload expects {0} arguments, but overloads do exist that expect either {1} or {2} arguments.", - "category": "error", - "documentation": "" - }, - { - "code": 2576, - "codeText": "TS2576", - "title": "Property '{0}' does not exist on type '{1}'. Did you mean to access the static member '{2}' instead?", - "category": "error", - "documentation": "" - }, - { - "code": 2577, - "codeText": "TS2577", - "title": "Return type annotation circularly references itself.", - "category": "error", - "documentation": "" - }, - { - "code": 2578, - "codeText": "TS2578", - "title": "Unused '@ts-expect-error' directive.", - "category": "error", - "documentation": "" - }, - { - "code": 2580, - "codeText": "TS2580", - "title": "Cannot find name '{0}'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.", - "category": "error", - "documentation": "" - }, - { - "code": 2581, - "codeText": "TS2581", - "title": "Cannot find name '{0}'. Do you need to install type definitions for jQuery? Try `npm i --save-dev @types/jquery`.", - "category": "error", - "documentation": "" - }, - { - "code": 2582, - "codeText": "TS2582", - "title": "Cannot find name '{0}'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.", - "category": "error", - "documentation": "" - }, - { - "code": 2583, - "codeText": "TS2583", - "title": "Cannot find name '{0}'. Do you need to change your target library? Try changing the 'lib' compiler option to '{1}' or later.", - "category": "error", - "documentation": "" - }, - { - "code": 2584, - "codeText": "TS2584", - "title": "Cannot find name '{0}'. Do you need to change your target library? Try changing the 'lib' compiler option to include 'dom'.", - "category": "error", - "documentation": "" - }, - { - "code": 2585, - "codeText": "TS2585", - "title": "'{0}' only refers to a type, but is being used as a value here. Do you need to change your target library? Try changing the 'lib' compiler option to es2015 or later.", - "category": "error", - "documentation": "" - }, - { - "code": 2588, - "codeText": "TS2588", - "title": "Cannot assign to '{0}' because it is a constant.", - "category": "error", - "documentation": "" - }, - { - "code": 2589, - "codeText": "TS2589", - "title": "Type instantiation is excessively deep and possibly infinite.", - "category": "error", - "documentation": "" - }, - { - "code": 2590, - "codeText": "TS2590", - "title": "Expression produces a union type that is too complex to represent.", - "category": "error", - "documentation": "" - }, - { - "code": 2591, - "codeText": "TS2591", - "title": "Cannot find name '{0}'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node` and then add 'node' to the types field in your tsconfig.", - "category": "error", - "documentation": "" - }, - { - "code": 2592, - "codeText": "TS2592", - "title": "Cannot find name '{0}'. Do you need to install type definitions for jQuery? Try `npm i --save-dev @types/jquery` and then add 'jquery' to the types field in your tsconfig.", - "category": "error", - "documentation": "" - }, - { - "code": 2593, - "codeText": "TS2593", - "title": "Cannot find name '{0}'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig.", - "category": "error", - "documentation": "" - }, - { - "code": 2594, - "codeText": "TS2594", - "title": "This module is declared with 'export =', and can only be used with a default import when using the '{0}' flag.", - "category": "error", - "documentation": "" - }, - { - "code": 2595, - "codeText": "TS2595", - "title": "'{0}' can only be imported by using a default import.", - "category": "error", - "documentation": "" - }, - { - "code": 2596, - "codeText": "TS2596", - "title": "'{0}' can only be imported by turning on the 'esModuleInterop' flag and using a default import.", - "category": "error", - "documentation": "" - }, - { - "code": 2597, - "codeText": "TS2597", - "title": "'{0}' can only be imported by using a 'require' call or by using a default import.", - "category": "error", - "documentation": "" - }, - { - "code": 2598, - "codeText": "TS2598", - "title": "'{0}' can only be imported by using a 'require' call or by turning on the 'esModuleInterop' flag and using a default import.", - "category": "error", - "documentation": "" - }, - { - "code": 2602, - "codeText": "TS2602", - "title": "JSX element implicitly has type 'any' because the global type 'JSX.Element' does not exist.", - "category": "error", - "documentation": "" - }, - { - "code": 2603, - "codeText": "TS2603", - "title": "Property '{0}' in type '{1}' is not assignable to type '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2604, - "codeText": "TS2604", - "title": "JSX element type '{0}' does not have any construct or call signatures.", - "category": "error", - "documentation": "" - }, - { - "code": 2606, - "codeText": "TS2606", - "title": "Property '{0}' of JSX spread attribute is not assignable to target property.", - "category": "error", - "documentation": "" - }, - { - "code": 2607, - "codeText": "TS2607", - "title": "JSX element class does not support attributes because it does not have a '{0}' property.", - "category": "error", - "documentation": "" - }, - { - "code": 2608, - "codeText": "TS2608", - "title": "The global type 'JSX.{0}' may not have more than one property.", - "category": "error", - "documentation": "" - }, - { - "code": 2609, - "codeText": "TS2609", - "title": "JSX spread child must be an array type.", - "category": "error", - "documentation": "" - }, - { - "code": 2610, - "codeText": "TS2610", - "title": "'{0}' is defined as an accessor in class '{1}', but is overridden here in '{2}' as an instance property.", - "category": "error", - "documentation": "" - }, - { - "code": 2611, - "codeText": "TS2611", - "title": "'{0}' is defined as a property in class '{1}', but is overridden here in '{2}' as an accessor.", - "category": "error", - "documentation": "" - }, - { - "code": 2612, - "codeText": "TS2612", - "title": "Property '{0}' will overwrite the base property in '{1}'. If this is intentional, add an initializer. Otherwise, add a 'declare' modifier or remove the redundant declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 2613, - "codeText": "TS2613", - "title": "Module '{0}' has no default export. Did you mean to use 'import { {1} } from {0}' instead?", - "category": "error", - "documentation": "" - }, - { - "code": 2614, - "codeText": "TS2614", - "title": "Module '{0}' has no exported member '{1}'. Did you mean to use 'import {1} from {0}' instead?", - "category": "error", - "documentation": "" - }, - { - "code": 2615, - "codeText": "TS2615", - "title": "Type of property '{0}' circularly references itself in mapped type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2616, - "codeText": "TS2616", - "title": "'{0}' can only be imported by using 'import {1} = require({2})' or a default import.", - "category": "error", - "documentation": "" - }, - { - "code": 2617, - "codeText": "TS2617", - "title": "'{0}' can only be imported by using 'import {1} = require({2})' or by turning on the 'esModuleInterop' flag and using a default import.", - "category": "error", - "documentation": "" - }, - { - "code": 2618, - "codeText": "TS2618", - "title": "Source has {0} element(s) but target requires {1}.", - "category": "error", - "documentation": "" - }, - { - "code": 2619, - "codeText": "TS2619", - "title": "Source has {0} element(s) but target allows only {1}.", - "category": "error", - "documentation": "" - }, - { - "code": 2620, - "codeText": "TS2620", - "title": "Target requires {0} element(s) but source may have fewer.", - "category": "error", - "documentation": "" - }, - { - "code": 2621, - "codeText": "TS2621", - "title": "Target allows only {0} element(s) but source may have more.", - "category": "error", - "documentation": "" - }, - { - "code": 2623, - "codeText": "TS2623", - "title": "Source provides no match for required element at position {0} in target.", - "category": "error", - "documentation": "" - }, - { - "code": 2624, - "codeText": "TS2624", - "title": "Source provides no match for variadic element at position {0} in target.", - "category": "error", - "documentation": "" - }, - { - "code": 2625, - "codeText": "TS2625", - "title": "Variadic element at position {0} in source does not match element at position {1} in target.", - "category": "error", - "documentation": "" - }, - { - "code": 2626, - "codeText": "TS2626", - "title": "Type at position {0} in source is not compatible with type at position {1} in target.", - "category": "error", - "documentation": "" - }, - { - "code": 2627, - "codeText": "TS2627", - "title": "Type at positions {0} through {1} in source is not compatible with type at position {2} in target.", - "category": "error", - "documentation": "" - }, - { - "code": 2628, - "codeText": "TS2628", - "title": "Cannot assign to '{0}' because it is an enum.", - "category": "error", - "documentation": "" - }, - { - "code": 2629, - "codeText": "TS2629", - "title": "Cannot assign to '{0}' because it is a class.", - "category": "error", - "documentation": "" - }, - { - "code": 2630, - "codeText": "TS2630", - "title": "Cannot assign to '{0}' because it is a function.", - "category": "error", - "documentation": "" - }, - { - "code": 2631, - "codeText": "TS2631", - "title": "Cannot assign to '{0}' because it is a namespace.", - "category": "error", - "documentation": "" - }, - { - "code": 2632, - "codeText": "TS2632", - "title": "Cannot assign to '{0}' because it is an import.", - "category": "error", - "documentation": "" - }, - { - "code": 2633, - "codeText": "TS2633", - "title": "JSX property access expressions cannot include JSX namespace names", - "category": "error", - "documentation": "" - }, - { - "code": 2634, - "codeText": "TS2634", - "title": "'{0}' index signatures are incompatible.", - "category": "error", - "documentation": "" - }, - { - "code": 2635, - "codeText": "TS2635", - "title": "Type '{0}' has no signatures for which the type argument list is applicable.", - "category": "error", - "documentation": "" - }, - { - "code": 2636, - "codeText": "TS2636", - "title": "Type '{0}' is not assignable to type '{1}' as implied by variance annotation.", - "category": "error", - "documentation": "" - }, - { - "code": 2637, - "codeText": "TS2637", - "title": "Variance annotations are only supported in type aliases for object, function, constructor, and mapped types.", - "category": "error", - "documentation": "" - }, - { - "code": 2638, - "codeText": "TS2638", - "title": "Type '{0}' may represent a primitive value, which is not permitted as the right operand of the 'in' operator.", - "category": "error", - "documentation": "" - }, - { - "code": 2639, - "codeText": "TS2639", - "title": "React components cannot include JSX namespace names", - "category": "error", - "documentation": "" - }, - { - "code": 2649, - "codeText": "TS2649", - "title": "Cannot augment module '{0}' with value exports because it resolves to a non-module entity.", - "category": "error", - "documentation": "" - }, - { - "code": 2651, - "codeText": "TS2651", - "title": "A member initializer in a enum declaration cannot reference members declared after it, including members defined in other enums.", - "category": "error", - "documentation": "" - }, - { - "code": 2652, - "codeText": "TS2652", - "title": "Merged declaration '{0}' cannot include a default export declaration. Consider adding a separate 'export default {0}' declaration instead.", - "category": "error", - "documentation": "" - }, - { - "code": 2653, - "codeText": "TS2653", - "title": "Non-abstract class expression does not implement inherited abstract member '{0}' from class '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2657, - "codeText": "TS2657", - "title": "JSX expressions must have one parent element.", - "category": "error", - "documentation": "" - }, - { - "code": 2658, - "codeText": "TS2658", - "title": "Type '{0}' provides no match for the signature '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2659, - "codeText": "TS2659", - "title": "'super' is only allowed in members of object literal expressions when option 'target' is 'ES2015' or higher.", - "category": "error", - "documentation": "" - }, - { - "code": 2660, - "codeText": "TS2660", - "title": "'super' can only be referenced in members of derived classes or object literal expressions.", - "category": "error", - "documentation": "" - }, - { - "code": 2661, - "codeText": "TS2661", - "title": "Cannot export '{0}'. Only local declarations can be exported from a module.", - "category": "error", - "documentation": "" - }, - { - "code": 2662, - "codeText": "TS2662", - "title": "Cannot find name '{0}'. Did you mean the static member '{1}.{0}'?", - "category": "error", - "documentation": "" - }, - { - "code": 2663, - "codeText": "TS2663", - "title": "Cannot find name '{0}'. Did you mean the instance member 'this.{0}'?", - "category": "error", - "documentation": "" - }, - { - "code": 2664, - "codeText": "TS2664", - "title": "Invalid module name in augmentation, module '{0}' cannot be found.", - "category": "error", - "documentation": "" - }, - { - "code": 2665, - "codeText": "TS2665", - "title": "Invalid module name in augmentation. Module '{0}' resolves to an untyped module at '{1}', which cannot be augmented.", - "category": "error", - "documentation": "" - }, - { - "code": 2666, - "codeText": "TS2666", - "title": "Exports and export assignments are not permitted in module augmentations.", - "category": "error", - "documentation": "" - }, - { - "code": 2667, - "codeText": "TS2667", - "title": "Imports are not permitted in module augmentations. Consider moving them to the enclosing external module.", - "category": "error", - "documentation": "" - }, - { - "code": 2668, - "codeText": "TS2668", - "title": "'export' modifier cannot be applied to ambient modules and module augmentations since they are always visible.", - "category": "error", - "documentation": "" - }, - { - "code": 2669, - "codeText": "TS2669", - "title": "Augmentations for the global scope can only be directly nested in external modules or ambient module declarations.", - "category": "error", - "documentation": "" - }, - { - "code": 2670, - "codeText": "TS2670", - "title": "Augmentations for the global scope should have 'declare' modifier unless they appear in already ambient context.", - "category": "error", - "documentation": "" - }, - { - "code": 2671, - "codeText": "TS2671", - "title": "Cannot augment module '{0}' because it resolves to a non-module entity.", - "category": "error", - "documentation": "" - }, - { - "code": 2672, - "codeText": "TS2672", - "title": "Cannot assign a '{0}' constructor type to a '{1}' constructor type.", - "category": "error", - "documentation": "" - }, - { - "code": 2673, - "codeText": "TS2673", - "title": "Constructor of class '{0}' is private and only accessible within the class declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 2674, - "codeText": "TS2674", - "title": "Constructor of class '{0}' is protected and only accessible within the class declaration.", - "category": "error", - "documentation": "" - }, - { - "code": 2675, - "codeText": "TS2675", - "title": "Cannot extend a class '{0}'. Class constructor is marked as private.", - "category": "error", - "documentation": "" - }, - { - "code": 2676, - "codeText": "TS2676", - "title": "Accessors must both be abstract or non-abstract.", - "category": "error", - "documentation": "" - }, - { - "code": 2677, - "codeText": "TS2677", - "title": "A type predicate's type must be assignable to its parameter's type.", - "category": "error", - "documentation": "" - }, - { - "code": 2678, - "codeText": "TS2678", - "title": "Type '{0}' is not comparable to type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2679, - "codeText": "TS2679", - "title": "A function that is called with the 'new' keyword cannot have a 'this' type that is 'void'.", - "category": "error", - "documentation": "" - }, - { - "code": 2680, - "codeText": "TS2680", - "title": "A '{0}' parameter must be the first parameter.", - "category": "error", - "documentation": "" - }, - { - "code": 2681, - "codeText": "TS2681", - "title": "A constructor cannot have a 'this' parameter.", - "category": "error", - "documentation": "" - }, - { - "code": 2683, - "codeText": "TS2683", - "title": "'this' implicitly has type 'any' because it does not have a type annotation.", - "category": "error", - "documentation": "" - }, - { - "code": 2684, - "codeText": "TS2684", - "title": "The 'this' context of type '{0}' is not assignable to method's 'this' of type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2685, - "codeText": "TS2685", - "title": "The 'this' types of each signature are incompatible.", - "category": "error", - "documentation": "" - }, - { - "code": 2686, - "codeText": "TS2686", - "title": "'{0}' refers to a UMD global, but the current file is a module. Consider adding an import instead.", - "category": "error", - "documentation": "" - }, - { - "code": 2687, - "codeText": "TS2687", - "title": "All declarations of '{0}' must have identical modifiers.", - "category": "error", - "documentation": "" - }, - { - "code": 2688, - "codeText": "TS2688", - "title": "Cannot find type definition file for '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2689, - "codeText": "TS2689", - "title": "Cannot extend an interface '{0}'. Did you mean 'implements'?", - "category": "error", - "documentation": "" - }, - { - "code": 2690, - "codeText": "TS2690", - "title": "'{0}' only refers to a type, but is being used as a value here. Did you mean to use '{1} in {0}'?", - "category": "error", - "documentation": "" - }, - { - "code": 2691, - "codeText": "TS2691", - "title": "An import path cannot end with a '{0}' extension. Consider importing '{1}' instead.", - "category": "error", - "documentation": "" - }, - { - "code": 2692, - "codeText": "TS2692", - "title": "'{0}' is a primitive, but '{1}' is a wrapper object. Prefer using '{0}' when possible.", - "category": "error", - "documentation": "" - }, - { - "code": 2693, - "codeText": "TS2693", - "title": "'{0}' only refers to a type, but is being used as a value here.", - "category": "error", - "documentation": "" - }, - { - "code": 2694, - "codeText": "TS2694", - "title": "Namespace '{0}' has no exported member '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2695, - "codeText": "TS2695", - "title": "Left side of comma operator is unused and has no side effects.", - "category": "error", - "documentation": "" - }, - { - "code": 2696, - "codeText": "TS2696", - "title": "The 'Object' type is assignable to very few other types. Did you mean to use the 'any' type instead?", - "category": "error", - "documentation": "" - }, - { - "code": 2697, - "codeText": "TS2697", - "title": "An async function or method must return a 'Promise'. Make sure you have a declaration for 'Promise' or include 'ES2015' in your '--lib' option.", - "category": "error", - "documentation": "" - }, - { - "code": 2698, - "codeText": "TS2698", - "title": "Spread types may only be created from object types.", - "category": "error", - "documentation": "" - }, - { - "code": 2699, - "codeText": "TS2699", - "title": "Static property '{0}' conflicts with built-in property 'Function.{0}' of constructor function '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2700, - "codeText": "TS2700", - "title": "Rest types may only be created from object types.", - "category": "error", - "documentation": "" - }, - { - "code": 2701, - "codeText": "TS2701", - "title": "The target of an object rest assignment must be a variable or a property access.", - "category": "error", - "documentation": "" - }, - { - "code": 2702, - "codeText": "TS2702", - "title": "'{0}' only refers to a type, but is being used as a namespace here.", - "category": "error", - "documentation": "" - }, - { - "code": 2703, - "codeText": "TS2703", - "title": "The operand of a 'delete' operator must be a property reference.", - "category": "error", - "documentation": "" - }, - { - "code": 2704, - "codeText": "TS2704", - "title": "The operand of a 'delete' operator cannot be a read-only property.", - "category": "error", - "documentation": "" - }, - { - "code": 2705, - "codeText": "TS2705", - "title": "An async function or method in ES5/ES3 requires the 'Promise' constructor. Make sure you have a declaration for the 'Promise' constructor or include 'ES2015' in your '--lib' option.", - "category": "error", - "documentation": "" - }, - { - "code": 2706, - "codeText": "TS2706", - "title": "Required type parameters may not follow optional type parameters.", - "category": "error", - "documentation": "" - }, - { - "code": 2707, - "codeText": "TS2707", - "title": "Generic type '{0}' requires between {1} and {2} type arguments.", - "category": "error", - "documentation": "" - }, - { - "code": 2708, - "codeText": "TS2708", - "title": "Cannot use namespace '{0}' as a value.", - "category": "error", - "documentation": "" - }, - { - "code": 2709, - "codeText": "TS2709", - "title": "Cannot use namespace '{0}' as a type.", - "category": "error", - "documentation": "" - }, - { - "code": 2710, - "codeText": "TS2710", - "title": "'{0}' are specified twice. The attribute named '{0}' will be overwritten.", - "category": "error", - "documentation": "" - }, - { - "code": 2711, - "codeText": "TS2711", - "title": "A dynamic import call returns a 'Promise'. Make sure you have a declaration for 'Promise' or include 'ES2015' in your '--lib' option.", - "category": "error", - "documentation": "" - }, - { - "code": 2712, - "codeText": "TS2712", - "title": "A dynamic import call in ES5/ES3 requires the 'Promise' constructor. Make sure you have a declaration for the 'Promise' constructor or include 'ES2015' in your '--lib' option.", - "category": "error", - "documentation": "" - }, - { - "code": 2713, - "codeText": "TS2713", - "title": "Cannot access '{0}.{1}' because '{0}' is a type, but not a namespace. Did you mean to retrieve the type of the property '{1}' in '{0}' with '{0}[\"{1}\"]'?", - "category": "error", - "documentation": "" - }, - { - "code": 2714, - "codeText": "TS2714", - "title": "The expression of an export assignment must be an identifier or qualified name in an ambient context.", - "category": "error", - "documentation": "" - }, - { - "code": 2715, - "codeText": "TS2715", - "title": "Abstract property '{0}' in class '{1}' cannot be accessed in the constructor.", - "category": "error", - "documentation": "" - }, - { - "code": 2716, - "codeText": "TS2716", - "title": "Type parameter '{0}' has a circular default.", - "category": "error", - "documentation": "" - }, - { - "code": 2717, - "codeText": "TS2717", - "title": "Subsequent property declarations must have the same type. Property '{0}' must be of type '{1}', but here has type '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2718, - "codeText": "TS2718", - "title": "Duplicate property '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2719, - "codeText": "TS2719", - "title": "Type '{0}' is not assignable to type '{1}'. Two different types with this name exist, but they are unrelated.", - "category": "error", - "documentation": "" - }, - { - "code": 2720, - "codeText": "TS2720", - "title": "Class '{0}' incorrectly implements class '{1}'. Did you mean to extend '{1}' and inherit its members as a subclass?", - "category": "error", - "documentation": "" - }, - { - "code": 2721, - "codeText": "TS2721", - "title": "Cannot invoke an object which is possibly 'null'.", - "category": "error", - "documentation": "" - }, - { - "code": 2722, - "codeText": "TS2722", - "title": "Cannot invoke an object which is possibly 'undefined'.", - "category": "error", - "documentation": "" - }, - { - "code": 2723, - "codeText": "TS2723", - "title": "Cannot invoke an object which is possibly 'null' or 'undefined'.", - "category": "error", - "documentation": "" - }, - { - "code": 2724, - "codeText": "TS2724", - "title": "'{0}' has no exported member named '{1}'. Did you mean '{2}'?", - "category": "error", - "documentation": "" - }, - { - "code": 2725, - "codeText": "TS2725", - "title": "Class name cannot be 'Object' when targeting ES5 with module {0}.", - "category": "error", - "documentation": "" - }, - { - "code": 2726, - "codeText": "TS2726", - "title": "Cannot find lib definition for '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2727, - "codeText": "TS2727", - "title": "Cannot find lib definition for '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" - }, - { - "code": 2728, - "codeText": "TS2728", - "title": "'{0}' is declared here.", - "category": "message", - "documentation": "" - }, - { - "code": 2729, - "codeText": "TS2729", - "title": "Property '{0}' is used before its initialization.", - "category": "error", - "documentation": "" - }, - { - "code": 2730, - "codeText": "TS2730", - "title": "An arrow function cannot have a 'this' parameter.", - "category": "error", - "documentation": "" - }, - { - "code": 2731, - "codeText": "TS2731", - "title": "Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'.", - "category": "error", - "documentation": "" - }, - { - "code": 2732, - "codeText": "TS2732", - "title": "Cannot find module '{0}'. Consider using '--resolveJsonModule' to import module with '.json' extension.", - "category": "error", - "documentation": "" - }, - { - "code": 2733, - "codeText": "TS2733", - "title": "Property '{0}' was also declared here.", - "category": "error", - "documentation": "" - }, - { - "code": 2734, - "codeText": "TS2734", - "title": "Are you missing a semicolon?", - "category": "error", - "documentation": "" - }, - { - "code": 2735, - "codeText": "TS2735", - "title": "Did you mean for '{0}' to be constrained to type 'new (...args: any[]) => {1}'?", - "category": "error", - "documentation": "" - }, - { - "code": 2736, - "codeText": "TS2736", - "title": "Operator '{0}' cannot be applied to type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2737, - "codeText": "TS2737", - "title": "BigInt literals are not available when targeting lower than ES2020.", - "category": "error", - "documentation": "" - }, - { - "code": 2738, - "codeText": "TS2738", - "title": "An outer value of 'this' is shadowed by this container.", - "category": "message", - "documentation": "" - }, - { - "code": 2739, - "codeText": "TS2739", - "title": "Type '{0}' is missing the following properties from type '{1}': {2}", - "category": "error", - "documentation": "" - }, - { - "code": 2740, - "codeText": "TS2740", - "title": "Type '{0}' is missing the following properties from type '{1}': {2}, and {3} more.", - "category": "error", - "documentation": "" - }, - { - "code": 2741, - "codeText": "TS2741", - "title": "Property '{0}' is missing in type '{1}' but required in type '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2742, - "codeText": "TS2742", - "title": "The inferred type of '{0}' cannot be named without a reference to '{1}'. This is likely not portable. A type annotation is necessary.", - "category": "error", - "documentation": "" - }, - { - "code": 2743, - "codeText": "TS2743", - "title": "No overload expects {0} type arguments, but overloads do exist that expect either {1} or {2} type arguments.", - "category": "error", - "documentation": "" - }, - { - "code": 2744, - "codeText": "TS2744", - "title": "Type parameter defaults can only reference previously declared type parameters.", - "category": "error", - "documentation": "" - }, - { - "code": 2745, - "codeText": "TS2745", - "title": "This JSX tag's '{0}' prop expects type '{1}' which requires multiple children, but only a single child was provided.", - "category": "error", - "documentation": "" - }, - { - "code": 2746, - "codeText": "TS2746", - "title": "This JSX tag's '{0}' prop expects a single child of type '{1}', but multiple children were provided.", - "category": "error", - "documentation": "" - }, - { - "code": 2747, - "codeText": "TS2747", - "title": "'{0}' components don't accept text as child elements. Text in JSX has the type 'string', but the expected type of '{1}' is '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2748, - "codeText": "TS2748", - "title": "Cannot access ambient const enums when the '--isolatedModules' flag is provided.", - "category": "error", - "documentation": "" - }, - { - "code": 2749, - "codeText": "TS2749", - "title": "'{0}' refers to a value, but is being used as a type here. Did you mean 'typeof {0}'?", - "category": "error", - "documentation": "" - }, - { - "code": 2750, - "codeText": "TS2750", - "title": "The implementation signature is declared here.", - "category": "error", - "documentation": "" - }, - { - "code": 2751, - "codeText": "TS2751", - "title": "Circularity originates in type at this location.", - "category": "error", - "documentation": "" - }, - { - "code": 2752, - "codeText": "TS2752", - "title": "The first export default is here.", - "category": "error", - "documentation": "" - }, - { - "code": 2753, - "codeText": "TS2753", - "title": "Another export default is here.", - "category": "error", - "documentation": "" - }, - { - "code": 2754, - "codeText": "TS2754", - "title": "'super' may not use type arguments.", - "category": "error", - "documentation": "" - }, - { - "code": 2755, - "codeText": "TS2755", - "title": "No constituent of type '{0}' is callable.", - "category": "error", - "documentation": "" - }, - { - "code": 2756, - "codeText": "TS2756", - "title": "Not all constituents of type '{0}' are callable.", - "category": "error", - "documentation": "" - }, - { - "code": 2757, - "codeText": "TS2757", - "title": "Type '{0}' has no call signatures.", - "category": "error", - "documentation": "" - }, - { - "code": 2758, - "codeText": "TS2758", - "title": "Each member of the union type '{0}' has signatures, but none of those signatures are compatible with each other.", - "category": "error", - "documentation": "" - }, - { - "code": 2759, - "codeText": "TS2759", - "title": "No constituent of type '{0}' is constructable.", - "category": "error", - "documentation": "" - }, - { - "code": 2760, - "codeText": "TS2760", - "title": "Not all constituents of type '{0}' are constructable.", - "category": "error", - "documentation": "" - }, - { - "code": 2761, - "codeText": "TS2761", - "title": "Type '{0}' has no construct signatures.", - "category": "error", - "documentation": "" - }, - { - "code": 2762, - "codeText": "TS2762", - "title": "Each member of the union type '{0}' has construct signatures, but none of those signatures are compatible with each other.", - "category": "error", - "documentation": "" - }, - { - "code": 2763, - "codeText": "TS2763", - "title": "Cannot iterate value because the 'next' method of its iterator expects type '{1}', but for-of will always send '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2764, - "codeText": "TS2764", - "title": "Cannot iterate value because the 'next' method of its iterator expects type '{1}', but array spread will always send '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2765, - "codeText": "TS2765", - "title": "Cannot iterate value because the 'next' method of its iterator expects type '{1}', but array destructuring will always send '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2766, - "codeText": "TS2766", - "title": "Cannot delegate iteration to value because the 'next' method of its iterator expects type '{1}', but the containing generator will always send '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2767, - "codeText": "TS2767", - "title": "The '{0}' property of an iterator must be a method.", - "category": "error", - "documentation": "" - }, - { - "code": 2768, - "codeText": "TS2768", - "title": "The '{0}' property of an async iterator must be a method.", - "category": "error", - "documentation": "" - }, - { - "code": 2769, - "codeText": "TS2769", - "title": "No overload matches this call.", - "category": "error", - "documentation": "" - }, - { - "code": 2770, - "codeText": "TS2770", - "title": "The last overload gave the following error.", - "category": "error", - "documentation": "" - }, - { - "code": 2771, - "codeText": "TS2771", - "title": "The last overload is declared here.", - "category": "error", - "documentation": "" - }, - { - "code": 2772, - "codeText": "TS2772", - "title": "Overload {0} of {1}, '{2}', gave the following error.", - "category": "error", - "documentation": "" - }, - { - "code": 2773, - "codeText": "TS2773", - "title": "Did you forget to use 'await'?", - "category": "error", - "documentation": "" - }, - { - "code": 2774, - "codeText": "TS2774", - "title": "This condition will always return true since this function is always defined. Did you mean to call it instead?", - "category": "error", - "documentation": "" - }, - { - "code": 2775, - "codeText": "TS2775", - "title": "Assertions require every name in the call target to be declared with an explicit type annotation.", - "category": "error", - "documentation": "" - }, - { - "code": 2776, - "codeText": "TS2776", - "title": "Assertions require the call target to be an identifier or qualified name.", - "category": "error", - "documentation": "" - }, - { - "code": 2777, - "codeText": "TS2777", - "title": "The operand of an increment or decrement operator may not be an optional property access.", - "category": "error", - "documentation": "" - }, - { - "code": 2778, - "codeText": "TS2778", - "title": "The target of an object rest assignment may not be an optional property access.", - "category": "error", - "documentation": "" - }, - { - "code": 2779, - "codeText": "TS2779", - "title": "The left-hand side of an assignment expression may not be an optional property access.", - "category": "error", - "documentation": "" - }, - { - "code": 2780, - "codeText": "TS2780", - "title": "The left-hand side of a 'for...in' statement may not be an optional property access.", - "category": "error", - "documentation": "" - }, - { - "code": 2781, - "codeText": "TS2781", - "title": "The left-hand side of a 'for...of' statement may not be an optional property access.", - "category": "error", - "documentation": "" - }, - { - "code": 2782, - "codeText": "TS2782", - "title": "'{0}' needs an explicit type annotation.", - "category": "message", - "documentation": "" - }, - { - "code": 2783, - "codeText": "TS2783", - "title": "'{0}' is specified more than once, so this usage will be overwritten.", - "category": "error", - "documentation": "" - }, - { - "code": 2784, - "codeText": "TS2784", - "title": "'get' and 'set' accessors cannot declare 'this' parameters.", - "category": "error", - "documentation": "" - }, - { - "code": 2785, - "codeText": "TS2785", - "title": "This spread always overwrites this property.", - "category": "error", - "documentation": "" - }, - { - "code": 2786, - "codeText": "TS2786", - "title": "'{0}' cannot be used as a JSX component.", - "category": "error", - "documentation": "" - }, - { - "code": 2787, - "codeText": "TS2787", - "title": "Its return type '{0}' is not a valid JSX element.", - "category": "error", - "documentation": "" - }, - { - "code": 2788, - "codeText": "TS2788", - "title": "Its instance type '{0}' is not a valid JSX element.", - "category": "error", - "documentation": "" - }, - { - "code": 2789, - "codeText": "TS2789", - "title": "Its element type '{0}' is not a valid JSX element.", - "category": "error", - "documentation": "" - }, - { - "code": 2790, - "codeText": "TS2790", - "title": "The operand of a 'delete' operator must be optional.", - "category": "error", - "documentation": "" - }, - { - "code": 2791, - "codeText": "TS2791", - "title": "Exponentiation cannot be performed on 'bigint' values unless the 'target' option is set to 'es2016' or later.", - "category": "error", - "documentation": "" - }, - { - "code": 2792, - "codeText": "TS2792", - "title": "Cannot find module '{0}'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option?", - "category": "error", - "documentation": "" - }, - { - "code": 2793, - "codeText": "TS2793", - "title": "The call would have succeeded against this implementation, but implementation signatures of overloads are not externally visible.", - "category": "error", - "documentation": "" - }, - { - "code": 2794, - "codeText": "TS2794", - "title": "Expected {0} arguments, but got {1}. Did you forget to include 'void' in your type argument to 'Promise'?", - "category": "error", - "documentation": "" - }, - { - "code": 2795, - "codeText": "TS2795", - "title": "The 'intrinsic' keyword can only be used to declare compiler provided intrinsic types.", - "category": "error", - "documentation": "" - }, - { - "code": 2796, - "codeText": "TS2796", - "title": "It is likely that you are missing a comma to separate these two template expressions. They form a tagged template expression which cannot be invoked.", - "category": "error", - "documentation": "" - }, - { - "code": 2797, - "codeText": "TS2797", - "title": "A mixin class that extends from a type variable containing an abstract construct signature must also be declared 'abstract'.", - "category": "error", - "documentation": "" - }, - { - "code": 2798, - "codeText": "TS2798", - "title": "The declaration was marked as deprecated here.", - "category": "error", - "documentation": "" - }, - { - "code": 2799, - "codeText": "TS2799", - "title": "Type produces a tuple type that is too large to represent.", - "category": "error", - "documentation": "" - }, - { - "code": 2800, - "codeText": "TS2800", - "title": "Expression produces a tuple type that is too large to represent.", - "category": "error", - "documentation": "" - }, - { - "code": 2801, - "codeText": "TS2801", - "title": "This condition will always return true since this '{0}' is always defined.", - "category": "error", - "documentation": "" - }, - { - "code": 2802, - "codeText": "TS2802", - "title": "Type '{0}' can only be iterated through when using the '--downlevelIteration' flag or with a '--target' of 'es2015' or higher.", - "category": "error", - "documentation": "" - }, - { - "code": 2803, - "codeText": "TS2803", - "title": "Cannot assign to private method '{0}'. Private methods are not writable.", - "category": "error", - "documentation": "" - }, - { - "code": 2804, - "codeText": "TS2804", - "title": "Duplicate identifier '{0}'. Static and instance elements cannot share the same private name.", - "category": "error", - "documentation": "" - }, - { - "code": 2806, - "codeText": "TS2806", - "title": "Private accessor was defined without a getter.", - "category": "error", - "documentation": "" - }, - { - "code": 2807, - "codeText": "TS2807", - "title": "This syntax requires an imported helper named '{1}' with {2} parameters, which is not compatible with the one in '{0}'. Consider upgrading your version of '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2808, - "codeText": "TS2808", - "title": "A get accessor must be at least as accessible as the setter", - "category": "error", - "documentation": "" - }, - { - "code": 2809, - "codeText": "TS2809", - "title": "Declaration or statement expected. This '=' follows a block of statements, so if you intended to write a destructuring assignment, you might need to wrap the the whole assignment in parentheses.", - "category": "error", - "documentation": "" - }, - { - "code": 2810, - "codeText": "TS2810", - "title": "Expected 1 argument, but got 0. 'new Promise()' needs a JSDoc hint to produce a 'resolve' that can be called without arguments.", - "category": "error", - "documentation": "" - }, - { - "code": 2811, - "codeText": "TS2811", - "title": "Initializer for property '{0}'", - "category": "error", - "documentation": "" - }, - { - "code": 2812, - "codeText": "TS2812", - "title": "Property '{0}' does not exist on type '{1}'. Try changing the 'lib' compiler option to include 'dom'.", - "category": "error", - "documentation": "" - }, - { - "code": 2813, - "codeText": "TS2813", - "title": "Class declaration cannot implement overload list for '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2814, - "codeText": "TS2814", - "title": "Function with bodies can only merge with classes that are ambient.", - "category": "error", - "documentation": "" - }, - { - "code": 2815, - "codeText": "TS2815", - "title": "'arguments' cannot be referenced in property initializers.", - "category": "error", - "documentation": "" - }, - { - "code": 2816, - "codeText": "TS2816", - "title": "Cannot use 'this' in a static property initializer of a decorated class.", - "category": "error", - "documentation": "" - }, - { - "code": 2817, - "codeText": "TS2817", - "title": "Property '{0}' has no initializer and is not definitely assigned in a class static block.", - "category": "error", - "documentation": "" - }, - { - "code": 2818, - "codeText": "TS2818", - "title": "Duplicate identifier '{0}'. Compiler reserves name '{1}' when emitting 'super' references in static initializers.", - "category": "error", - "documentation": "" - }, - { - "code": 2819, - "codeText": "TS2819", - "title": "Namespace name cannot be '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2820, - "codeText": "TS2820", - "title": "Type '{0}' is not assignable to type '{1}'. Did you mean '{2}'?", - "category": "error", - "documentation": "" - }, - { - "code": 2821, - "codeText": "TS2821", - "title": "Import assertions are only supported when the '--module' option is set to 'esnext' or 'nodenext'.", - "category": "error", - "documentation": "" - }, - { - "code": 2822, - "codeText": "TS2822", - "title": "Import assertions cannot be used with type-only imports or exports.", - "category": "error", - "documentation": "" - }, - { - "code": 2833, - "codeText": "TS2833", - "title": "Cannot find namespace '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" - }, - { - "code": 2834, - "codeText": "TS2834", - "title": "Relative import paths need explicit file extensions in EcmaScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.", - "category": "error", - "documentation": "" - }, - { - "code": 2835, - "codeText": "TS2835", - "title": "Relative import paths need explicit file extensions in EcmaScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '{0}'?", - "category": "error", - "documentation": "" - }, - { - "code": 2836, - "codeText": "TS2836", - "title": "Import assertions are not allowed on statements that transpile to commonjs 'require' calls.", - "category": "error", - "documentation": "" - }, - { - "code": 2837, - "codeText": "TS2837", - "title": "Import assertion values must be string literal expressions.", - "category": "error", - "documentation": "" - }, - { - "code": 2838, - "codeText": "TS2838", - "title": "All declarations of '{0}' must have identical constraints.", - "category": "error", - "documentation": "" - }, - { - "code": 2839, - "codeText": "TS2839", - "title": "This condition will always return '{0}' since JavaScript compares objects by reference, not value.", - "category": "error", - "documentation": "" - }, - { - "code": 2840, - "codeText": "TS2840", - "title": "An interface cannot extend a primitive type like '{0}'; an interface can only extend named types and classes", - "category": "error", - "documentation": "" - }, - { - "code": 2841, - "codeText": "TS2841", - "title": "The type of this expression cannot be named without a 'resolution-mode' assertion, which is an unstable feature. Use nightly TypeScript to silence this error. Try updating with 'npm install -D typescript@next'.", - "category": "error", - "documentation": "" - }, - { - "code": 2842, - "codeText": "TS2842", - "title": "'{0}' is an unused renaming of '{1}'. Did you intend to use it as a type annotation?", - "category": "error", - "documentation": "" - }, - { - "code": 2843, - "codeText": "TS2843", - "title": "We can only write a type for '{0}' by adding a type for the entire parameter here.", - "category": "error", - "documentation": "" - }, - { - "code": 2844, - "codeText": "TS2844", - "title": "Type of instance member variable '{0}' cannot reference identifier '{1}' declared in the constructor.", - "category": "error", - "documentation": "" - }, - { - "code": 2845, - "codeText": "TS2845", - "title": "This condition will always return '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 2846, - "codeText": "TS2846", - "title": "A declaration file cannot be imported without 'import type'. Did you mean to import an implementation file '{0}' instead?", - "category": "error", - "documentation": "" - }, - { - "code": 2848, - "codeText": "TS2848", - "title": "The right-hand side of an 'instanceof' expression must not be an instantiation expression.", - "category": "error", - "documentation": "" - }, - { - "code": 2849, - "codeText": "TS2849", - "title": "Target signature provides too few arguments. Expected {0} or more, but got {1}.", - "category": "error", - "documentation": "" - }, - { - "code": 2850, - "codeText": "TS2850", - "title": "The initializer of a 'using' declaration must be either an object with a '[Symbol.dispose]()' method, or be 'null' or 'undefined'.", - "category": "error", - "documentation": "" - }, - { - "code": 2851, - "codeText": "TS2851", - "title": "The initializer of an 'await using' declaration must be either an object with a '[Symbol.asyncDispose]()' or '[Symbol.dispose]()' method, or be 'null' or 'undefined'.", - "category": "error", - "documentation": "" - }, - { - "code": 2852, - "codeText": "TS2852", - "title": "'await using' statements are only allowed within async functions and at the top levels of modules.", - "category": "error", - "documentation": "" - }, - { - "code": 2853, - "codeText": "TS2853", - "title": "'await using' statements are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module.", - "category": "error", - "documentation": "" - }, - { - "code": 2854, - "codeText": "TS2854", - "title": "Top-level 'await using' statements are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher.", - "category": "error", - "documentation": "" - }, - { - "code": 4000, - "codeText": "TS4000", - "title": "Import declaration '{0}' is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4002, - "codeText": "TS4002", - "title": "Type parameter '{0}' of exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4004, - "codeText": "TS4004", - "title": "Type parameter '{0}' of exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4006, - "codeText": "TS4006", - "title": "Type parameter '{0}' of constructor signature from exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4008, - "codeText": "TS4008", - "title": "Type parameter '{0}' of call signature from exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4010, - "codeText": "TS4010", - "title": "Type parameter '{0}' of public static method from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4012, - "codeText": "TS4012", - "title": "Type parameter '{0}' of public method from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4014, - "codeText": "TS4014", - "title": "Type parameter '{0}' of method from exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4016, - "codeText": "TS4016", - "title": "Type parameter '{0}' of exported function has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4019, - "codeText": "TS4019", - "title": "Implements clause of exported class '{0}' has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4020, - "codeText": "TS4020", - "title": "'extends' clause of exported class '{0}' has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4021, - "codeText": "TS4021", - "title": "'extends' clause of exported class has or is using private name '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4022, - "codeText": "TS4022", - "title": "'extends' clause of exported interface '{0}' has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4023, - "codeText": "TS4023", - "title": "Exported variable '{0}' has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" - }, - { - "code": 4024, - "codeText": "TS4024", - "title": "Exported variable '{0}' has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4025, - "codeText": "TS4025", - "title": "Exported variable '{0}' has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4026, - "codeText": "TS4026", - "title": "Public static property '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" - }, - { - "code": 4027, - "codeText": "TS4027", - "title": "Public static property '{0}' of exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4028, - "codeText": "TS4028", - "title": "Public static property '{0}' of exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4029, - "codeText": "TS4029", - "title": "Public property '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" - }, - { - "code": 4030, - "codeText": "TS4030", - "title": "Public property '{0}' of exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4031, - "codeText": "TS4031", - "title": "Public property '{0}' of exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4032, - "codeText": "TS4032", - "title": "Property '{0}' of exported interface has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4033, - "codeText": "TS4033", - "title": "Property '{0}' of exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4034, - "codeText": "TS4034", - "title": "Parameter type of public static setter '{0}' from exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4035, - "codeText": "TS4035", - "title": "Parameter type of public static setter '{0}' from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4036, - "codeText": "TS4036", - "title": "Parameter type of public setter '{0}' from exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4037, - "codeText": "TS4037", - "title": "Parameter type of public setter '{0}' from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4038, - "codeText": "TS4038", - "title": "Return type of public static getter '{0}' from exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" - }, - { - "code": 4039, - "codeText": "TS4039", - "title": "Return type of public static getter '{0}' from exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4040, - "codeText": "TS4040", - "title": "Return type of public static getter '{0}' from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4041, - "codeText": "TS4041", - "title": "Return type of public getter '{0}' from exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" - }, - { - "code": 4042, - "codeText": "TS4042", - "title": "Return type of public getter '{0}' from exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4043, - "codeText": "TS4043", - "title": "Return type of public getter '{0}' from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4044, - "codeText": "TS4044", - "title": "Return type of constructor signature from exported interface has or is using name '{0}' from private module '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4045, - "codeText": "TS4045", - "title": "Return type of constructor signature from exported interface has or is using private name '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4046, - "codeText": "TS4046", - "title": "Return type of call signature from exported interface has or is using name '{0}' from private module '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4047, - "codeText": "TS4047", - "title": "Return type of call signature from exported interface has or is using private name '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4048, - "codeText": "TS4048", - "title": "Return type of index signature from exported interface has or is using name '{0}' from private module '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4049, - "codeText": "TS4049", - "title": "Return type of index signature from exported interface has or is using private name '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4050, - "codeText": "TS4050", - "title": "Return type of public static method from exported class has or is using name '{0}' from external module {1} but cannot be named.", - "category": "error", - "documentation": "" - }, - { - "code": 4051, - "codeText": "TS4051", - "title": "Return type of public static method from exported class has or is using name '{0}' from private module '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4052, - "codeText": "TS4052", - "title": "Return type of public static method from exported class has or is using private name '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4053, - "codeText": "TS4053", - "title": "Return type of public method from exported class has or is using name '{0}' from external module {1} but cannot be named.", - "category": "error", - "documentation": "" - }, - { - "code": 4054, - "codeText": "TS4054", - "title": "Return type of public method from exported class has or is using name '{0}' from private module '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4055, - "codeText": "TS4055", - "title": "Return type of public method from exported class has or is using private name '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4056, - "codeText": "TS4056", - "title": "Return type of method from exported interface has or is using name '{0}' from private module '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4057, - "codeText": "TS4057", - "title": "Return type of method from exported interface has or is using private name '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4058, - "codeText": "TS4058", - "title": "Return type of exported function has or is using name '{0}' from external module {1} but cannot be named.", - "category": "error", - "documentation": "" - }, - { - "code": 4059, - "codeText": "TS4059", - "title": "Return type of exported function has or is using name '{0}' from private module '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4060, - "codeText": "TS4060", - "title": "Return type of exported function has or is using private name '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4061, - "codeText": "TS4061", - "title": "Parameter '{0}' of constructor from exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" - }, - { - "code": 4062, - "codeText": "TS4062", - "title": "Parameter '{0}' of constructor from exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4063, - "codeText": "TS4063", - "title": "Parameter '{0}' of constructor from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4064, - "codeText": "TS4064", - "title": "Parameter '{0}' of constructor signature from exported interface has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4065, - "codeText": "TS4065", - "title": "Parameter '{0}' of constructor signature from exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4066, - "codeText": "TS4066", - "title": "Parameter '{0}' of call signature from exported interface has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4067, - "codeText": "TS4067", - "title": "Parameter '{0}' of call signature from exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4068, - "codeText": "TS4068", - "title": "Parameter '{0}' of public static method from exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" - }, - { - "code": 4069, - "codeText": "TS4069", - "title": "Parameter '{0}' of public static method from exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4070, - "codeText": "TS4070", - "title": "Parameter '{0}' of public static method from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4071, - "codeText": "TS4071", - "title": "Parameter '{0}' of public method from exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" - }, - { - "code": 4072, - "codeText": "TS4072", - "title": "Parameter '{0}' of public method from exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4073, - "codeText": "TS4073", - "title": "Parameter '{0}' of public method from exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4074, - "codeText": "TS4074", - "title": "Parameter '{0}' of method from exported interface has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4075, - "codeText": "TS4075", - "title": "Parameter '{0}' of method from exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4076, - "codeText": "TS4076", - "title": "Parameter '{0}' of exported function has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" - }, - { - "code": 4077, - "codeText": "TS4077", - "title": "Parameter '{0}' of exported function has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4078, - "codeText": "TS4078", - "title": "Parameter '{0}' of exported function has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4081, - "codeText": "TS4081", - "title": "Exported type alias '{0}' has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4082, - "codeText": "TS4082", - "title": "Default export of the module has or is using private name '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4083, - "codeText": "TS4083", - "title": "Type parameter '{0}' of exported type alias has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4084, - "codeText": "TS4084", - "title": "Exported type alias '{0}' has or is using private name '{1}' from module {2}.", - "category": "error", - "documentation": "" - }, - { - "code": 4085, - "codeText": "TS4085", - "title": "Extends clause for inferred type '{0}' has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4090, - "codeText": "TS4090", - "title": "Conflicting definitions for '{0}' found at '{1}' and '{2}'. Consider installing a specific version of this library to resolve the conflict.", - "category": "error", - "documentation": "" - }, - { - "code": 4091, - "codeText": "TS4091", - "title": "Parameter '{0}' of index signature from exported interface has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4092, - "codeText": "TS4092", - "title": "Parameter '{0}' of index signature from exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4094, - "codeText": "TS4094", - "title": "Property '{0}' of exported class expression may not be private or protected.", - "category": "error", - "documentation": "" - }, - { - "code": 4095, - "codeText": "TS4095", - "title": "Public static method '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" - }, - { - "code": 4096, - "codeText": "TS4096", - "title": "Public static method '{0}' of exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4097, - "codeText": "TS4097", - "title": "Public static method '{0}' of exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4098, - "codeText": "TS4098", - "title": "Public method '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named.", - "category": "error", - "documentation": "" - }, - { - "code": 4099, - "codeText": "TS4099", - "title": "Public method '{0}' of exported class has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4100, - "codeText": "TS4100", - "title": "Public method '{0}' of exported class has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4101, - "codeText": "TS4101", - "title": "Method '{0}' of exported interface has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4102, - "codeText": "TS4102", - "title": "Method '{0}' of exported interface has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4103, - "codeText": "TS4103", - "title": "Type parameter '{0}' of exported mapped object type is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4104, - "codeText": "TS4104", - "title": "The type '{0}' is 'readonly' and cannot be assigned to the mutable type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4105, - "codeText": "TS4105", - "title": "Private or protected member '{0}' cannot be accessed on a type parameter.", - "category": "error", - "documentation": "" - }, - { - "code": 4106, - "codeText": "TS4106", - "title": "Parameter '{0}' of accessor has or is using private name '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4107, - "codeText": "TS4107", - "title": "Parameter '{0}' of accessor has or is using name '{1}' from private module '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4108, - "codeText": "TS4108", - "title": "Parameter '{0}' of accessor has or is using name '{1}' from external module '{2}' but cannot be named.", - "category": "error", - "documentation": "" - }, - { - "code": 4109, - "codeText": "TS4109", - "title": "Type arguments for '{0}' circularly reference themselves.", - "category": "error", - "documentation": "" - }, - { - "code": 4110, - "codeText": "TS4110", - "title": "Tuple type arguments circularly reference themselves.", - "category": "error", - "documentation": "" - }, - { - "code": 4111, - "codeText": "TS4111", - "title": "Property '{0}' comes from an index signature, so it must be accessed with ['{0}'].", - "category": "error", - "documentation": "" - }, - { - "code": 4112, - "codeText": "TS4112", - "title": "This member cannot have an 'override' modifier because its containing class '{0}' does not extend another class.", - "category": "error", - "documentation": "" - }, - { - "code": 4113, - "codeText": "TS4113", - "title": "This member cannot have an 'override' modifier because it is not declared in the base class '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4114, - "codeText": "TS4114", - "title": "This member must have an 'override' modifier because it overrides a member in the base class '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4115, - "codeText": "TS4115", - "title": "This parameter property must have an 'override' modifier because it overrides a member in base class '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4116, - "codeText": "TS4116", - "title": "This member must have an 'override' modifier because it overrides an abstract method that is declared in the base class '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4117, - "codeText": "TS4117", - "title": "This member cannot have an 'override' modifier because it is not declared in the base class '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" - }, - { - "code": 4118, - "codeText": "TS4118", - "title": "The type of this node cannot be serialized because its property '{0}' cannot be serialized.", - "category": "error", - "documentation": "" - }, - { - "code": 4119, - "codeText": "TS4119", - "title": "This member must have a JSDoc comment with an '@override' tag because it overrides a member in the base class '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4120, - "codeText": "TS4120", - "title": "This parameter property must have a JSDoc comment with an '@override' tag because it overrides a member in the base class '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4121, - "codeText": "TS4121", - "title": "This member cannot have a JSDoc comment with an '@override' tag because its containing class '{0}' does not extend another class.", - "category": "error", - "documentation": "" - }, - { - "code": 4122, - "codeText": "TS4122", - "title": "This member cannot have a JSDoc comment with an '@override' tag because it is not declared in the base class '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 4123, - "codeText": "TS4123", - "title": "This member cannot have a JSDoc comment with an 'override' tag because it is not declared in the base class '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" - }, - { - "code": 4124, - "codeText": "TS4124", - "title": "Compiler option '{0}' of value '{1}' is unstable. Use nightly TypeScript to silence this error. Try updating with 'npm install -D typescript@next'.", - "category": "error", - "documentation": "" - }, - { - "code": 4125, - "codeText": "TS4125", - "title": "'resolution-mode' assertions are unstable. Use nightly TypeScript to silence this error. Try updating with 'npm install -D typescript@next'.", - "category": "error", - "documentation": "" - }, - { - "code": 5001, - "codeText": "TS5001", - "title": "The current host does not support the '{0}' option.", - "category": "error", - "documentation": "" - }, - { - "code": 5009, - "codeText": "TS5009", - "title": "Cannot find the common subdirectory path for the input files.", - "category": "error", - "documentation": "" - }, - { - "code": 5010, - "codeText": "TS5010", - "title": "File specification cannot end in a recursive directory wildcard ('**'): '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5012, - "codeText": "TS5012", - "title": "Cannot read file '{0}': {1}.", - "category": "error", - "documentation": "" - }, - { - "code": 5014, - "codeText": "TS5014", - "title": "Failed to parse file '{0}': {1}.", - "category": "error", - "documentation": "" - }, - { - "code": 5023, - "codeText": "TS5023", - "title": "Unknown compiler option '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5024, - "codeText": "TS5024", - "title": "Compiler option '{0}' requires a value of type {1}.", - "category": "error", - "documentation": "" - }, - { - "code": 5025, - "codeText": "TS5025", - "title": "Unknown compiler option '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" - }, - { - "code": 5033, - "codeText": "TS5033", - "title": "Could not write file '{0}': {1}.", - "category": "error", - "documentation": "" - }, - { - "code": 5042, - "codeText": "TS5042", - "title": "Option 'project' cannot be mixed with source files on a command line.", - "category": "error", - "documentation": "" - }, - { - "code": 5047, - "codeText": "TS5047", - "title": "Option 'isolatedModules' can only be used when either option '--module' is provided or option 'target' is 'ES2015' or higher.", - "category": "error", - "documentation": "" - }, - { - "code": 5048, - "codeText": "TS5048", - "title": "Option '{0}' cannot be specified when option 'target' is 'ES3'.", - "category": "error", - "documentation": "" - }, - { - "code": 5051, - "codeText": "TS5051", - "title": "Option '{0} can only be used when either option '--inlineSourceMap' or option '--sourceMap' is provided.", - "category": "error", - "documentation": "" - }, - { - "code": 5052, - "codeText": "TS5052", - "title": "Option '{0}' cannot be specified without specifying option '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5053, - "codeText": "TS5053", - "title": "Option '{0}' cannot be specified with option '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5054, - "codeText": "TS5054", - "title": "A 'tsconfig.json' file is already defined at: '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5055, - "codeText": "TS5055", - "title": "Cannot write file '{0}' because it would overwrite input file.", - "category": "error", - "documentation": "" - }, - { - "code": 5056, - "codeText": "TS5056", - "title": "Cannot write file '{0}' because it would be overwritten by multiple input files.", - "category": "error", - "documentation": "" - }, - { - "code": 5057, - "codeText": "TS5057", - "title": "Cannot find a tsconfig.json file at the specified directory: '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5058, - "codeText": "TS5058", - "title": "The specified path does not exist: '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5059, - "codeText": "TS5059", - "title": "Invalid value for '--reactNamespace'. '{0}' is not a valid identifier.", - "category": "error", - "documentation": "" - }, - { - "code": 5061, - "codeText": "TS5061", - "title": "Pattern '{0}' can have at most one '*' character.", - "category": "error", - "documentation": "" - }, - { - "code": 5062, - "codeText": "TS5062", - "title": "Substitution '{0}' in pattern '{1}' can have at most one '*' character.", - "category": "error", - "documentation": "" - }, - { - "code": 5063, - "codeText": "TS5063", - "title": "Substitutions for pattern '{0}' should be an array.", - "category": "error", - "documentation": "" - }, - { - "code": 5064, - "codeText": "TS5064", - "title": "Substitution '{0}' for pattern '{1}' has incorrect type, expected 'string', got '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5065, - "codeText": "TS5065", - "title": "File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5066, - "codeText": "TS5066", - "title": "Substitutions for pattern '{0}' shouldn't be an empty array.", - "category": "error", - "documentation": "" - }, - { - "code": 5067, - "codeText": "TS5067", - "title": "Invalid value for 'jsxFactory'. '{0}' is not a valid identifier or qualified-name.", - "category": "error", - "documentation": "" - }, - { - "code": 5068, - "codeText": "TS5068", - "title": "Adding a tsconfig.json file will help organize projects that contain both TypeScript and JavaScript files. Learn more at https://aka.ms/tsconfig.", - "category": "error", - "documentation": "" - }, - { - "code": 5069, - "codeText": "TS5069", - "title": "Option '{0}' cannot be specified without specifying option '{1}' or option '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5070, - "codeText": "TS5070", - "title": "Option '--resolveJsonModule' cannot be specified without 'node' module resolution strategy.", - "category": "error", - "documentation": "" - }, - { - "code": 5071, - "codeText": "TS5071", - "title": "Option '--resolveJsonModule' can only be specified when module code generation is 'commonjs', 'amd', 'es2015' or 'esNext'.", - "category": "error", - "documentation": "" - }, - { - "code": 5072, - "codeText": "TS5072", - "title": "Unknown build option '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5073, - "codeText": "TS5073", - "title": "Build option '{0}' requires a value of type {1}.", - "category": "error", - "documentation": "" - }, - { - "code": 5074, - "codeText": "TS5074", - "title": "Option '--incremental' can only be specified using tsconfig, emitting to single file or when option '--tsBuildInfoFile' is specified.", - "category": "error", - "documentation": "" - }, - { - "code": 5075, - "codeText": "TS5075", - "title": "'{0}' is assignable to the constraint of type '{1}', but '{1}' could be instantiated with a different subtype of constraint '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5076, - "codeText": "TS5076", - "title": "'{0}' and '{1}' operations cannot be mixed without parentheses.", - "category": "error", - "documentation": "" - }, - { - "code": 5077, - "codeText": "TS5077", - "title": "Unknown build option '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" - }, - { - "code": 5078, - "codeText": "TS5078", - "title": "Unknown watch option '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5079, - "codeText": "TS5079", - "title": "Unknown watch option '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" - }, - { - "code": 5080, - "codeText": "TS5080", - "title": "Watch option '{0}' requires a value of type {1}.", - "category": "error", - "documentation": "" - }, - { - "code": 5081, - "codeText": "TS5081", - "title": "Cannot find a tsconfig.json file at the current directory: {0}.", - "category": "error", - "documentation": "" - }, - { - "code": 5082, - "codeText": "TS5082", - "title": "'{0}' could be instantiated with an arbitrary type which could be unrelated to '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5083, - "codeText": "TS5083", - "title": "Cannot read file '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5084, - "codeText": "TS5084", - "title": "Tuple members must all have names or all not have names.", - "category": "error", - "documentation": "" - }, - { - "code": 5085, - "codeText": "TS5085", - "title": "A tuple member cannot be both optional and rest.", - "category": "error", - "documentation": "" - }, - { - "code": 5086, - "codeText": "TS5086", - "title": "A labeled tuple element is declared as optional with a question mark after the name and before the colon, rather than after the type.", - "category": "error", - "documentation": "" - }, - { - "code": 5087, - "codeText": "TS5087", - "title": "A labeled tuple element is declared as rest with a '...' before the name, rather than before the type.", - "category": "error", - "documentation": "" - }, - { - "code": 5088, - "codeText": "TS5088", - "title": "The inferred type of '{0}' references a type with a cyclic structure which cannot be trivially serialized. A type annotation is necessary.", - "category": "error", - "documentation": "" - }, - { - "code": 5089, - "codeText": "TS5089", - "title": "Option '{0}' cannot be specified when option 'jsx' is '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5090, - "codeText": "TS5090", - "title": "Non-relative paths are not allowed when 'baseUrl' is not set. Did you forget a leading './'?", - "category": "error", - "documentation": "" - }, - { - "code": 5091, - "codeText": "TS5091", - "title": "Option 'preserveConstEnums' cannot be disabled when 'isolatedModules' is enabled.", - "category": "error", - "documentation": "" - }, - { - "code": 5092, - "codeText": "TS5092", - "title": "The root value of a '{0}' file must be an object.", - "category": "error", - "documentation": "" - }, - { - "code": 5093, - "codeText": "TS5093", - "title": "Compiler option '--{0}' may only be used with '--build'.", - "category": "error", - "documentation": "" - }, - { - "code": 5094, - "codeText": "TS5094", - "title": "Compiler option '--{0}' may not be used with '--build'.", - "category": "error", - "documentation": "" - }, - { - "code": 5095, - "codeText": "TS5095", - "title": "Option 'preserveValueImports' can only be used when 'module' is set to 'es2015' or later.", - "category": "error", - "documentation": "" - }, - { - "code": 5096, - "codeText": "TS5096", - "title": "Option 'allowImportingTsExtensions' can only be used when either 'noEmit' or 'emitDeclarationOnly' is set.", - "category": "error", - "documentation": "" - }, - { - "code": 5097, - "codeText": "TS5097", - "title": "An import path can only end with a '{0}' extension when 'allowImportingTsExtensions' is enabled.", - "category": "error", - "documentation": "" - }, - { - "code": 5098, - "codeText": "TS5098", - "title": "Option '{0}' can only be used when 'moduleResolution' is set to 'node16', 'nodenext', or 'bundler'.", - "category": "error", - "documentation": "" - }, - { - "code": 5099, - "codeText": "TS5099", - "title": "Import assignment is not allowed when 'moduleResolution' is set to 'bundler'. Consider using 'import * as ns from \"mod\"', 'import {a} from \"mod\"', 'import d from \"mod\"', or another module format instead.", - "category": "error", - "documentation": "" - }, - { - "code": 5100, - "codeText": "TS5100", - "title": "Export assignment cannot be used when 'moduleResolution' is set to 'bundler'. Consider using 'export default' or another module format instead.", - "category": "error", - "documentation": "" - }, - { - "code": 5101, - "codeText": "TS5101", - "title": "Flag '{0}' is deprecated and will stop functioning in TypeScript {1}. Specify 'ignoreDeprecations: \"{2}\"' to silence this error.", - "category": "error", - "documentation": "" - }, - { - "code": 5102, - "codeText": "TS5102", - "title": "Flag '{0}' is deprecated. Please remove it from your configuration.", - "category": "error", - "documentation": "" - }, - { - "code": 5103, - "codeText": "TS5103", - "title": "Invalid value for '--ignoreDeprecations'.", - "category": "error", - "documentation": "" - }, - { - "code": 5104, - "codeText": "TS5104", - "title": "Option '{0}' is redundant and cannot be specified with option '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5105, - "codeText": "TS5105", - "title": "Option 'verbatimModuleSyntax' cannot be used when 'module' is set to 'UMD', 'AMD', or 'System'.", - "category": "error", - "documentation": "" - }, - { - "code": 5106, - "codeText": "TS5106", - "title": "Use '{0}' instead.", - "category": "message", - "documentation": "" - }, - { - "code": 5107, - "codeText": "TS5107", - "title": "Option '{0}={1}' is deprecated and will stop functioning in TypeScript {2}. Specify compilerOption '\"ignoreDeprecations\": \"{3}\"' to silence this error.", - "category": "error", - "documentation": "" - }, - { - "code": 5108, - "codeText": "TS5108", - "title": "Option '{0}={1}' has been removed. Please remove it from your configuration.", - "category": "error", - "documentation": "" - }, - { - "code": 5109, - "codeText": "TS5109", - "title": "Option 'moduleResolution' must be set to '{0}' (or left unspecified) when option 'module' is set to '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 5110, - "codeText": "TS5110", - "title": "Option 'module' must be set to '{0}' when option 'moduleResolution' is set to '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 6000, - "codeText": "TS6000", - "title": "Generates a sourcemap for each corresponding '.d.ts' file.", - "category": "message", - "documentation": "" - }, - { - "code": 6001, - "codeText": "TS6001", - "title": "Concatenate and emit output to single file.", - "category": "message", - "documentation": "" - }, - { - "code": 6002, - "codeText": "TS6002", - "title": "Generates corresponding '.d.ts' file.", - "category": "message", - "documentation": "" - }, - { - "code": 6004, - "codeText": "TS6004", - "title": "Specify the location where debugger should locate TypeScript files instead of source locations.", - "category": "message", - "documentation": "" - }, - { - "code": 6005, - "codeText": "TS6005", - "title": "Watch input files.", - "category": "message", - "documentation": "" - }, - { - "code": 6006, - "codeText": "TS6006", - "title": "Redirect output structure to the directory.", - "category": "message", - "documentation": "" - }, - { - "code": 6007, - "codeText": "TS6007", - "title": "Do not erase const enum declarations in generated code.", - "category": "message", - "documentation": "" - }, - { - "code": 6008, - "codeText": "TS6008", - "title": "Do not emit outputs if any errors were reported.", - "category": "message", - "documentation": "" - }, - { - "code": 6009, - "codeText": "TS6009", - "title": "Do not emit comments to output.", - "category": "message", - "documentation": "" - }, - { - "code": 6010, - "codeText": "TS6010", - "title": "Do not emit outputs.", - "category": "message", - "documentation": "" - }, - { - "code": 6011, - "codeText": "TS6011", - "title": "Allow default imports from modules with no default export. This does not affect code emit, just typechecking.", - "category": "message", - "documentation": "" - }, - { - "code": 6012, - "codeText": "TS6012", - "title": "Skip type checking of declaration files.", - "category": "message", - "documentation": "" - }, - { - "code": 6013, - "codeText": "TS6013", - "title": "Do not resolve the real path of symlinks.", - "category": "message", - "documentation": "" - }, - { - "code": 6014, - "codeText": "TS6014", - "title": "Only emit '.d.ts' declaration files.", - "category": "message", - "documentation": "" - }, - { - "code": 6015, - "codeText": "TS6015", - "title": "Specify ECMAScript target version.", - "category": "message", - "documentation": "" - }, - { - "code": 6016, - "codeText": "TS6016", - "title": "Specify module code generation.", - "category": "message", - "documentation": "" - }, - { - "code": 6017, - "codeText": "TS6017", - "title": "Print this message.", - "category": "message", - "documentation": "" - }, - { - "code": 6019, - "codeText": "TS6019", - "title": "Print the compiler's version.", - "category": "message", - "documentation": "" - }, - { - "code": 6020, - "codeText": "TS6020", - "title": "Compile the project given the path to its configuration file, or to a folder with a 'tsconfig.json'.", - "category": "message", - "documentation": "" - }, - { - "code": 6023, - "codeText": "TS6023", - "title": "Syntax: {0}", - "category": "message", - "documentation": "" - }, - { - "code": 6024, - "codeText": "TS6024", - "title": "options", - "category": "message", - "documentation": "" - }, - { - "code": 6025, - "codeText": "TS6025", - "title": "file", - "category": "message", - "documentation": "" - }, - { - "code": 6026, - "codeText": "TS6026", - "title": "Examples: {0}", - "category": "message", - "documentation": "" - }, - { - "code": 6027, - "codeText": "TS6027", - "title": "Options:", - "category": "message", - "documentation": "" - }, - { - "code": 6029, - "codeText": "TS6029", - "title": "Version {0}", - "category": "message", - "documentation": "" - }, - { - "code": 6030, - "codeText": "TS6030", - "title": "Insert command line options and files from a file.", - "category": "message", - "documentation": "" - }, - { - "code": 6031, - "codeText": "TS6031", - "title": "Starting compilation in watch mode...", - "category": "message", - "documentation": "" - }, - { - "code": 6032, - "codeText": "TS6032", - "title": "File change detected. Starting incremental compilation...", - "category": "message", - "documentation": "" - }, - { - "code": 6034, - "codeText": "TS6034", - "title": "KIND", - "category": "message", - "documentation": "" - }, - { - "code": 6035, - "codeText": "TS6035", - "title": "FILE", - "category": "message", - "documentation": "" - }, - { - "code": 6036, - "codeText": "TS6036", - "title": "VERSION", - "category": "message", - "documentation": "" - }, - { - "code": 6037, - "codeText": "TS6037", - "title": "LOCATION", - "category": "message", - "documentation": "" - }, - { - "code": 6038, - "codeText": "TS6038", - "title": "DIRECTORY", - "category": "message", - "documentation": "" - }, - { - "code": 6039, - "codeText": "TS6039", - "title": "STRATEGY", - "category": "message", - "documentation": "" - }, - { - "code": 6040, - "codeText": "TS6040", - "title": "FILE OR DIRECTORY", - "category": "message", - "documentation": "" - }, - { - "code": 6041, - "codeText": "TS6041", - "title": "Errors Files", - "category": "message", - "documentation": "" - }, - { - "code": 6043, - "codeText": "TS6043", - "title": "Generates corresponding '.map' file.", - "category": "message", - "documentation": "" - }, - { - "code": 6044, - "codeText": "TS6044", - "title": "Compiler option '{0}' expects an argument.", - "category": "error", - "documentation": "" - }, - { - "code": 6045, - "codeText": "TS6045", - "title": "Unterminated quoted string in response file '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 6046, - "codeText": "TS6046", - "title": "Argument for '{0}' option must be: {1}.", - "category": "error", - "documentation": "" - }, - { - "code": 6048, - "codeText": "TS6048", - "title": "Locale must be of the form or -. For example '{0}' or '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 6050, - "codeText": "TS6050", - "title": "Unable to open file '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 6051, - "codeText": "TS6051", - "title": "Corrupted locale file {0}.", - "category": "error", - "documentation": "" - }, - { - "code": 6052, - "codeText": "TS6052", - "title": "Raise error on expressions and declarations with an implied 'any' type.", - "category": "message", - "documentation": "" - }, - { - "code": 6053, - "codeText": "TS6053", - "title": "File '{0}' not found.", - "category": "error", - "documentation": "" - }, - { - "code": 6054, - "codeText": "TS6054", - "title": "File '{0}' has an unsupported extension. The only supported extensions are {1}.", - "category": "error", - "documentation": "" - }, - { - "code": 6055, - "codeText": "TS6055", - "title": "Suppress noImplicitAny errors for indexing objects lacking index signatures.", - "category": "message", - "documentation": "" - }, - { - "code": 6056, - "codeText": "TS6056", - "title": "Do not emit declarations for code that has an '@internal' annotation.", - "category": "message", - "documentation": "" - }, - { - "code": 6058, - "codeText": "TS6058", - "title": "Specify the root directory of input files. Use to control the output directory structure with --outDir.", - "category": "message", - "documentation": "" - }, - { - "code": 6059, - "codeText": "TS6059", - "title": "File '{0}' is not under 'rootDir' '{1}'. 'rootDir' is expected to contain all source files.", - "category": "error", - "documentation": "" - }, - { - "code": 6060, - "codeText": "TS6060", - "title": "Specify the end of line sequence to be used when emitting files: 'CRLF' (dos) or 'LF' (unix).", - "category": "message", - "documentation": "" - }, - { - "code": 6061, - "codeText": "TS6061", - "title": "NEWLINE", - "category": "message", - "documentation": "" - }, - { - "code": 6064, - "codeText": "TS6064", - "title": "Option '{0}' can only be specified in 'tsconfig.json' file or set to 'null' on command line.", - "category": "error", - "documentation": "" - }, - { - "code": 6065, - "codeText": "TS6065", - "title": "Enables experimental support for ES7 decorators.", - "category": "message", - "documentation": "" - }, - { - "code": 6066, - "codeText": "TS6066", - "title": "Enables experimental support for emitting type metadata for decorators.", - "category": "message", - "documentation": "" - }, - { - "code": 6069, - "codeText": "TS6069", - "title": "Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6).", - "category": "message", - "documentation": "" - }, - { - "code": 6070, - "codeText": "TS6070", - "title": "Initializes a TypeScript project and creates a tsconfig.json file.", - "category": "message", - "documentation": "" - }, - { - "code": 6071, - "codeText": "TS6071", - "title": "Successfully created a tsconfig.json file.", - "category": "message", - "documentation": "" - }, - { - "code": 6072, - "codeText": "TS6072", - "title": "Suppress excess property checks for object literals.", - "category": "message", - "documentation": "" - }, - { - "code": 6073, - "codeText": "TS6073", - "title": "Stylize errors and messages using color and context (experimental).", - "category": "message", - "documentation": "" - }, - { - "code": 6074, - "codeText": "TS6074", - "title": "Do not report errors on unused labels.", - "category": "message", - "documentation": "" - }, - { - "code": 6075, - "codeText": "TS6075", - "title": "Report error when not all code paths in function return a value.", - "category": "message", - "documentation": "" - }, - { - "code": 6076, - "codeText": "TS6076", - "title": "Report errors for fallthrough cases in switch statement.", - "category": "message", - "documentation": "" - }, - { - "code": 6077, - "codeText": "TS6077", - "title": "Do not report errors on unreachable code.", - "category": "message", - "documentation": "" - }, - { - "code": 6078, - "codeText": "TS6078", - "title": "Disallow inconsistently-cased references to the same file.", - "category": "message", - "documentation": "" - }, - { - "code": 6079, - "codeText": "TS6079", - "title": "Specify library files to be included in the compilation.", - "category": "message", - "documentation": "" - }, - { - "code": 6080, - "codeText": "TS6080", - "title": "Specify JSX code generation.", - "category": "message", - "documentation": "" - }, - { - "code": 6081, - "codeText": "TS6081", - "title": "File '{0}' has an unsupported extension, so skipping it.", - "category": "message", - "documentation": "" - }, - { - "code": 6082, - "codeText": "TS6082", - "title": "Only 'amd' and 'system' modules are supported alongside --{0}.", - "category": "error", - "documentation": "" - }, - { - "code": 6083, - "codeText": "TS6083", - "title": "Base directory to resolve non-absolute module names.", - "category": "message", - "documentation": "" - }, - { - "code": 6084, - "codeText": "TS6084", - "title": "[Deprecated] Use '--jsxFactory' instead. Specify the object invoked for createElement when targeting 'react' JSX emit", - "category": "message", - "documentation": "" - }, - { - "code": 6085, - "codeText": "TS6085", - "title": "Enable tracing of the name resolution process.", - "category": "message", - "documentation": "" - }, - { - "code": 6086, - "codeText": "TS6086", - "title": "======== Resolving module '{0}' from '{1}'. ========", - "category": "message", - "documentation": "" - }, - { - "code": 6087, - "codeText": "TS6087", - "title": "Explicitly specified module resolution kind: '{0}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6088, - "codeText": "TS6088", - "title": "Module resolution kind is not specified, using '{0}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6089, - "codeText": "TS6089", - "title": "======== Module name '{0}' was successfully resolved to '{1}'. ========", - "category": "message", - "documentation": "" - }, - { - "code": 6090, - "codeText": "TS6090", - "title": "======== Module name '{0}' was not resolved. ========", - "category": "message", - "documentation": "" - }, - { - "code": 6091, - "codeText": "TS6091", - "title": "'paths' option is specified, looking for a pattern to match module name '{0}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6092, - "codeText": "TS6092", - "title": "Module name '{0}', matched pattern '{1}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6093, - "codeText": "TS6093", - "title": "Trying substitution '{0}', candidate module location: '{1}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6094, - "codeText": "TS6094", - "title": "Resolving module name '{0}' relative to base url '{1}' - '{2}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6095, - "codeText": "TS6095", - "title": "Loading module as file / folder, candidate module location '{0}', target file type '{1}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6096, - "codeText": "TS6096", - "title": "File '{0}' does not exist.", - "category": "message", - "documentation": "" - }, - { - "code": 6097, - "codeText": "TS6097", - "title": "File '{0}' exist - use it as a name resolution result.", - "category": "message", - "documentation": "" - }, - { - "code": 6098, - "codeText": "TS6098", - "title": "Loading module '{0}' from 'node_modules' folder, target file type '{1}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6099, - "codeText": "TS6099", - "title": "Found 'package.json' at '{0}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6100, - "codeText": "TS6100", - "title": "'package.json' does not have a '{0}' field.", - "category": "message", - "documentation": "" - }, - { - "code": 6101, - "codeText": "TS6101", - "title": "'package.json' has '{0}' field '{1}' that references '{2}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6102, - "codeText": "TS6102", - "title": "Allow javascript files to be compiled.", - "category": "message", - "documentation": "" - }, - { - "code": 6104, - "codeText": "TS6104", - "title": "Checking if '{0}' is the longest matching prefix for '{1}' - '{2}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6105, - "codeText": "TS6105", - "title": "Expected type of '{0}' field in 'package.json' to be '{1}', got '{2}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6106, - "codeText": "TS6106", - "title": "'baseUrl' option is set to '{0}', using this value to resolve non-relative module name '{1}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6107, - "codeText": "TS6107", - "title": "'rootDirs' option is set, using it to resolve relative module name '{0}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6108, - "codeText": "TS6108", - "title": "Longest matching prefix for '{0}' is '{1}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6109, - "codeText": "TS6109", - "title": "Loading '{0}' from the root dir '{1}', candidate location '{2}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6110, - "codeText": "TS6110", - "title": "Trying other entries in 'rootDirs'.", - "category": "message", - "documentation": "" - }, - { - "code": 6111, - "codeText": "TS6111", - "title": "Module resolution using 'rootDirs' has failed.", - "category": "message", - "documentation": "" - }, - { - "code": 6112, - "codeText": "TS6112", - "title": "Do not emit 'use strict' directives in module output.", - "category": "message", - "documentation": "" - }, - { - "code": 6113, - "codeText": "TS6113", - "title": "Enable strict null checks.", - "category": "message", - "documentation": "" - }, - { - "code": 6114, - "codeText": "TS6114", - "title": "Unknown option 'excludes'. Did you mean 'exclude'?", - "category": "error", - "documentation": "" - }, - { - "code": 6115, - "codeText": "TS6115", - "title": "Raise error on 'this' expressions with an implied 'any' type.", - "category": "message", - "documentation": "" - }, - { - "code": 6116, - "codeText": "TS6116", - "title": "======== Resolving type reference directive '{0}', containing file '{1}', root directory '{2}'. ========", - "category": "message", - "documentation": "" - }, - { - "code": 6119, - "codeText": "TS6119", - "title": "======== Type reference directive '{0}' was successfully resolved to '{1}', primary: {2}. ========", - "category": "message", - "documentation": "" - }, - { - "code": 6120, - "codeText": "TS6120", - "title": "======== Type reference directive '{0}' was not resolved. ========", - "category": "message", - "documentation": "" - }, - { - "code": 6121, - "codeText": "TS6121", - "title": "Resolving with primary search path '{0}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6122, - "codeText": "TS6122", - "title": "Root directory cannot be determined, skipping primary search paths.", - "category": "message", - "documentation": "" - }, - { - "code": 6123, - "codeText": "TS6123", - "title": "======== Resolving type reference directive '{0}', containing file '{1}', root directory not set. ========", - "category": "message", - "documentation": "" - }, - { - "code": 6124, - "codeText": "TS6124", - "title": "Type declaration files to be included in compilation.", - "category": "message", - "documentation": "" - }, - { - "code": 6125, - "codeText": "TS6125", - "title": "Looking up in 'node_modules' folder, initial location '{0}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6126, - "codeText": "TS6126", - "title": "Containing file is not specified and root directory cannot be determined, skipping lookup in 'node_modules' folder.", - "category": "message", - "documentation": "" - }, - { - "code": 6127, - "codeText": "TS6127", - "title": "======== Resolving type reference directive '{0}', containing file not set, root directory '{1}'. ========", - "category": "message", - "documentation": "" - }, - { - "code": 6128, - "codeText": "TS6128", - "title": "======== Resolving type reference directive '{0}', containing file not set, root directory not set. ========", - "category": "message", - "documentation": "" - }, - { - "code": 6130, - "codeText": "TS6130", - "title": "Resolving real path for '{0}', result '{1}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6131, - "codeText": "TS6131", - "title": "Cannot compile modules using option '{0}' unless the '--module' flag is 'amd' or 'system'.", - "category": "error", - "documentation": "" - }, - { - "code": 6132, - "codeText": "TS6132", - "title": "File name '{0}' has a '{1}' extension - stripping it.", - "category": "message", - "documentation": "" - }, - { - "code": 6133, - "codeText": "TS6133", - "title": "'{0}' is declared but its value is never read.", - "category": "error", - "documentation": "" - }, - { - "code": 6134, - "codeText": "TS6134", - "title": "Report errors on unused locals.", - "category": "message", - "documentation": "" - }, - { - "code": 6135, - "codeText": "TS6135", - "title": "Report errors on unused parameters.", - "category": "message", - "documentation": "" - }, - { - "code": 6136, - "codeText": "TS6136", - "title": "The maximum dependency depth to search under node_modules and load JavaScript files.", - "category": "message", - "documentation": "" - }, - { - "code": 6137, - "codeText": "TS6137", - "title": "Cannot import type declaration files. Consider importing '{0}' instead of '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 6138, - "codeText": "TS6138", - "title": "Property '{0}' is declared but its value is never read.", - "category": "error", - "documentation": "" - }, - { - "code": 6139, - "codeText": "TS6139", - "title": "Import emit helpers from 'tslib'.", - "category": "message", - "documentation": "" - }, - { - "code": 6140, - "codeText": "TS6140", - "title": "Auto discovery for typings is enabled in project '{0}'. Running extra resolution pass for module '{1}' using cache location '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 6141, - "codeText": "TS6141", - "title": "Parse in strict mode and emit \"use strict\" for each source file.", - "category": "message", - "documentation": "" - }, - { - "code": 6142, - "codeText": "TS6142", - "title": "Module '{0}' was resolved to '{1}', but '--jsx' is not set.", - "category": "error", - "documentation": "" - }, - { - "code": 6144, - "codeText": "TS6144", - "title": "Module '{0}' was resolved as locally declared ambient module in file '{1}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6145, - "codeText": "TS6145", - "title": "Module '{0}' was resolved as ambient module declared in '{1}' since this file was not modified.", - "category": "message", - "documentation": "" - }, - { - "code": 6146, - "codeText": "TS6146", - "title": "Specify the JSX factory function to use when targeting 'react' JSX emit, e.g. 'React.createElement' or 'h'.", - "category": "message", - "documentation": "" - }, - { - "code": 6147, - "codeText": "TS6147", - "title": "Resolution for module '{0}' was found in cache from location '{1}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6148, - "codeText": "TS6148", - "title": "Directory '{0}' does not exist, skipping all lookups in it.", - "category": "message", - "documentation": "" - }, - { - "code": 6149, - "codeText": "TS6149", - "title": "Show diagnostic information.", - "category": "message", - "documentation": "" - }, - { - "code": 6150, - "codeText": "TS6150", - "title": "Show verbose diagnostic information.", - "category": "message", - "documentation": "" - }, - { - "code": 6151, - "codeText": "TS6151", - "title": "Emit a single file with source maps instead of having a separate file.", - "category": "message", - "documentation": "" - }, - { - "code": 6152, - "codeText": "TS6152", - "title": "Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set.", - "category": "message", - "documentation": "" - }, - { - "code": 6153, - "codeText": "TS6153", - "title": "Transpile each file as a separate module (similar to 'ts.transpileModule').", - "category": "message", - "documentation": "" - }, - { - "code": 6154, - "codeText": "TS6154", - "title": "Print names of generated files part of the compilation.", - "category": "message", - "documentation": "" - }, - { - "code": 6155, - "codeText": "TS6155", - "title": "Print names of files part of the compilation.", - "category": "message", - "documentation": "" - }, - { - "code": 6156, - "codeText": "TS6156", - "title": "The locale used when displaying messages to the user (e.g. 'en-us')", - "category": "message", - "documentation": "" - }, - { - "code": 6157, - "codeText": "TS6157", - "title": "Do not generate custom helper functions like '__extends' in compiled output.", - "category": "message", - "documentation": "" - }, - { - "code": 6158, - "codeText": "TS6158", - "title": "Do not include the default library file (lib.d.ts).", - "category": "message", - "documentation": "" - }, - { - "code": 6159, - "codeText": "TS6159", - "title": "Do not add triple-slash references or imported modules to the list of compiled files.", - "category": "message", - "documentation": "" - }, - { - "code": 6160, - "codeText": "TS6160", - "title": "[Deprecated] Use '--skipLibCheck' instead. Skip type checking of default library declaration files.", - "category": "message", - "documentation": "" - }, - { - "code": 6161, - "codeText": "TS6161", - "title": "List of folders to include type definitions from.", - "category": "message", - "documentation": "" - }, - { - "code": 6162, - "codeText": "TS6162", - "title": "Disable size limitations on JavaScript projects.", - "category": "message", - "documentation": "" - }, - { - "code": 6163, - "codeText": "TS6163", - "title": "The character set of the input files.", - "category": "message", - "documentation": "" - }, - { - "code": 6164, - "codeText": "TS6164", - "title": "Skipping module '{0}' that looks like an absolute URI, target file types: {1}.", - "category": "message", - "documentation": "" - }, - { - "code": 6165, - "codeText": "TS6165", - "title": "Do not truncate error messages.", - "category": "message", - "documentation": "" - }, - { - "code": 6166, - "codeText": "TS6166", - "title": "Output directory for generated declaration files.", - "category": "message", - "documentation": "" - }, - { - "code": 6167, - "codeText": "TS6167", - "title": "A series of entries which re-map imports to lookup locations relative to the 'baseUrl'.", - "category": "message", - "documentation": "" - }, - { - "code": 6168, - "codeText": "TS6168", - "title": "List of root folders whose combined content represents the structure of the project at runtime.", - "category": "message", - "documentation": "" - }, - { - "code": 6169, - "codeText": "TS6169", - "title": "Show all compiler options.", - "category": "message", - "documentation": "" - }, - { - "code": 6170, - "codeText": "TS6170", - "title": "[Deprecated] Use '--outFile' instead. Concatenate and emit output to single file", - "category": "message", - "documentation": "" - }, - { - "code": 6171, - "codeText": "TS6171", - "title": "Command-line Options", - "category": "message", - "documentation": "" - }, - { - "code": 6179, - "codeText": "TS6179", - "title": "Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'.", - "category": "message", - "documentation": "" - }, - { - "code": 6180, - "codeText": "TS6180", - "title": "Enable all strict type-checking options.", - "category": "message", - "documentation": "" - }, - { - "code": 6182, - "codeText": "TS6182", - "title": "Scoped package detected, looking in '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 6183, - "codeText": "TS6183", - "title": "Reusing resolution of module '{0}' from '{1}' of old program, it was successfully resolved to '{2}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6184, - "codeText": "TS6184", - "title": "Reusing resolution of module '{0}' from '{1}' of old program, it was successfully resolved to '{2}' with Package ID '{3}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6186, - "codeText": "TS6186", - "title": "Enable strict checking of function types.", - "category": "message", - "documentation": "" - }, - { - "code": 6187, - "codeText": "TS6187", - "title": "Enable strict checking of property initialization in classes.", - "category": "message", - "documentation": "" - }, - { - "code": 6188, - "codeText": "TS6188", - "title": "Numeric separators are not allowed here.", - "category": "error", - "documentation": "" - }, - { - "code": 6189, - "codeText": "TS6189", - "title": "Multiple consecutive numeric separators are not permitted.", - "category": "error", - "documentation": "" - }, - { - "code": 6191, - "codeText": "TS6191", - "title": "Whether to keep outdated console output in watch mode instead of clearing the screen.", - "category": "message", - "documentation": "" - }, - { - "code": 6192, - "codeText": "TS6192", - "title": "All imports in import declaration are unused.", - "category": "error", - "documentation": "" - }, - { - "code": 6193, - "codeText": "TS6193", - "title": "Found 1 error. Watching for file changes.", - "category": "message", - "documentation": "" - }, - { - "code": 6194, - "codeText": "TS6194", - "title": "Found {0} errors. Watching for file changes.", - "category": "message", - "documentation": "" - }, - { - "code": 6195, - "codeText": "TS6195", - "title": "Resolve 'keyof' to string valued property names only (no numbers or symbols).", - "category": "message", - "documentation": "" - }, - { - "code": 6196, - "codeText": "TS6196", - "title": "'{0}' is declared but never used.", - "category": "error", - "documentation": "" - }, - { - "code": 6197, - "codeText": "TS6197", - "title": "Include modules imported with '.json' extension", - "category": "message", - "documentation": "" - }, - { - "code": 6198, - "codeText": "TS6198", - "title": "All destructured elements are unused.", - "category": "error", - "documentation": "" - }, - { - "code": 6199, - "codeText": "TS6199", - "title": "All variables are unused.", - "category": "error", - "documentation": "" - }, - { - "code": 6200, - "codeText": "TS6200", - "title": "Definitions of the following identifiers conflict with those in another file: {0}", - "category": "error", - "documentation": "" - }, - { - "code": 6201, - "codeText": "TS6201", - "title": "Conflicts are in this file.", - "category": "message", - "documentation": "" - }, - { - "code": 6202, - "codeText": "TS6202", - "title": "Project references may not form a circular graph. Cycle detected: {0}", - "category": "error", - "documentation": "" - }, - { - "code": 6203, - "codeText": "TS6203", - "title": "'{0}' was also declared here.", - "category": "message", - "documentation": "" - }, - { - "code": 6204, - "codeText": "TS6204", - "title": "and here.", - "category": "message", - "documentation": "" - }, - { - "code": 6205, - "codeText": "TS6205", - "title": "All type parameters are unused.", - "category": "error", - "documentation": "" - }, - { - "code": 6206, - "codeText": "TS6206", - "title": "'package.json' has a 'typesVersions' field with version-specific path mappings.", - "category": "message", - "documentation": "" - }, - { - "code": 6207, - "codeText": "TS6207", - "title": "'package.json' does not have a 'typesVersions' entry that matches version '{0}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6208, - "codeText": "TS6208", - "title": "'package.json' has a 'typesVersions' entry '{0}' that matches compiler version '{1}', looking for a pattern to match module name '{2}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6209, - "codeText": "TS6209", - "title": "'package.json' has a 'typesVersions' entry '{0}' that is not a valid semver range.", - "category": "message", - "documentation": "" - }, - { - "code": 6210, - "codeText": "TS6210", - "title": "An argument for '{0}' was not provided.", - "category": "message", - "documentation": "" - }, - { - "code": 6211, - "codeText": "TS6211", - "title": "An argument matching this binding pattern was not provided.", - "category": "message", - "documentation": "" - }, - { - "code": 6212, - "codeText": "TS6212", - "title": "Did you mean to call this expression?", - "category": "message", - "documentation": "" - }, - { - "code": 6213, - "codeText": "TS6213", - "title": "Did you mean to use 'new' with this expression?", - "category": "message", - "documentation": "" - }, - { - "code": 6214, - "codeText": "TS6214", - "title": "Enable strict 'bind', 'call', and 'apply' methods on functions.", - "category": "message", - "documentation": "" - }, - { - "code": 6215, - "codeText": "TS6215", - "title": "Using compiler options of project reference redirect '{0}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6216, - "codeText": "TS6216", - "title": "Found 1 error.", - "category": "message", - "documentation": "" - }, - { - "code": 6217, - "codeText": "TS6217", - "title": "Found {0} errors.", - "category": "message", - "documentation": "" - }, - { - "code": 6218, - "codeText": "TS6218", - "title": "======== Module name '{0}' was successfully resolved to '{1}' with Package ID '{2}'. ========", - "category": "message", - "documentation": "" - }, - { - "code": 6219, - "codeText": "TS6219", - "title": "======== Type reference directive '{0}' was successfully resolved to '{1}' with Package ID '{2}', primary: {3}. ========", - "category": "message", - "documentation": "" - }, - { - "code": 6220, - "codeText": "TS6220", - "title": "'package.json' had a falsy '{0}' field.", - "category": "message", - "documentation": "" - }, - { - "code": 6221, - "codeText": "TS6221", - "title": "Disable use of source files instead of declaration files from referenced projects.", - "category": "message", - "documentation": "" - }, - { - "code": 6222, - "codeText": "TS6222", - "title": "Emit class fields with Define instead of Set.", - "category": "message", - "documentation": "" - }, - { - "code": 6223, - "codeText": "TS6223", - "title": "Generates a CPU profile.", - "category": "message", - "documentation": "" - }, - { - "code": 6224, - "codeText": "TS6224", - "title": "Disable solution searching for this project.", - "category": "message", - "documentation": "" - }, - { - "code": 6225, - "codeText": "TS6225", - "title": "Specify strategy for watching file: 'FixedPollingInterval' (default), 'PriorityPollingInterval', 'DynamicPriorityPolling', 'FixedChunkSizePolling', 'UseFsEvents', 'UseFsEventsOnParentDirectory'.", - "category": "message", - "documentation": "" - }, - { - "code": 6226, - "codeText": "TS6226", - "title": "Specify strategy for watching directory on platforms that don't support recursive watching natively: 'UseFsEvents' (default), 'FixedPollingInterval', 'DynamicPriorityPolling', 'FixedChunkSizePolling'.", - "category": "message", - "documentation": "" - }, - { - "code": 6227, - "codeText": "TS6227", - "title": "Specify strategy for creating a polling watch when it fails to create using file system events: 'FixedInterval' (default), 'PriorityInterval', 'DynamicPriority', 'FixedChunkSize'.", - "category": "message", - "documentation": "" - }, - { - "code": 6229, - "codeText": "TS6229", - "title": "Tag '{0}' expects at least '{1}' arguments, but the JSX factory '{2}' provides at most '{3}'.", - "category": "error", - "documentation": "" - }, - { - "code": 6230, - "codeText": "TS6230", - "title": "Option '{0}' can only be specified in 'tsconfig.json' file or set to 'false' or 'null' on command line.", - "category": "error", - "documentation": "" - }, - { - "code": 6231, - "codeText": "TS6231", - "title": "Could not resolve the path '{0}' with the extensions: {1}.", - "category": "error", - "documentation": "" - }, - { - "code": 6232, - "codeText": "TS6232", - "title": "Declaration augments declaration in another file. This cannot be serialized.", - "category": "error", - "documentation": "" - }, - { - "code": 6233, - "codeText": "TS6233", - "title": "This is the declaration being augmented. Consider moving the augmenting declaration into the same file.", - "category": "error", - "documentation": "" - }, - { - "code": 6234, - "codeText": "TS6234", - "title": "This expression is not callable because it is a 'get' accessor. Did you mean to use it without '()'?", - "category": "error", - "documentation": "" - }, - { - "code": 6235, - "codeText": "TS6235", - "title": "Disable loading referenced projects.", - "category": "message", - "documentation": "" - }, - { - "code": 6236, - "codeText": "TS6236", - "title": "Arguments for the rest parameter '{0}' were not provided.", - "category": "error", - "documentation": "" - }, - { - "code": 6237, - "codeText": "TS6237", - "title": "Generates an event trace and a list of types.", - "category": "message", - "documentation": "" - }, - { - "code": 6238, - "codeText": "TS6238", - "title": "Specify the module specifier to be used to import the 'jsx' and 'jsxs' factory functions from. eg, react", - "category": "error", - "documentation": "" - }, - { - "code": 6239, - "codeText": "TS6239", - "title": "File '{0}' exists according to earlier cached lookups.", - "category": "message", - "documentation": "" - }, - { - "code": 6240, - "codeText": "TS6240", - "title": "File '{0}' does not exist according to earlier cached lookups.", - "category": "message", - "documentation": "" - }, - { - "code": 6241, - "codeText": "TS6241", - "title": "Resolution for type reference directive '{0}' was found in cache from location '{1}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6242, - "codeText": "TS6242", - "title": "======== Resolving type reference directive '{0}', containing file '{1}'. ========", - "category": "message", - "documentation": "" - }, - { - "code": 6243, - "codeText": "TS6243", - "title": "Interpret optional property types as written, rather than adding 'undefined'.", - "category": "message", - "documentation": "" - }, - { - "code": 6244, - "codeText": "TS6244", - "title": "Modules", - "category": "message", - "documentation": "" - }, - { - "code": 6245, - "codeText": "TS6245", - "title": "File Management", - "category": "message", - "documentation": "" - }, - { - "code": 6246, - "codeText": "TS6246", - "title": "Emit", - "category": "message", - "documentation": "" - }, - { - "code": 6247, - "codeText": "TS6247", - "title": "JavaScript Support", - "category": "message", - "documentation": "" - }, - { - "code": 6248, - "codeText": "TS6248", - "title": "Type Checking", - "category": "message", - "documentation": "" - }, - { - "code": 6249, - "codeText": "TS6249", - "title": "Editor Support", - "category": "message", - "documentation": "" - }, - { - "code": 6250, - "codeText": "TS6250", - "title": "Watch and Build Modes", - "category": "message", - "documentation": "" - }, - { - "code": 6251, - "codeText": "TS6251", - "title": "Compiler Diagnostics", - "category": "message", - "documentation": "" - }, - { - "code": 6252, - "codeText": "TS6252", - "title": "Interop Constraints", - "category": "message", - "documentation": "" - }, - { - "code": 6253, - "codeText": "TS6253", - "title": "Backwards Compatibility", - "category": "message", - "documentation": "" - }, - { - "code": 6254, - "codeText": "TS6254", - "title": "Language and Environment", - "category": "message", - "documentation": "" - }, - { - "code": 6255, - "codeText": "TS6255", - "title": "Projects", - "category": "message", - "documentation": "" - }, - { - "code": 6256, - "codeText": "TS6256", - "title": "Output Formatting", - "category": "message", - "documentation": "" - }, - { - "code": 6257, - "codeText": "TS6257", - "title": "Completeness", - "category": "message", - "documentation": "" - }, - { - "code": 6258, - "codeText": "TS6258", - "title": "'{0}' should be set inside the 'compilerOptions' object of the config json file", - "category": "error", - "documentation": "" - }, - { - "code": 6259, - "codeText": "TS6259", - "title": "Found 1 error in {1}", - "category": "message", - "documentation": "" - }, - { - "code": 6260, - "codeText": "TS6260", - "title": "Found {0} errors in the same file, starting at: {1}", - "category": "message", - "documentation": "" - }, - { - "code": 6261, - "codeText": "TS6261", - "title": "Found {0} errors in {1} files.", - "category": "message", - "documentation": "" - }, - { - "code": 6262, - "codeText": "TS6262", - "title": "File name '{0}' has a '{1}' extension - looking up '{2}' instead.", - "category": "message", - "documentation": "" - }, - { - "code": 6263, - "codeText": "TS6263", - "title": "Module '{0}' was resolved to '{1}', but '--allowArbitraryExtensions' is not set.", - "category": "error", - "documentation": "" - }, - { - "code": 6264, - "codeText": "TS6264", - "title": "Enable importing files with any extension, provided a declaration file is present.", - "category": "message", - "documentation": "" - }, - { - "code": 6265, - "codeText": "TS6265", - "title": "Resolving type reference directive for program that specifies custom typeRoots, skipping lookup in 'node_modules' folder.", - "category": "message", - "documentation": "" - }, - { - "code": 6266, - "codeText": "TS6266", - "title": "Option '{0}' can only be specified on command line.", - "category": "error", - "documentation": "" - }, - { - "code": 6270, - "codeText": "TS6270", - "title": "Directory '{0}' has no containing package.json scope. Imports will not resolve.", - "category": "message", - "documentation": "" - }, - { - "code": 6271, - "codeText": "TS6271", - "title": "Import specifier '{0}' does not exist in package.json scope at path '{1}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6272, - "codeText": "TS6272", - "title": "Invalid import specifier '{0}' has no possible resolutions.", - "category": "message", - "documentation": "" - }, - { - "code": 6273, - "codeText": "TS6273", - "title": "package.json scope '{0}' has no imports defined.", - "category": "message", - "documentation": "" - }, - { - "code": 6274, - "codeText": "TS6274", - "title": "package.json scope '{0}' explicitly maps specifier '{1}' to null.", - "category": "message", - "documentation": "" - }, - { - "code": 6275, - "codeText": "TS6275", - "title": "package.json scope '{0}' has invalid type for target of specifier '{1}'", - "category": "message", - "documentation": "" - }, - { - "code": 6276, - "codeText": "TS6276", - "title": "Export specifier '{0}' does not exist in package.json scope at path '{1}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6277, - "codeText": "TS6277", - "title": "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", - "category": "message", - "documentation": "" - }, - { - "code": 6278, - "codeText": "TS6278", - "title": "There are types at '{0}', but this result could not be resolved when respecting package.json \"exports\". The '{1}' library may need to update its package.json or typings.", - "category": "message", - "documentation": "" - }, - { - "code": 6302, - "codeText": "TS6302", - "title": "Enable project compilation", - "category": "message", - "documentation": "" - }, - { - "code": 6304, - "codeText": "TS6304", - "title": "Composite projects may not disable declaration emit.", - "category": "error", - "documentation": "" - }, - { - "code": 6305, - "codeText": "TS6305", - "title": "Output file '{0}' has not been built from source file '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 6306, - "codeText": "TS6306", - "title": "Referenced project '{0}' must have setting \"composite\": true.", - "category": "error", - "documentation": "" - }, - { - "code": 6307, - "codeText": "TS6307", - "title": "File '{0}' is not listed within the file list of project '{1}'. Projects must list all files or use an 'include' pattern.", - "category": "error", - "documentation": "" - }, - { - "code": 6308, - "codeText": "TS6308", - "title": "Cannot prepend project '{0}' because it does not have 'outFile' set", - "category": "error", - "documentation": "" - }, - { - "code": 6309, - "codeText": "TS6309", - "title": "Output file '{0}' from project '{1}' does not exist", - "category": "error", - "documentation": "" - }, - { - "code": 6310, - "codeText": "TS6310", - "title": "Referenced project '{0}' may not disable emit.", - "category": "error", - "documentation": "" - }, - { - "code": 6350, - "codeText": "TS6350", - "title": "Project '{0}' is out of date because output '{1}' is older than input '{2}'", - "category": "message", - "documentation": "" - }, - { - "code": 6351, - "codeText": "TS6351", - "title": "Project '{0}' is up to date because newest input '{1}' is older than output '{2}'", - "category": "message", - "documentation": "" - }, - { - "code": 6352, - "codeText": "TS6352", - "title": "Project '{0}' is out of date because output file '{1}' does not exist", - "category": "message", - "documentation": "" - }, - { - "code": 6353, - "codeText": "TS6353", - "title": "Project '{0}' is out of date because its dependency '{1}' is out of date", - "category": "message", - "documentation": "" - }, - { - "code": 6354, - "codeText": "TS6354", - "title": "Project '{0}' is up to date with .d.ts files from its dependencies", - "category": "message", - "documentation": "" - }, - { - "code": 6355, - "codeText": "TS6355", - "title": "Projects in this build: {0}", - "category": "message", - "documentation": "" - }, - { - "code": 6356, - "codeText": "TS6356", - "title": "A non-dry build would delete the following files: {0}", - "category": "message", - "documentation": "" - }, - { - "code": 6357, - "codeText": "TS6357", - "title": "A non-dry build would build project '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 6358, - "codeText": "TS6358", - "title": "Building project '{0}'...", - "category": "message", - "documentation": "" - }, - { - "code": 6359, - "codeText": "TS6359", - "title": "Updating output timestamps of project '{0}'...", - "category": "message", - "documentation": "" - }, - { - "code": 6361, - "codeText": "TS6361", - "title": "Project '{0}' is up to date", - "category": "message", - "documentation": "" - }, - { - "code": 6362, - "codeText": "TS6362", - "title": "Skipping build of project '{0}' because its dependency '{1}' has errors", - "category": "message", - "documentation": "" - }, - { - "code": 6363, - "codeText": "TS6363", - "title": "Project '{0}' can't be built because its dependency '{1}' has errors", - "category": "message", - "documentation": "" - }, - { - "code": 6364, - "codeText": "TS6364", - "title": "Build one or more projects and their dependencies, if out of date", - "category": "message", - "documentation": "" - }, - { - "code": 6365, - "codeText": "TS6365", - "title": "Delete the outputs of all projects.", - "category": "message", - "documentation": "" - }, - { - "code": 6367, - "codeText": "TS6367", - "title": "Show what would be built (or deleted, if specified with '--clean')", - "category": "message", - "documentation": "" - }, - { - "code": 6369, - "codeText": "TS6369", - "title": "Option '--build' must be the first command line argument.", - "category": "error", - "documentation": "" - }, - { - "code": 6370, - "codeText": "TS6370", - "title": "Options '{0}' and '{1}' cannot be combined.", - "category": "error", - "documentation": "" - }, - { - "code": 6371, - "codeText": "TS6371", - "title": "Updating unchanged output timestamps of project '{0}'...", - "category": "message", - "documentation": "" - }, - { - "code": 6372, - "codeText": "TS6372", - "title": "Project '{0}' is out of date because output of its dependency '{1}' has changed", - "category": "message", - "documentation": "" - }, - { - "code": 6373, - "codeText": "TS6373", - "title": "Updating output of project '{0}'...", - "category": "message", - "documentation": "" - }, - { - "code": 6374, - "codeText": "TS6374", - "title": "A non-dry build would update timestamps for output of project '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 6375, - "codeText": "TS6375", - "title": "A non-dry build would update output of project '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 6376, - "codeText": "TS6376", - "title": "Cannot update output of project '{0}' because there was error reading file '{1}'", - "category": "message", - "documentation": "" - }, - { - "code": 6377, - "codeText": "TS6377", - "title": "Cannot write file '{0}' because it will overwrite '.tsbuildinfo' file generated by referenced project '{1}'", - "category": "error", - "documentation": "" - }, - { - "code": 6379, - "codeText": "TS6379", - "title": "Composite projects may not disable incremental compilation.", - "category": "error", - "documentation": "" - }, - { - "code": 6380, - "codeText": "TS6380", - "title": "Specify file to store incremental compilation information", - "category": "message", - "documentation": "" - }, - { - "code": 6381, - "codeText": "TS6381", - "title": "Project '{0}' is out of date because output for it was generated with version '{1}' that differs with current version '{2}'", - "category": "message", - "documentation": "" - }, - { - "code": 6382, - "codeText": "TS6382", - "title": "Skipping build of project '{0}' because its dependency '{1}' was not built", - "category": "message", - "documentation": "" - }, - { - "code": 6383, - "codeText": "TS6383", - "title": "Project '{0}' can't be built because its dependency '{1}' was not built", - "category": "message", - "documentation": "" - }, - { - "code": 6384, - "codeText": "TS6384", - "title": "Have recompiles in '--incremental' and '--watch' assume that changes within a file will only affect files directly depending on it.", - "category": "message", - "documentation": "" - }, - { - "code": 6385, - "codeText": "TS6385", - "title": "'{0}' is deprecated.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 6386, - "codeText": "TS6386", - "title": "Performance timings for '--diagnostics' or '--extendedDiagnostics' are not available in this session. A native implementation of the Web Performance API could not be found.", - "category": "message", - "documentation": "" - }, - { - "code": 6387, - "codeText": "TS6387", - "title": "The signature '{0}' of '{1}' is deprecated.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 6388, - "codeText": "TS6388", - "title": "Project '{0}' is being forcibly rebuilt", - "category": "message", - "documentation": "" - }, - { - "code": 6389, - "codeText": "TS6389", - "title": "Reusing resolution of module '{0}' from '{1}' of old program, it was not resolved.", - "category": "message", - "documentation": "" - }, - { - "code": 6390, - "codeText": "TS6390", - "title": "Reusing resolution of type reference directive '{0}' from '{1}' of old program, it was successfully resolved to '{2}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6391, - "codeText": "TS6391", - "title": "Reusing resolution of type reference directive '{0}' from '{1}' of old program, it was successfully resolved to '{2}' with Package ID '{3}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6392, - "codeText": "TS6392", - "title": "Reusing resolution of type reference directive '{0}' from '{1}' of old program, it was not resolved.", - "category": "message", - "documentation": "" - }, - { - "code": 6393, - "codeText": "TS6393", - "title": "Reusing resolution of module '{0}' from '{1}' found in cache from location '{2}', it was successfully resolved to '{3}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6394, - "codeText": "TS6394", - "title": "Reusing resolution of module '{0}' from '{1}' found in cache from location '{2}', it was successfully resolved to '{3}' with Package ID '{4}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6395, - "codeText": "TS6395", - "title": "Reusing resolution of module '{0}' from '{1}' found in cache from location '{2}', it was not resolved.", - "category": "message", - "documentation": "" - }, - { - "code": 6396, - "codeText": "TS6396", - "title": "Reusing resolution of type reference directive '{0}' from '{1}' found in cache from location '{2}', it was successfully resolved to '{3}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6397, - "codeText": "TS6397", - "title": "Reusing resolution of type reference directive '{0}' from '{1}' found in cache from location '{2}', it was successfully resolved to '{3}' with Package ID '{4}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6398, - "codeText": "TS6398", - "title": "Reusing resolution of type reference directive '{0}' from '{1}' found in cache from location '{2}', it was not resolved.", - "category": "message", - "documentation": "" - }, - { - "code": 6399, - "codeText": "TS6399", - "title": "Project '{0}' is out of date because buildinfo file '{1}' indicates that some of the changes were not emitted", - "category": "message", - "documentation": "" - }, - { - "code": 6400, - "codeText": "TS6400", - "title": "Project '{0}' is up to date but needs to update timestamps of output files that are older than input files", - "category": "message", - "documentation": "" - }, - { - "code": 6401, - "codeText": "TS6401", - "title": "Project '{0}' is out of date because there was error reading file '{1}'", - "category": "message", - "documentation": "" - }, - { - "code": 6402, - "codeText": "TS6402", - "title": "Resolving in {0} mode with conditions {1}.", - "category": "message", - "documentation": "" - }, - { - "code": 6403, - "codeText": "TS6403", - "title": "Matched '{0}' condition '{1}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6404, - "codeText": "TS6404", - "title": "Using '{0}' subpath '{1}' with target '{2}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6405, - "codeText": "TS6405", - "title": "Saw non-matching condition '{0}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6406, - "codeText": "TS6406", - "title": "Project '{0}' is out of date because buildinfo file '{1}' indicates there is change in compilerOptions", - "category": "message", - "documentation": "" - }, - { - "code": 6407, - "codeText": "TS6407", - "title": "Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set.", - "category": "message", - "documentation": "" - }, - { - "code": 6408, - "codeText": "TS6408", - "title": "Use the package.json 'exports' field when resolving package imports.", - "category": "message", - "documentation": "" - }, - { - "code": 6409, - "codeText": "TS6409", - "title": "Use the package.json 'imports' field when resolving imports.", - "category": "message", - "documentation": "" - }, - { - "code": 6410, - "codeText": "TS6410", - "title": "Conditions to set in addition to the resolver-specific defaults when resolving imports.", - "category": "message", - "documentation": "" - }, - { - "code": 6411, - "codeText": "TS6411", - "title": "`true` when 'moduleResolution' is 'node16', 'nodenext', or 'bundler'; otherwise `false`.", - "category": "message", - "documentation": "" - }, - { - "code": 6412, - "codeText": "TS6412", - "title": "Project '{0}' is out of date because buildinfo file '{1}' indicates that file '{2}' was root file of compilation but not any more.", - "category": "message", - "documentation": "" - }, - { - "code": 6413, - "codeText": "TS6413", - "title": "Entering conditional exports.", - "category": "message", - "documentation": "" - }, - { - "code": 6414, - "codeText": "TS6414", - "title": "Resolved under condition '{0}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6415, - "codeText": "TS6415", - "title": "Failed to resolve under condition '{0}'.", - "category": "message", - "documentation": "" - }, - { - "code": 6416, - "codeText": "TS6416", - "title": "Exiting conditional exports.", - "category": "message", - "documentation": "" - }, - { - "code": 6417, - "codeText": "TS6417", - "title": "Searching all ancestor node_modules directories for preferred extensions: {0}.", - "category": "message", - "documentation": "" - }, - { - "code": 6418, - "codeText": "TS6418", - "title": "Searching all ancestor node_modules directories for fallback extensions: {0}.", - "category": "message", - "documentation": "" - }, - { - "code": 6500, - "codeText": "TS6500", - "title": "The expected type comes from property '{0}' which is declared here on type '{1}'", - "category": "message", - "documentation": "" - }, - { - "code": 6501, - "codeText": "TS6501", - "title": "The expected type comes from this index signature.", - "category": "message", - "documentation": "" - }, - { - "code": 6502, - "codeText": "TS6502", - "title": "The expected type comes from the return type of this signature.", - "category": "message", - "documentation": "" - }, - { - "code": 6503, - "codeText": "TS6503", - "title": "Print names of files that are part of the compilation and then stop processing.", - "category": "message", - "documentation": "" - }, - { - "code": 6504, - "codeText": "TS6504", - "title": "File '{0}' is a JavaScript file. Did you mean to enable the 'allowJs' option?", - "category": "error", - "documentation": "" - }, - { - "code": 6505, - "codeText": "TS6505", - "title": "Print names of files and the reason they are part of the compilation.", - "category": "message", - "documentation": "" - }, - { - "code": 6506, - "codeText": "TS6506", - "title": "Consider adding a 'declare' modifier to this class.", - "category": "message", - "documentation": "" - }, - { - "code": 6600, - "codeText": "TS6600", - "title": "Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files.", - "category": "message", - "documentation": "" - }, - { - "code": 6601, - "codeText": "TS6601", - "title": "Allow 'import x from y' when a module doesn't have a default export.", - "category": "message", - "documentation": "" - }, - { - "code": 6602, - "codeText": "TS6602", - "title": "Allow accessing UMD globals from modules.", - "category": "message", - "documentation": "" - }, - { - "code": 6603, - "codeText": "TS6603", - "title": "Disable error reporting for unreachable code.", - "category": "message", - "documentation": "" - }, - { - "code": 6604, - "codeText": "TS6604", - "title": "Disable error reporting for unused labels.", - "category": "message", - "documentation": "" - }, - { - "code": 6605, - "codeText": "TS6605", - "title": "Ensure 'use strict' is always emitted.", - "category": "message", - "documentation": "" - }, - { - "code": 6606, - "codeText": "TS6606", - "title": "Have recompiles in projects that use 'incremental' and 'watch' mode assume that changes within a file will only affect files directly depending on it.", - "category": "message", - "documentation": "" - }, - { - "code": 6607, - "codeText": "TS6607", - "title": "Specify the base directory to resolve non-relative module names.", - "category": "message", - "documentation": "" - }, - { - "code": 6608, - "codeText": "TS6608", - "title": "No longer supported. In early versions, manually set the text encoding for reading files.", - "category": "message", - "documentation": "" - }, - { - "code": 6609, - "codeText": "TS6609", - "title": "Enable error reporting in type-checked JavaScript files.", - "category": "message", - "documentation": "" - }, - { - "code": 6611, - "codeText": "TS6611", - "title": "Enable constraints that allow a TypeScript project to be used with project references.", - "category": "message", - "documentation": "" - }, - { - "code": 6612, - "codeText": "TS6612", - "title": "Generate .d.ts files from TypeScript and JavaScript files in your project.", - "category": "message", - "documentation": "" - }, - { - "code": 6613, - "codeText": "TS6613", - "title": "Specify the output directory for generated declaration files.", - "category": "message", - "documentation": "" - }, - { - "code": 6614, - "codeText": "TS6614", - "title": "Create sourcemaps for d.ts files.", - "category": "message", - "documentation": "" - }, - { - "code": 6615, - "codeText": "TS6615", - "title": "Output compiler performance information after building.", - "category": "message", - "documentation": "" - }, - { - "code": 6616, - "codeText": "TS6616", - "title": "Disables inference for type acquisition by looking at filenames in a project.", - "category": "message", - "documentation": "" - }, - { - "code": 6617, - "codeText": "TS6617", - "title": "Reduce the number of projects loaded automatically by TypeScript.", - "category": "message", - "documentation": "" - }, - { - "code": 6618, - "codeText": "TS6618", - "title": "Remove the 20mb cap on total source code size for JavaScript files in the TypeScript language server.", - "category": "message", - "documentation": "" - }, - { - "code": 6619, - "codeText": "TS6619", - "title": "Opt a project out of multi-project reference checking when editing.", - "category": "message", - "documentation": "" - }, - { - "code": 6620, - "codeText": "TS6620", - "title": "Disable preferring source files instead of declaration files when referencing composite projects.", - "category": "message", - "documentation": "" - }, - { - "code": 6621, - "codeText": "TS6621", - "title": "Emit more compliant, but verbose and less performant JavaScript for iteration.", - "category": "message", - "documentation": "" - }, - { - "code": 6622, - "codeText": "TS6622", - "title": "Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files.", - "category": "message", - "documentation": "" - }, - { - "code": 6623, - "codeText": "TS6623", - "title": "Only output d.ts files and not JavaScript files.", - "category": "message", - "documentation": "" - }, - { - "code": 6624, - "codeText": "TS6624", - "title": "Emit design-type metadata for decorated declarations in source files.", - "category": "message", - "documentation": "" - }, - { - "code": 6625, - "codeText": "TS6625", - "title": "Disable the type acquisition for JavaScript projects", - "category": "message", - "documentation": "" - }, - { - "code": 6626, - "codeText": "TS6626", - "title": "Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility.", - "category": "message", - "documentation": "" - }, - { - "code": 6627, - "codeText": "TS6627", - "title": "Filters results from the `include` option.", - "category": "message", - "documentation": "" - }, - { - "code": 6628, - "codeText": "TS6628", - "title": "Remove a list of directories from the watch process.", - "category": "message", - "documentation": "" - }, - { - "code": 6629, - "codeText": "TS6629", - "title": "Remove a list of files from the watch mode's processing.", - "category": "message", - "documentation": "" - }, - { - "code": 6630, - "codeText": "TS6630", - "title": "Enable experimental support for TC39 stage 2 draft decorators.", - "category": "message", - "documentation": "" - }, - { - "code": 6631, - "codeText": "TS6631", - "title": "Print files read during the compilation including why it was included.", - "category": "message", - "documentation": "" - }, - { - "code": 6632, - "codeText": "TS6632", - "title": "Output more detailed compiler performance information after building.", - "category": "message", - "documentation": "" - }, - { - "code": 6633, - "codeText": "TS6633", - "title": "Specify one or more path or node module references to base configuration files from which settings are inherited.", - "category": "message", - "documentation": "" - }, - { - "code": 6634, - "codeText": "TS6634", - "title": "Specify what approach the watcher should use if the system runs out of native file watchers.", - "category": "message", - "documentation": "" - }, - { - "code": 6635, - "codeText": "TS6635", - "title": "Include a list of files. This does not support glob patterns, as opposed to `include`.", - "category": "message", - "documentation": "" - }, - { - "code": 6636, - "codeText": "TS6636", - "title": "Build all projects, including those that appear to be up to date.", - "category": "message", - "documentation": "" - }, - { - "code": 6637, - "codeText": "TS6637", - "title": "Ensure that casing is correct in imports.", - "category": "message", - "documentation": "" - }, - { - "code": 6638, - "codeText": "TS6638", - "title": "Emit a v8 CPU profile of the compiler run for debugging.", - "category": "message", - "documentation": "" - }, - { - "code": 6639, - "codeText": "TS6639", - "title": "Allow importing helper functions from tslib once per project, instead of including them per-file.", - "category": "message", - "documentation": "" - }, - { - "code": 6641, - "codeText": "TS6641", - "title": "Specify a list of glob patterns that match files to be included in compilation.", - "category": "message", - "documentation": "" - }, - { - "code": 6642, - "codeText": "TS6642", - "title": "Save .tsbuildinfo files to allow for incremental compilation of projects.", - "category": "message", - "documentation": "" - }, - { - "code": 6643, - "codeText": "TS6643", - "title": "Include sourcemap files inside the emitted JavaScript.", - "category": "message", - "documentation": "" - }, - { - "code": 6644, - "codeText": "TS6644", - "title": "Include source code in the sourcemaps inside the emitted JavaScript.", - "category": "message", - "documentation": "" - }, - { - "code": 6645, - "codeText": "TS6645", - "title": "Ensure that each file can be safely transpiled without relying on other imports.", - "category": "message", - "documentation": "" - }, - { - "code": 6646, - "codeText": "TS6646", - "title": "Specify what JSX code is generated.", - "category": "message", - "documentation": "" - }, - { - "code": 6647, - "codeText": "TS6647", - "title": "Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'.", - "category": "message", - "documentation": "" - }, - { - "code": 6648, - "codeText": "TS6648", - "title": "Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'.", - "category": "message", - "documentation": "" - }, - { - "code": 6649, - "codeText": "TS6649", - "title": "Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'.", - "category": "message", - "documentation": "" - }, - { - "code": 6650, - "codeText": "TS6650", - "title": "Make keyof only return strings instead of string, numbers or symbols. Legacy option.", - "category": "message", - "documentation": "" - }, - { - "code": 6651, - "codeText": "TS6651", - "title": "Specify a set of bundled library declaration files that describe the target runtime environment.", - "category": "message", - "documentation": "" - }, - { - "code": 6652, - "codeText": "TS6652", - "title": "Print the names of emitted files after a compilation.", - "category": "message", - "documentation": "" - }, - { - "code": 6653, - "codeText": "TS6653", - "title": "Print all of the files read during the compilation.", - "category": "message", - "documentation": "" - }, - { - "code": 6654, - "codeText": "TS6654", - "title": "Set the language of the messaging from TypeScript. This does not affect emit.", - "category": "message", - "documentation": "" - }, - { - "code": 6655, - "codeText": "TS6655", - "title": "Specify the location where debugger should locate map files instead of generated locations.", - "category": "message", - "documentation": "" - }, - { - "code": 6656, - "codeText": "TS6656", - "title": "Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'.", - "category": "message", - "documentation": "" - }, - { - "code": 6657, - "codeText": "TS6657", - "title": "Specify what module code is generated.", - "category": "message", - "documentation": "" - }, - { - "code": 6658, - "codeText": "TS6658", - "title": "Specify how TypeScript looks up a file from a given module specifier.", - "category": "message", - "documentation": "" - }, - { - "code": 6659, - "codeText": "TS6659", - "title": "Set the newline character for emitting files.", - "category": "message", - "documentation": "" - }, - { - "code": 6660, - "codeText": "TS6660", - "title": "Disable emitting files from a compilation.", - "category": "message", - "documentation": "" - }, - { - "code": 6661, - "codeText": "TS6661", - "title": "Disable generating custom helper functions like '__extends' in compiled output.", - "category": "message", - "documentation": "" - }, - { - "code": 6662, - "codeText": "TS6662", - "title": "Disable emitting files if any type checking errors are reported.", - "category": "message", - "documentation": "" - }, - { - "code": 6663, - "codeText": "TS6663", - "title": "Disable truncating types in error messages.", - "category": "message", - "documentation": "" - }, - { - "code": 6664, - "codeText": "TS6664", - "title": "Enable error reporting for fallthrough cases in switch statements.", - "category": "message", - "documentation": "" - }, - { - "code": 6665, - "codeText": "TS6665", - "title": "Enable error reporting for expressions and declarations with an implied 'any' type.", - "category": "message", - "documentation": "" - }, - { - "code": 6666, - "codeText": "TS6666", - "title": "Ensure overriding members in derived classes are marked with an override modifier.", - "category": "message", - "documentation": "" - }, - { - "code": 6667, - "codeText": "TS6667", - "title": "Enable error reporting for codepaths that do not explicitly return in a function.", - "category": "message", - "documentation": "" - }, - { - "code": 6668, - "codeText": "TS6668", - "title": "Enable error reporting when 'this' is given the type 'any'.", - "category": "message", - "documentation": "" - }, - { - "code": 6669, - "codeText": "TS6669", - "title": "Disable adding 'use strict' directives in emitted JavaScript files.", - "category": "message", - "documentation": "" - }, - { - "code": 6670, - "codeText": "TS6670", - "title": "Disable including any library files, including the default lib.d.ts.", - "category": "message", - "documentation": "" - }, - { - "code": 6671, - "codeText": "TS6671", - "title": "Enforces using indexed accessors for keys declared using an indexed type.", - "category": "message", - "documentation": "" - }, - { - "code": 6672, - "codeText": "TS6672", - "title": "Disallow 'import's, 'require's or ''s from expanding the number of files TypeScript should add to a project.", - "category": "message", - "documentation": "" - }, - { - "code": 6673, - "codeText": "TS6673", - "title": "Disable strict checking of generic signatures in function types.", - "category": "message", - "documentation": "" - }, - { - "code": 6674, - "codeText": "TS6674", - "title": "Add 'undefined' to a type when accessed using an index.", - "category": "message", - "documentation": "" - }, - { - "code": 6675, - "codeText": "TS6675", - "title": "Enable error reporting when local variables aren't read.", - "category": "message", - "documentation": "" - }, - { - "code": 6676, - "codeText": "TS6676", - "title": "Raise an error when a function parameter isn't read.", - "category": "message", - "documentation": "" - }, - { - "code": 6677, - "codeText": "TS6677", - "title": "Deprecated setting. Use 'outFile' instead.", - "category": "message", - "documentation": "" - }, - { - "code": 6678, - "codeText": "TS6678", - "title": "Specify an output folder for all emitted files.", - "category": "message", - "documentation": "" - }, - { - "code": 6679, - "codeText": "TS6679", - "title": "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.", - "category": "message", - "documentation": "" - }, - { - "code": 6680, - "codeText": "TS6680", - "title": "Specify a set of entries that re-map imports to additional lookup locations.", - "category": "message", - "documentation": "" - }, - { - "code": 6681, - "codeText": "TS6681", - "title": "Specify a list of language service plugins to include.", - "category": "message", - "documentation": "" - }, - { - "code": 6682, - "codeText": "TS6682", - "title": "Disable erasing 'const enum' declarations in generated code.", - "category": "message", - "documentation": "" - }, - { - "code": 6683, - "codeText": "TS6683", - "title": "Disable resolving symlinks to their realpath. This correlates to the same flag in node.", - "category": "message", - "documentation": "" - }, - { - "code": 6684, - "codeText": "TS6684", - "title": "Disable wiping the console in watch mode.", - "category": "message", - "documentation": "" - }, - { - "code": 6685, - "codeText": "TS6685", - "title": "Enable color and formatting in TypeScript's output to make compiler errors easier to read.", - "category": "message", - "documentation": "" - }, - { - "code": 6686, - "codeText": "TS6686", - "title": "Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit.", - "category": "message", - "documentation": "" - }, - { - "code": 6687, - "codeText": "TS6687", - "title": "Specify an array of objects that specify paths for projects. Used in project references.", - "category": "message", - "documentation": "" - }, - { - "code": 6688, - "codeText": "TS6688", - "title": "Disable emitting comments.", - "category": "message", - "documentation": "" - }, - { - "code": 6689, - "codeText": "TS6689", - "title": "Enable importing .json files.", - "category": "message", - "documentation": "" - }, - { - "code": 6690, - "codeText": "TS6690", - "title": "Specify the root folder within your source files.", - "category": "message", - "documentation": "" - }, - { - "code": 6691, - "codeText": "TS6691", - "title": "Allow multiple folders to be treated as one when resolving modules.", - "category": "message", - "documentation": "" - }, - { - "code": 6692, - "codeText": "TS6692", - "title": "Skip type checking .d.ts files that are included with TypeScript.", - "category": "message", - "documentation": "" - }, - { - "code": 6693, - "codeText": "TS6693", - "title": "Skip type checking all .d.ts files.", - "category": "message", - "documentation": "" - }, - { - "code": 6694, - "codeText": "TS6694", - "title": "Create source map files for emitted JavaScript files.", - "category": "message", - "documentation": "" - }, - { - "code": 6695, - "codeText": "TS6695", - "title": "Specify the root path for debuggers to find the reference source code.", - "category": "message", - "documentation": "" - }, - { - "code": 6697, - "codeText": "TS6697", - "title": "Check that the arguments for 'bind', 'call', and 'apply' methods match the original function.", - "category": "message", - "documentation": "" - }, - { - "code": 6698, - "codeText": "TS6698", - "title": "When assigning functions, check to ensure parameters and the return values are subtype-compatible.", - "category": "message", - "documentation": "" - }, - { - "code": 6699, - "codeText": "TS6699", - "title": "When type checking, take into account 'null' and 'undefined'.", - "category": "message", - "documentation": "" - }, - { - "code": 6700, - "codeText": "TS6700", - "title": "Check for class properties that are declared but not set in the constructor.", - "category": "message", - "documentation": "" - }, - { - "code": 6701, - "codeText": "TS6701", - "title": "Disable emitting declarations that have '@internal' in their JSDoc comments.", - "category": "message", - "documentation": "" - }, - { - "code": 6702, - "codeText": "TS6702", - "title": "Disable reporting of excess property errors during the creation of object literals.", - "category": "message", - "documentation": "" - }, - { - "code": 6703, - "codeText": "TS6703", - "title": "Suppress 'noImplicitAny' errors when indexing objects that lack index signatures.", - "category": "message", - "documentation": "" - }, - { - "code": 6704, - "codeText": "TS6704", - "title": "Synchronously call callbacks and update the state of directory watchers on platforms that don`t support recursive watching natively.", - "category": "message", - "documentation": "" - }, - { - "code": 6705, - "codeText": "TS6705", - "title": "Set the JavaScript language version for emitted JavaScript and include compatible library declarations.", - "category": "message", - "documentation": "" - }, - { - "code": 6706, - "codeText": "TS6706", - "title": "Log paths used during the 'moduleResolution' process.", - "category": "message", - "documentation": "" - }, - { - "code": 6707, - "codeText": "TS6707", - "title": "Specify the path to .tsbuildinfo incremental compilation file.", - "category": "message", - "documentation": "" - }, - { - "code": 6709, - "codeText": "TS6709", - "title": "Specify options for automatic acquisition of declaration files.", - "category": "message", - "documentation": "" - }, - { - "code": 6710, - "codeText": "TS6710", - "title": "Specify multiple folders that act like './node_modules/@types'.", - "category": "message", - "documentation": "" - }, - { - "code": 6711, - "codeText": "TS6711", - "title": "Specify type package names to be included without being referenced in a source file.", - "category": "message", - "documentation": "" - }, - { - "code": 6712, - "codeText": "TS6712", - "title": "Emit ECMAScript-standard-compliant class fields.", - "category": "message", - "documentation": "" - }, - { - "code": 6713, - "codeText": "TS6713", - "title": "Enable verbose logging.", - "category": "message", - "documentation": "" - }, - { - "code": 6714, - "codeText": "TS6714", - "title": "Specify how directories are watched on systems that lack recursive file-watching functionality.", - "category": "message", - "documentation": "" - }, - { - "code": 6715, - "codeText": "TS6715", - "title": "Specify how the TypeScript watch mode works.", - "category": "message", - "documentation": "" - }, - { - "code": 6717, - "codeText": "TS6717", - "title": "Require undeclared properties from index signatures to use element accesses.", - "category": "message", - "documentation": "" - }, - { - "code": 6718, - "codeText": "TS6718", - "title": "Specify emit/checking behavior for imports that are only used for types.", - "category": "message", - "documentation": "" - }, - { - "code": 6803, - "codeText": "TS6803", - "title": "Default catch clause variables as 'unknown' instead of 'any'.", - "category": "message", - "documentation": "" - }, - { - "code": 6804, - "codeText": "TS6804", - "title": "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.", - "category": "message", - "documentation": "" - }, - { - "code": 6900, - "codeText": "TS6900", - "title": "one of:", - "category": "message", - "documentation": "" - }, - { - "code": 6901, - "codeText": "TS6901", - "title": "one or more:", - "category": "message", - "documentation": "" - }, - { - "code": 6902, - "codeText": "TS6902", - "title": "type:", - "category": "message", - "documentation": "" - }, - { - "code": 6903, - "codeText": "TS6903", - "title": "default:", - "category": "message", - "documentation": "" - }, - { - "code": 6904, - "codeText": "TS6904", - "title": "module === \"system\" or esModuleInterop", - "category": "message", - "documentation": "" - }, - { - "code": 6905, - "codeText": "TS6905", - "title": "`false`, unless `strict` is set", - "category": "message", - "documentation": "" - }, - { - "code": 6906, - "codeText": "TS6906", - "title": "`false`, unless `composite` is set", - "category": "message", - "documentation": "" - }, - { - "code": 6907, - "codeText": "TS6907", - "title": "`[\"node_modules\", \"bower_components\", \"jspm_packages\"]`, plus the value of `outDir` if one is specified.", - "category": "message", - "documentation": "" - }, - { - "code": 6908, - "codeText": "TS6908", - "title": "`[]` if `files` is specified, otherwise `[\"**/*\"]`", - "category": "message", - "documentation": "" - }, - { - "code": 6909, - "codeText": "TS6909", - "title": "`true` if `composite`, `false` otherwise", - "category": "message", - "documentation": "" - }, - { - "code": 6911, - "codeText": "TS6911", - "title": "Computed from the list of input files", - "category": "message", - "documentation": "" - }, - { - "code": 6912, - "codeText": "TS6912", - "title": "Platform specific", - "category": "message", - "documentation": "" - }, - { - "code": 6913, - "codeText": "TS6913", - "title": "You can learn about all of the compiler options at {0}", - "category": "message", - "documentation": "" - }, - { - "code": 6914, - "codeText": "TS6914", - "title": "Including --watch, -w will start watching the current project for the file changes. Once set, you can config watch mode with:", - "category": "message", - "documentation": "" - }, - { - "code": 6915, - "codeText": "TS6915", - "title": "Using --build, -b will make tsc behave more like a build orchestrator than a compiler. This is used to trigger building composite projects which you can learn more about at {0}", - "category": "message", - "documentation": "" - }, - { - "code": 6916, - "codeText": "TS6916", - "title": "COMMON COMMANDS", - "category": "message", - "documentation": "" - }, - { - "code": 6917, - "codeText": "TS6917", - "title": "ALL COMPILER OPTIONS", - "category": "message", - "documentation": "" - }, - { - "code": 6918, - "codeText": "TS6918", - "title": "WATCH OPTIONS", - "category": "message", - "documentation": "" - }, - { - "code": 6919, - "codeText": "TS6919", - "title": "BUILD OPTIONS", - "category": "message", - "documentation": "" - }, - { - "code": 6920, - "codeText": "TS6920", - "title": "COMMON COMPILER OPTIONS", - "category": "message", - "documentation": "" - }, - { - "code": 6921, - "codeText": "TS6921", - "title": "COMMAND LINE FLAGS", - "category": "message", - "documentation": "" - }, - { - "code": 6922, - "codeText": "TS6922", - "title": "tsc: The TypeScript Compiler", - "category": "message", - "documentation": "" - }, - { - "code": 6923, - "codeText": "TS6923", - "title": "Compiles the current project (tsconfig.json in the working directory.)", - "category": "message", - "documentation": "" - }, - { - "code": 6924, - "codeText": "TS6924", - "title": "Ignoring tsconfig.json, compiles the specified files with default compiler options.", - "category": "message", - "documentation": "" - }, - { - "code": 6925, - "codeText": "TS6925", - "title": "Build a composite project in the working directory.", - "category": "message", - "documentation": "" - }, - { - "code": 6926, - "codeText": "TS6926", - "title": "Creates a tsconfig.json with the recommended settings in the working directory.", - "category": "message", - "documentation": "" - }, - { - "code": 6927, - "codeText": "TS6927", - "title": "Compiles the TypeScript project located at the specified path.", - "category": "message", - "documentation": "" - }, - { - "code": 6928, - "codeText": "TS6928", - "title": "An expanded version of this information, showing all possible compiler options", - "category": "message", - "documentation": "" - }, - { - "code": 6929, - "codeText": "TS6929", - "title": "Compiles the current project, with additional settings.", - "category": "message", - "documentation": "" - }, - { - "code": 6930, - "codeText": "TS6930", - "title": "`true` for ES2022 and above, including ESNext.", - "category": "message", - "documentation": "" - }, - { - "code": 6931, - "codeText": "TS6931", - "title": "List of file name suffixes to search when resolving a module.", - "category": "error", - "documentation": "" - }, - { - "code": 7005, - "codeText": "TS7005", - "title": "Variable '{0}' implicitly has an '{1}' type.", - "category": "error", - "documentation": "" - }, - { - "code": 7006, - "codeText": "TS7006", - "title": "Parameter '{0}' implicitly has an '{1}' type.", - "category": "error", - "documentation": "" - }, - { - "code": 7008, - "codeText": "TS7008", - "title": "Member '{0}' implicitly has an '{1}' type.", - "category": "error", - "documentation": "" - }, - { - "code": 7009, - "codeText": "TS7009", - "title": "'new' expression, whose target lacks a construct signature, implicitly has an 'any' type.", - "category": "error", - "documentation": "" - }, - { - "code": 7010, - "codeText": "TS7010", - "title": "'{0}', which lacks return-type annotation, implicitly has an '{1}' return type.", - "category": "error", - "documentation": "" - }, - { - "code": 7011, - "codeText": "TS7011", - "title": "Function expression, which lacks return-type annotation, implicitly has an '{0}' return type.", - "category": "error", - "documentation": "" - }, - { - "code": 7012, - "codeText": "TS7012", - "title": "This overload implicitly returns the type '{0}' because it lacks a return type annotation.", - "category": "error", - "documentation": "" - }, - { - "code": 7013, - "codeText": "TS7013", - "title": "Construct signature, which lacks return-type annotation, implicitly has an 'any' return type.", - "category": "error", - "documentation": "" - }, - { - "code": 7014, - "codeText": "TS7014", - "title": "Function type, which lacks return-type annotation, implicitly has an '{0}' return type.", - "category": "error", - "documentation": "" - }, - { - "code": 7015, - "codeText": "TS7015", - "title": "Element implicitly has an 'any' type because index expression is not of type 'number'.", - "category": "error", - "documentation": "" - }, - { - "code": 7016, - "codeText": "TS7016", - "title": "Could not find a declaration file for module '{0}'. '{1}' implicitly has an 'any' type.", - "category": "error", - "documentation": "" - }, - { - "code": 7017, - "codeText": "TS7017", - "title": "Element implicitly has an 'any' type because type '{0}' has no index signature.", - "category": "error", - "documentation": "" - }, - { - "code": 7018, - "codeText": "TS7018", - "title": "Object literal's property '{0}' implicitly has an '{1}' type.", - "category": "error", - "documentation": "" - }, - { - "code": 7019, - "codeText": "TS7019", - "title": "Rest parameter '{0}' implicitly has an 'any[]' type.", - "category": "error", - "documentation": "" - }, - { - "code": 7020, - "codeText": "TS7020", - "title": "Call signature, which lacks return-type annotation, implicitly has an 'any' return type.", - "category": "error", - "documentation": "" - }, - { - "code": 7022, - "codeText": "TS7022", - "title": "'{0}' implicitly has type 'any' because it does not have a type annotation and is referenced directly or indirectly in its own initializer.", - "category": "error", - "documentation": "" - }, - { - "code": 7023, - "codeText": "TS7023", - "title": "'{0}' implicitly has return type 'any' because it does not have a return type annotation and is referenced directly or indirectly in one of its return expressions.", - "category": "error", - "documentation": "" - }, - { - "code": 7024, - "codeText": "TS7024", - "title": "Function implicitly has return type 'any' because it does not have a return type annotation and is referenced directly or indirectly in one of its return expressions.", - "category": "error", - "documentation": "" - }, - { - "code": 7025, - "codeText": "TS7025", - "title": "Generator implicitly has yield type '{0}' because it does not yield any values. Consider supplying a return type annotation.", - "category": "error", - "documentation": "" - }, - { - "code": 7026, - "codeText": "TS7026", - "title": "JSX element implicitly has type 'any' because no interface 'JSX.{0}' exists.", - "category": "error", - "documentation": "" - }, - { - "code": 7027, - "codeText": "TS7027", - "title": "Unreachable code detected.", - "category": "error", - "documentation": "" - }, - { - "code": 7028, - "codeText": "TS7028", - "title": "Unused label.", - "category": "error", - "documentation": "" - }, - { - "code": 7029, - "codeText": "TS7029", - "title": "Fallthrough case in switch.", - "category": "error", - "documentation": "" - }, - { - "code": 7030, - "codeText": "TS7030", - "title": "Not all code paths return a value.", - "category": "error", - "documentation": "" - }, - { - "code": 7031, - "codeText": "TS7031", - "title": "Binding element '{0}' implicitly has an '{1}' type.", - "category": "error", - "documentation": "" - }, - { - "code": 7032, - "codeText": "TS7032", - "title": "Property '{0}' implicitly has type 'any', because its set accessor lacks a parameter type annotation.", - "category": "error", - "documentation": "" - }, - { - "code": 7033, - "codeText": "TS7033", - "title": "Property '{0}' implicitly has type 'any', because its get accessor lacks a return type annotation.", - "category": "error", - "documentation": "" - }, - { - "code": 7034, - "codeText": "TS7034", - "title": "Variable '{0}' implicitly has type '{1}' in some locations where its type cannot be determined.", - "category": "error", - "documentation": "" - }, - { - "code": 7035, - "codeText": "TS7035", - "title": "Try `npm i --save-dev @types/{1}` if it exists or add a new declaration (.d.ts) file containing `declare module '{0}';`", - "category": "error", - "documentation": "" - }, - { - "code": 7036, - "codeText": "TS7036", - "title": "Dynamic import's specifier must be of type 'string', but here has type '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 7037, - "codeText": "TS7037", - "title": "Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'.", - "category": "message", - "documentation": "" - }, - { - "code": 7038, - "codeText": "TS7038", - "title": "Type originates at this import. A namespace-style import cannot be called or constructed, and will cause a failure at runtime. Consider using a default import or import require here instead.", - "category": "message", - "documentation": "" - }, - { - "code": 7039, - "codeText": "TS7039", - "title": "Mapped object type implicitly has an 'any' template type.", - "category": "error", - "documentation": "" - }, - { - "code": 7040, - "codeText": "TS7040", - "title": "If the '{0}' package actually exposes this module, consider sending a pull request to amend 'https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/{1}'", - "category": "error", - "documentation": "" - }, - { - "code": 7041, - "codeText": "TS7041", - "title": "The containing arrow function captures the global value of 'this'.", - "category": "error", - "documentation": "" - }, - { - "code": 7042, - "codeText": "TS7042", - "title": "Module '{0}' was resolved to '{1}', but '--resolveJsonModule' is not used.", - "category": "error", - "documentation": "" - }, - { - "code": 7043, - "codeText": "TS7043", - "title": "Variable '{0}' implicitly has an '{1}' type, but a better type may be inferred from usage.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 7044, - "codeText": "TS7044", - "title": "Parameter '{0}' implicitly has an '{1}' type, but a better type may be inferred from usage.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 7045, - "codeText": "TS7045", - "title": "Member '{0}' implicitly has an '{1}' type, but a better type may be inferred from usage.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 7046, - "codeText": "TS7046", - "title": "Variable '{0}' implicitly has type '{1}' in some locations, but a better type may be inferred from usage.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 7047, - "codeText": "TS7047", - "title": "Rest parameter '{0}' implicitly has an 'any[]' type, but a better type may be inferred from usage.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 7048, - "codeText": "TS7048", - "title": "Property '{0}' implicitly has type 'any', but a better type for its get accessor may be inferred from usage.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 7049, - "codeText": "TS7049", - "title": "Property '{0}' implicitly has type 'any', but a better type for its set accessor may be inferred from usage.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 7050, - "codeText": "TS7050", - "title": "'{0}' implicitly has an '{1}' return type, but a better type may be inferred from usage.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 7051, - "codeText": "TS7051", - "title": "Parameter has a name but no type. Did you mean '{0}: {1}'?", - "category": "error", - "documentation": "" - }, - { - "code": 7052, - "codeText": "TS7052", - "title": "Element implicitly has an 'any' type because type '{0}' has no index signature. Did you mean to call '{1}'?", - "category": "error", - "documentation": "" - }, - { - "code": 7053, - "codeText": "TS7053", - "title": "Element implicitly has an 'any' type because expression of type '{0}' can't be used to index type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 7054, - "codeText": "TS7054", - "title": "No index signature with a parameter of type '{0}' was found on type '{1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 7055, - "codeText": "TS7055", - "title": "'{0}', which lacks return-type annotation, implicitly has an '{1}' yield type.", - "category": "error", - "documentation": "" - }, - { - "code": 7056, - "codeText": "TS7056", - "title": "The inferred type of this node exceeds the maximum length the compiler will serialize. An explicit type annotation is needed.", - "category": "error", - "documentation": "" - }, - { - "code": 7057, - "codeText": "TS7057", - "title": "'yield' expression implicitly results in an 'any' type because its containing generator lacks a return-type annotation.", - "category": "error", - "documentation": "" - }, - { - "code": 7058, - "codeText": "TS7058", - "title": "If the '{0}' package actually exposes this module, try adding a new declaration (.d.ts) file containing `declare module '{1}';`", - "category": "error", - "documentation": "" - }, - { - "code": 7059, - "codeText": "TS7059", - "title": "This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead.", - "category": "error", - "documentation": "" - }, - { - "code": 7060, - "codeText": "TS7060", - "title": "This syntax is reserved in files with the .mts or .cts extension. Add a trailing comma or explicit constraint.", - "category": "error", - "documentation": "" - }, - { - "code": 7061, - "codeText": "TS7061", - "title": "A mapped type may not declare properties or methods.", - "category": "error", - "documentation": "" - }, - { - "code": 8000, - "codeText": "TS8000", - "title": "You cannot rename this element.", - "category": "error", - "documentation": "" - }, - { - "code": 8001, - "codeText": "TS8001", - "title": "You cannot rename elements that are defined in the standard TypeScript library.", - "category": "error", - "documentation": "" - }, - { - "code": 8002, - "codeText": "TS8002", - "title": "'import ... =' can only be used in TypeScript files.", - "category": "error", - "documentation": "" - }, - { - "code": 8003, - "codeText": "TS8003", - "title": "'export =' can only be used in TypeScript files.", - "category": "error", - "documentation": "" - }, - { - "code": 8004, - "codeText": "TS8004", - "title": "Type parameter declarations can only be used in TypeScript files.", - "category": "error", - "documentation": "" - }, - { - "code": 8005, - "codeText": "TS8005", - "title": "'implements' clauses can only be used in TypeScript files.", - "category": "error", - "documentation": "" - }, - { - "code": 8006, - "codeText": "TS8006", - "title": "'{0}' declarations can only be used in TypeScript files.", - "category": "error", - "documentation": "" - }, - { - "code": 8008, - "codeText": "TS8008", - "title": "Type aliases can only be used in TypeScript files.", - "category": "error", - "documentation": "" - }, - { - "code": 8009, - "codeText": "TS8009", - "title": "The '{0}' modifier can only be used in TypeScript files.", - "category": "error", - "documentation": "" - }, - { - "code": 8010, - "codeText": "TS8010", - "title": "Type annotations can only be used in TypeScript files.", - "category": "error", - "documentation": "" - }, - { - "code": 8011, - "codeText": "TS8011", - "title": "Type arguments can only be used in TypeScript files.", - "category": "error", - "documentation": "" - }, - { - "code": 8012, - "codeText": "TS8012", - "title": "Parameter modifiers can only be used in TypeScript files.", - "category": "error", - "documentation": "" - }, - { - "code": 8013, - "codeText": "TS8013", - "title": "Non-null assertions can only be used in TypeScript files.", - "category": "error", - "documentation": "" - }, - { - "code": 8016, - "codeText": "TS8016", - "title": "Type assertion expressions can only be used in TypeScript files.", - "category": "error", - "documentation": "" - }, - { - "code": 8017, - "codeText": "TS8017", - "title": "Octal literal types must use ES2015 syntax. Use the syntax '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 8018, - "codeText": "TS8018", - "title": "Octal literals are not allowed in enums members initializer. Use the syntax '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 8019, - "codeText": "TS8019", - "title": "Report errors in .js files.", - "category": "message", - "documentation": "" - }, - { - "code": 8020, - "codeText": "TS8020", - "title": "JSDoc types can only be used inside documentation comments.", - "category": "error", - "documentation": "" - }, - { - "code": 8021, - "codeText": "TS8021", - "title": "JSDoc '@typedef' tag should either have a type annotation or be followed by '@property' or '@member' tags.", - "category": "error", - "documentation": "" - }, - { - "code": 8022, - "codeText": "TS8022", - "title": "JSDoc '@{0}' is not attached to a class.", - "category": "error", - "documentation": "" - }, - { - "code": 8023, - "codeText": "TS8023", - "title": "JSDoc '@{0} {1}' does not match the 'extends {2}' clause.", - "category": "error", - "documentation": "" - }, - { - "code": 8024, - "codeText": "TS8024", - "title": "JSDoc '@param' tag has name '{0}', but there is no parameter with that name.", - "category": "error", - "documentation": "" - }, - { - "code": 8025, - "codeText": "TS8025", - "title": "Class declarations cannot have more than one '@augments' or '@extends' tag.", - "category": "error", - "documentation": "" - }, - { - "code": 8026, - "codeText": "TS8026", - "title": "Expected {0} type arguments; provide these with an '@extends' tag.", - "category": "error", - "documentation": "" - }, - { - "code": 8027, - "codeText": "TS8027", - "title": "Expected {0}-{1} type arguments; provide these with an '@extends' tag.", - "category": "error", - "documentation": "" - }, - { - "code": 8028, - "codeText": "TS8028", - "title": "JSDoc '...' may only appear in the last parameter of a signature.", - "category": "error", - "documentation": "" - }, - { - "code": 8029, - "codeText": "TS8029", - "title": "JSDoc '@param' tag has name '{0}', but there is no parameter with that name. It would match 'arguments' if it had an array type.", - "category": "error", - "documentation": "" - }, - { - "code": 8030, - "codeText": "TS8030", - "title": "The type of a function declaration must match the function's signature.", - "category": "error", - "documentation": "" - }, - { - "code": 8031, - "codeText": "TS8031", - "title": "You cannot rename a module via a global import.", - "category": "error", - "documentation": "" - }, - { - "code": 8032, - "codeText": "TS8032", - "title": "Qualified name '{0}' is not allowed without a leading '@param {object} {1}'.", - "category": "error", - "documentation": "" - }, - { - "code": 8033, - "codeText": "TS8033", - "title": "A JSDoc '@typedef' comment may not contain multiple '@type' tags.", - "category": "error", - "documentation": "" - }, - { - "code": 8034, - "codeText": "TS8034", - "title": "The tag was first specified here.", - "category": "error", - "documentation": "" - }, - { - "code": 8035, - "codeText": "TS8035", - "title": "You cannot rename elements that are defined in a 'node_modules' folder.", - "category": "error", - "documentation": "" - }, - { - "code": 8036, - "codeText": "TS8036", - "title": "You cannot rename elements that are defined in another 'node_modules' folder.", - "category": "error", - "documentation": "" - }, - { - "code": 8037, - "codeText": "TS8037", - "title": "Type satisfaction expressions can only be used in TypeScript files.", - "category": "error", - "documentation": "" - }, - { - "code": 8038, - "codeText": "TS8038", - "title": "Decorators must come after 'export' or 'export default' in JavaScript files.", - "category": "error", - "documentation": "" - }, - { - "code": 8039, - "codeText": "TS8039", - "title": "A JSDoc '@template' tag may not follow a '@typedef', '@callback', or '@overload' tag", - "category": "error", - "documentation": "" - }, - { - "code": 9005, - "codeText": "TS9005", - "title": "Declaration emit for this file requires using private name '{0}'. An explicit type annotation may unblock declaration emit.", - "category": "error", - "documentation": "" - }, - { - "code": 9006, - "codeText": "TS9006", - "title": "Declaration emit for this file requires using private name '{0}' from module '{1}'. An explicit type annotation may unblock declaration emit.", - "category": "error", - "documentation": "" - }, - { - "code": 17000, - "codeText": "TS17000", - "title": "JSX attributes must only be assigned a non-empty 'expression'.", - "category": "error", - "documentation": "" - }, - { - "code": 17001, - "codeText": "TS17001", - "title": "JSX elements cannot have multiple attributes with the same name.", - "category": "error", - "documentation": "" - }, - { - "code": 17002, - "codeText": "TS17002", - "title": "Expected corresponding JSX closing tag for '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 17004, - "codeText": "TS17004", - "title": "Cannot use JSX unless the '--jsx' flag is provided.", - "category": "error", - "documentation": "" - }, - { - "code": 17005, - "codeText": "TS17005", - "title": "A constructor cannot contain a 'super' call when its class extends 'null'.", - "category": "error", - "documentation": "" - }, - { - "code": 17006, - "codeText": "TS17006", - "title": "An unary expression with the '{0}' operator is not allowed in the left-hand side of an exponentiation expression. Consider enclosing the expression in parentheses.", - "category": "error", - "documentation": "" - }, - { - "code": 17007, - "codeText": "TS17007", - "title": "A type assertion expression is not allowed in the left-hand side of an exponentiation expression. Consider enclosing the expression in parentheses.", - "category": "error", - "documentation": "" - }, - { - "code": 17008, - "codeText": "TS17008", - "title": "JSX element '{0}' has no corresponding closing tag.", - "category": "error", - "documentation": "" - }, - { - "code": 17009, - "codeText": "TS17009", - "title": "'super' must be called before accessing 'this' in the constructor of a derived class.", - "category": "error", - "documentation": "" - }, - { - "code": 17010, - "codeText": "TS17010", - "title": "Unknown type acquisition option '{0}'.", - "category": "error", - "documentation": "" - }, - { - "code": 17011, - "codeText": "TS17011", - "title": "'super' must be called before accessing a property of 'super' in the constructor of a derived class.", - "category": "error", - "documentation": "" - }, - { - "code": 17012, - "codeText": "TS17012", - "title": "'{0}' is not a valid meta-property for keyword '{1}'. Did you mean '{2}'?", - "category": "error", - "documentation": "" - }, - { - "code": 17013, - "codeText": "TS17013", - "title": "Meta-property '{0}' is only allowed in the body of a function declaration, function expression, or constructor.", - "category": "error", - "documentation": "" - }, - { - "code": 17014, - "codeText": "TS17014", - "title": "JSX fragment has no corresponding closing tag.", - "category": "error", - "documentation": "" - }, - { - "code": 17015, - "codeText": "TS17015", - "title": "Expected corresponding closing tag for JSX fragment.", - "category": "error", - "documentation": "" - }, - { - "code": 17016, - "codeText": "TS17016", - "title": "The 'jsxFragmentFactory' compiler option must be provided to use JSX fragments with the 'jsxFactory' compiler option.", - "category": "error", - "documentation": "" - }, - { - "code": 17017, - "codeText": "TS17017", - "title": "An @jsxFrag pragma is required when using an @jsx pragma with JSX fragments.", - "category": "error", - "documentation": "" - }, - { - "code": 17018, - "codeText": "TS17018", - "title": "Unknown type acquisition option '{0}'. Did you mean '{1}'?", - "category": "error", - "documentation": "" - }, - { - "code": 17019, - "codeText": "TS17019", - "title": "'{0}' at the end of a type is not valid TypeScript syntax. Did you mean to write '{1}'?", - "category": "error", - "documentation": "" - }, - { - "code": 17020, - "codeText": "TS17020", - "title": "'{0}' at the start of a type is not valid TypeScript syntax. Did you mean to write '{1}'?", - "category": "error", - "documentation": "" - }, - { - "code": 17021, - "codeText": "TS17021", - "title": "Unicode escape sequence cannot appear here.", - "category": "error", - "documentation": "" - }, - { - "code": 18000, - "codeText": "TS18000", - "title": "Circularity detected while resolving configuration: {0}", - "category": "error", - "documentation": "" - }, - { - "code": 18002, - "codeText": "TS18002", - "title": "The 'files' list in config file '{0}' is empty.", - "category": "error", - "documentation": "" - }, - { - "code": 18003, - "codeText": "TS18003", - "title": "No inputs were found in config file '{0}'. Specified 'include' paths were '{1}' and 'exclude' paths were '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 18004, - "codeText": "TS18004", - "title": "No value exists in scope for the shorthand property '{0}'. Either declare one or provide an initializer.", - "category": "error", - "documentation": "" - }, - { - "code": 18006, - "codeText": "TS18006", - "title": "Classes may not have a field named 'constructor'.", - "category": "error", - "documentation": "" - }, - { - "code": 18007, - "codeText": "TS18007", - "title": "JSX expressions may not use the comma operator. Did you mean to write an array?", - "category": "error", - "documentation": "" - }, - { - "code": 18009, - "codeText": "TS18009", - "title": "Private identifiers cannot be used as parameters.", - "category": "error", - "documentation": "" - }, - { - "code": 18010, - "codeText": "TS18010", - "title": "An accessibility modifier cannot be used with a private identifier.", - "category": "error", - "documentation": "" - }, - { - "code": 18011, - "codeText": "TS18011", - "title": "The operand of a 'delete' operator cannot be a private identifier.", - "category": "error", - "documentation": "" - }, - { - "code": 18012, - "codeText": "TS18012", - "title": "'#constructor' is a reserved word.", - "category": "error", - "documentation": "" - }, - { - "code": 18013, - "codeText": "TS18013", - "title": "Property '{0}' is not accessible outside class '{1}' because it has a private identifier.", - "category": "error", - "documentation": "" - }, - { - "code": 18014, - "codeText": "TS18014", - "title": "The property '{0}' cannot be accessed on type '{1}' within this class because it is shadowed by another private identifier with the same spelling.", - "category": "error", - "documentation": "" - }, - { - "code": 18015, - "codeText": "TS18015", - "title": "Property '{0}' in type '{1}' refers to a different member that cannot be accessed from within type '{2}'.", - "category": "error", - "documentation": "" - }, - { - "code": 18016, - "codeText": "TS18016", - "title": "Private identifiers are not allowed outside class bodies.", - "category": "error", - "documentation": "" - }, - { - "code": 18017, - "codeText": "TS18017", - "title": "The shadowing declaration of '{0}' is defined here", - "category": "error", - "documentation": "" - }, - { - "code": 18018, - "codeText": "TS18018", - "title": "The declaration of '{0}' that you probably intended to use is defined here", - "category": "error", - "documentation": "" - }, - { - "code": 18019, - "codeText": "TS18019", - "title": "'{0}' modifier cannot be used with a private identifier.", - "category": "error", - "documentation": "" - }, - { - "code": 18024, - "codeText": "TS18024", - "title": "An enum member cannot be named with a private identifier.", - "category": "error", - "documentation": "" - }, - { - "code": 18026, - "codeText": "TS18026", - "title": "'#!' can only be used at the start of a file.", - "category": "error", - "documentation": "" - }, - { - "code": 18027, - "codeText": "TS18027", - "title": "Compiler reserves name '{0}' when emitting private identifier downlevel.", - "category": "error", - "documentation": "" - }, - { - "code": 18028, - "codeText": "TS18028", - "title": "Private identifiers are only available when targeting ECMAScript 2015 and higher.", - "category": "error", - "documentation": "" - }, - { - "code": 18029, - "codeText": "TS18029", - "title": "Private identifiers are not allowed in variable declarations.", - "category": "error", - "documentation": "" - }, - { - "code": 18030, - "codeText": "TS18030", - "title": "An optional chain cannot contain private identifiers.", - "category": "error", - "documentation": "" - }, - { - "code": 18031, - "codeText": "TS18031", - "title": "The intersection '{0}' was reduced to 'never' because property '{1}' has conflicting types in some constituents.", - "category": "error", - "documentation": "" - }, - { - "code": 18032, - "codeText": "TS18032", - "title": "The intersection '{0}' was reduced to 'never' because property '{1}' exists in multiple constituents and is private in some.", - "category": "error", - "documentation": "" - }, - { - "code": 18033, - "codeText": "TS18033", - "title": "Type '{0}' is not assignable to type '{1}' as required for computed enum member values.", - "category": "error", - "documentation": "" - }, - { - "code": 18034, - "codeText": "TS18034", - "title": "Specify the JSX fragment factory function to use when targeting 'react' JSX emit with 'jsxFactory' compiler option is specified, e.g. 'Fragment'.", - "category": "message", - "documentation": "" - }, - { - "code": 18035, - "codeText": "TS18035", - "title": "Invalid value for 'jsxFragmentFactory'. '{0}' is not a valid identifier or qualified-name.", - "category": "error", - "documentation": "" - }, - { - "code": 18036, - "codeText": "TS18036", - "title": "Class decorators can't be used with static private identifier. Consider removing the experimental decorator.", - "category": "error", - "documentation": "" - }, - { - "code": 18037, - "codeText": "TS18037", - "title": "Await expression cannot be used inside a class static block.", - "category": "error", - "documentation": "" - }, - { - "code": 18038, - "codeText": "TS18038", - "title": "'For await' loops cannot be used inside a class static block.", - "category": "error", - "documentation": "" - }, - { - "code": 18039, - "codeText": "TS18039", - "title": "Invalid use of '{0}'. It cannot be used inside a class static block.", - "category": "error", - "documentation": "" - }, - { - "code": 18041, - "codeText": "TS18041", - "title": "A 'return' statement cannot be used inside a class static block.", - "category": "error", - "documentation": "" - }, - { - "code": 18042, - "codeText": "TS18042", - "title": "'{0}' is a type and cannot be imported in JavaScript files. Use '{1}' in a JSDoc type annotation.", - "category": "error", - "documentation": "" - }, - { - "code": 18043, - "codeText": "TS18043", - "title": "Types cannot appear in export declarations in JavaScript files.", - "category": "error", - "documentation": "" - }, - { - "code": 18044, - "codeText": "TS18044", - "title": "'{0}' is automatically exported here.", - "category": "message", - "documentation": "" - }, - { - "code": 18045, - "codeText": "TS18045", - "title": "Properties with the 'accessor' modifier are only available when targeting ECMAScript 2015 and higher.", - "category": "error", - "documentation": "" - }, - { - "code": 18046, - "codeText": "TS18046", - "title": "'{0}' is of type 'unknown'.", - "category": "error", - "documentation": "" - }, - { - "code": 18047, - "codeText": "TS18047", - "title": "'{0}' is possibly 'null'.", - "category": "error", - "documentation": "" - }, - { - "code": 18048, - "codeText": "TS18048", - "title": "'{0}' is possibly 'undefined'.", - "category": "error", - "documentation": "" - }, - { - "code": 18049, - "codeText": "TS18049", - "title": "'{0}' is possibly 'null' or 'undefined'.", - "category": "error", - "documentation": "" - }, - { - "code": 18050, - "codeText": "TS18050", - "title": "The value '{0}' cannot be used here.", - "category": "error", - "documentation": "" - }, - { - "code": 18051, - "codeText": "TS18051", - "title": "Compiler option '{0}' cannot be given an empty string.", - "category": "error", - "documentation": "" - }, - { - "code": 18052, - "codeText": "TS18052", - "title": "Non-abstract class '{0}' does not implement all abstract members of '{1}'", - "category": "error", - "documentation": "" - }, - { - "code": 18053, - "codeText": "TS18053", - "title": "Its type '{0}' is not a valid JSX element type.", - "category": "error", - "documentation": "" - }, - { - "code": 18054, - "codeText": "TS18054", - "title": "'await using' statements cannot be used inside a class static block.", - "category": "error", - "documentation": "" - }, - { - "code": 69010, - "codeText": "TS69010", - "title": "module === `AMD` or `UMD` or `System` or `ES6`, then `Classic`, Otherwise `Node`", - "category": "message", - "documentation": "" - }, - { - "code": 80001, - "codeText": "TS80001", - "title": "File is a CommonJS module; it may be converted to an ES module.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 80002, - "codeText": "TS80002", - "title": "This constructor function may be converted to a class declaration.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 80003, - "codeText": "TS80003", - "title": "Import may be converted to a default import.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 80004, - "codeText": "TS80004", - "title": "JSDoc types may be moved to TypeScript types.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 80005, - "codeText": "TS80005", - "title": "'require' call may be converted to an import.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 80006, - "codeText": "TS80006", - "title": "This may be converted to an async function.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 80007, - "codeText": "TS80007", - "title": "'await' has no effect on the type of this expression.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 80008, - "codeText": "TS80008", - "title": "Numeric literals with absolute values equal to 2^53 or greater are too large to be represented accurately as integers.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 80009, - "codeText": "TS80009", - "title": "JSDoc typedef may be converted to TypeScript type.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 80010, - "codeText": "TS80010", - "title": "JSDoc typedefs may be converted to TypeScript types.", - "category": "suggestion", - "documentation": "" - }, - { - "code": 90001, - "codeText": "TS90001", - "title": "Add missing 'super()' call", - "category": "message", - "documentation": "" - }, - { - "code": 90002, - "codeText": "TS90002", - "title": "Make 'super()' call the first statement in the constructor", - "category": "message", - "documentation": "" - }, - { - "code": 90003, - "codeText": "TS90003", - "title": "Change 'extends' to 'implements'", - "category": "message", - "documentation": "" - }, - { - "code": 90004, - "codeText": "TS90004", - "title": "Remove unused declaration for: '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 90005, - "codeText": "TS90005", - "title": "Remove import from '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 90006, - "codeText": "TS90006", - "title": "Implement interface '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 90007, - "codeText": "TS90007", - "title": "Implement inherited abstract class", - "category": "message", - "documentation": "" - }, - { - "code": 90008, - "codeText": "TS90008", - "title": "Add '{0}.' to unresolved variable", - "category": "message", - "documentation": "" - }, - { - "code": 90010, - "codeText": "TS90010", - "title": "Remove variable statement", - "category": "message", - "documentation": "" - }, - { - "code": 90011, - "codeText": "TS90011", - "title": "Remove template tag", - "category": "message", - "documentation": "" - }, - { - "code": 90012, - "codeText": "TS90012", - "title": "Remove type parameters", - "category": "message", - "documentation": "" - }, - { - "code": 90013, - "codeText": "TS90013", - "title": "Import '{0}' from \"{1}\"", - "category": "message", - "documentation": "" - }, - { - "code": 90014, - "codeText": "TS90014", - "title": "Change '{0}' to '{1}'", - "category": "message", - "documentation": "" - }, - { - "code": 90016, - "codeText": "TS90016", - "title": "Declare property '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 90017, - "codeText": "TS90017", - "title": "Add index signature for property '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 90018, - "codeText": "TS90018", - "title": "Disable checking for this file", - "category": "message", - "documentation": "" - }, - { - "code": 90019, - "codeText": "TS90019", - "title": "Ignore this error message", - "category": "message", - "documentation": "" - }, - { - "code": 90020, - "codeText": "TS90020", - "title": "Initialize property '{0}' in the constructor", - "category": "message", - "documentation": "" - }, - { - "code": 90021, - "codeText": "TS90021", - "title": "Initialize static property '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 90022, - "codeText": "TS90022", - "title": "Change spelling to '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 90023, - "codeText": "TS90023", - "title": "Declare method '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 90024, - "codeText": "TS90024", - "title": "Declare static method '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 90025, - "codeText": "TS90025", - "title": "Prefix '{0}' with an underscore", - "category": "message", - "documentation": "" - }, - { - "code": 90026, - "codeText": "TS90026", - "title": "Rewrite as the indexed access type '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 90027, - "codeText": "TS90027", - "title": "Declare static property '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 90028, - "codeText": "TS90028", - "title": "Call decorator expression", - "category": "message", - "documentation": "" - }, - { - "code": 90029, - "codeText": "TS90029", - "title": "Add async modifier to containing function", - "category": "message", - "documentation": "" - }, - { - "code": 90030, - "codeText": "TS90030", - "title": "Replace 'infer {0}' with 'unknown'", - "category": "message", - "documentation": "" - }, - { - "code": 90031, - "codeText": "TS90031", - "title": "Replace all unused 'infer' with 'unknown'", - "category": "message", - "documentation": "" - }, - { - "code": 90034, - "codeText": "TS90034", - "title": "Add parameter name", - "category": "message", - "documentation": "" - }, - { - "code": 90035, - "codeText": "TS90035", - "title": "Declare private property '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 90036, - "codeText": "TS90036", - "title": "Replace '{0}' with 'Promise<{1}>'", - "category": "message", - "documentation": "" - }, - { - "code": 90037, - "codeText": "TS90037", - "title": "Fix all incorrect return type of an async functions", - "category": "message", - "documentation": "" - }, - { - "code": 90038, - "codeText": "TS90038", - "title": "Declare private method '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 90039, - "codeText": "TS90039", - "title": "Remove unused destructuring declaration", - "category": "message", - "documentation": "" - }, - { - "code": 90041, - "codeText": "TS90041", - "title": "Remove unused declarations for: '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 90053, - "codeText": "TS90053", - "title": "Declare a private field named '{0}'.", - "category": "message", - "documentation": "" - }, - { - "code": 90054, - "codeText": "TS90054", - "title": "Includes imports of types referenced by '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 90055, - "codeText": "TS90055", - "title": "Remove 'type' from import declaration from \"{0}\"", - "category": "message", - "documentation": "" - }, - { - "code": 90056, - "codeText": "TS90056", - "title": "Remove 'type' from import of '{0}' from \"{1}\"", - "category": "message", - "documentation": "" - }, - { - "code": 90057, - "codeText": "TS90057", - "title": "Add import from \"{0}\"", - "category": "message", - "documentation": "" - }, - { - "code": 90058, - "codeText": "TS90058", - "title": "Update import from \"{0}\"", - "category": "message", - "documentation": "" - }, - { - "code": 90059, - "codeText": "TS90059", - "title": "Export '{0}' from module '{1}'", - "category": "message", - "documentation": "" - }, - { - "code": 90060, - "codeText": "TS90060", - "title": "Export all referenced locals", - "category": "message", - "documentation": "" - }, - { - "code": 95001, - "codeText": "TS95001", - "title": "Convert function to an ES2015 class", - "category": "message", - "documentation": "" - }, - { - "code": 95003, - "codeText": "TS95003", - "title": "Convert '{0}' to '{1} in {0}'", - "category": "message", - "documentation": "" - }, - { - "code": 95004, - "codeText": "TS95004", - "title": "Extract to {0} in {1}", - "category": "message", - "documentation": "" - }, - { - "code": 95005, - "codeText": "TS95005", - "title": "Extract function", - "category": "message", - "documentation": "" - }, - { - "code": 95006, - "codeText": "TS95006", - "title": "Extract constant", - "category": "message", - "documentation": "" - }, - { - "code": 95007, - "codeText": "TS95007", - "title": "Extract to {0} in enclosing scope", - "category": "message", - "documentation": "" - }, - { - "code": 95008, - "codeText": "TS95008", - "title": "Extract to {0} in {1} scope", - "category": "message", - "documentation": "" - }, - { - "code": 95009, - "codeText": "TS95009", - "title": "Annotate with type from JSDoc", - "category": "message", - "documentation": "" - }, - { - "code": 95011, - "codeText": "TS95011", - "title": "Infer type of '{0}' from usage", - "category": "message", - "documentation": "" - }, - { - "code": 95012, - "codeText": "TS95012", - "title": "Infer parameter types from usage", - "category": "message", - "documentation": "" - }, - { - "code": 95013, - "codeText": "TS95013", - "title": "Convert to default import", - "category": "message", - "documentation": "" - }, - { - "code": 95014, - "codeText": "TS95014", - "title": "Install '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 95015, - "codeText": "TS95015", - "title": "Replace import with '{0}'.", - "category": "message", - "documentation": "" - }, - { - "code": 95016, - "codeText": "TS95016", - "title": "Use synthetic 'default' member.", - "category": "message", - "documentation": "" - }, - { - "code": 95017, - "codeText": "TS95017", - "title": "Convert to ES module", - "category": "message", - "documentation": "" - }, - { - "code": 95018, - "codeText": "TS95018", - "title": "Add 'undefined' type to property '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 95019, - "codeText": "TS95019", - "title": "Add initializer to property '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 95020, - "codeText": "TS95020", - "title": "Add definite assignment assertion to property '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 95021, - "codeText": "TS95021", - "title": "Convert all type literals to mapped type", - "category": "message", - "documentation": "" - }, - { - "code": 95022, - "codeText": "TS95022", - "title": "Add all missing members", - "category": "message", - "documentation": "" - }, - { - "code": 95023, - "codeText": "TS95023", - "title": "Infer all types from usage", - "category": "message", - "documentation": "" - }, - { - "code": 95024, - "codeText": "TS95024", - "title": "Delete all unused declarations", - "category": "message", - "documentation": "" - }, - { - "code": 95025, - "codeText": "TS95025", - "title": "Prefix all unused declarations with '_' where possible", - "category": "message", - "documentation": "" - }, - { - "code": 95026, - "codeText": "TS95026", - "title": "Fix all detected spelling errors", - "category": "message", - "documentation": "" - }, - { - "code": 95027, - "codeText": "TS95027", - "title": "Add initializers to all uninitialized properties", - "category": "message", - "documentation": "" - }, - { - "code": 95028, - "codeText": "TS95028", - "title": "Add definite assignment assertions to all uninitialized properties", - "category": "message", - "documentation": "" - }, - { - "code": 95029, - "codeText": "TS95029", - "title": "Add undefined type to all uninitialized properties", - "category": "message", - "documentation": "" - }, - { - "code": 95030, - "codeText": "TS95030", - "title": "Change all jsdoc-style types to TypeScript", - "category": "message", - "documentation": "" - }, - { - "code": 95031, - "codeText": "TS95031", - "title": "Change all jsdoc-style types to TypeScript (and add '| undefined' to nullable types)", - "category": "message", - "documentation": "" - }, - { - "code": 95032, - "codeText": "TS95032", - "title": "Implement all unimplemented interfaces", - "category": "message", - "documentation": "" - }, - { - "code": 95033, - "codeText": "TS95033", - "title": "Install all missing types packages", - "category": "message", - "documentation": "" - }, - { - "code": 95034, - "codeText": "TS95034", - "title": "Rewrite all as indexed access types", - "category": "message", - "documentation": "" - }, - { - "code": 95035, - "codeText": "TS95035", - "title": "Convert all to default imports", - "category": "message", - "documentation": "" - }, - { - "code": 95036, - "codeText": "TS95036", - "title": "Make all 'super()' calls the first statement in their constructor", - "category": "message", - "documentation": "" - }, - { - "code": 95037, - "codeText": "TS95037", - "title": "Add qualifier to all unresolved variables matching a member name", - "category": "message", - "documentation": "" - }, - { - "code": 95038, - "codeText": "TS95038", - "title": "Change all extended interfaces to 'implements'", - "category": "message", - "documentation": "" - }, - { - "code": 95039, - "codeText": "TS95039", - "title": "Add all missing super calls", - "category": "message", - "documentation": "" - }, - { - "code": 95040, - "codeText": "TS95040", - "title": "Implement all inherited abstract classes", - "category": "message", - "documentation": "" - }, - { - "code": 95041, - "codeText": "TS95041", - "title": "Add all missing 'async' modifiers", - "category": "message", - "documentation": "" - }, - { - "code": 95042, - "codeText": "TS95042", - "title": "Add '@ts-ignore' to all error messages", - "category": "message", - "documentation": "" - }, - { - "code": 95043, - "codeText": "TS95043", - "title": "Annotate everything with types from JSDoc", - "category": "message", - "documentation": "" - }, - { - "code": 95044, - "codeText": "TS95044", - "title": "Add '()' to all uncalled decorators", - "category": "message", - "documentation": "" - }, - { - "code": 95045, - "codeText": "TS95045", - "title": "Convert all constructor functions to classes", - "category": "message", - "documentation": "" - }, - { - "code": 95046, - "codeText": "TS95046", - "title": "Generate 'get' and 'set' accessors", - "category": "message", - "documentation": "" - }, - { - "code": 95047, - "codeText": "TS95047", - "title": "Convert 'require' to 'import'", - "category": "message", - "documentation": "" - }, - { - "code": 95048, - "codeText": "TS95048", - "title": "Convert all 'require' to 'import'", - "category": "message", - "documentation": "" - }, - { - "code": 95049, - "codeText": "TS95049", - "title": "Move to a new file", - "category": "message", - "documentation": "" - }, - { - "code": 95050, - "codeText": "TS95050", - "title": "Remove unreachable code", - "category": "message", - "documentation": "" - }, - { - "code": 95051, - "codeText": "TS95051", - "title": "Remove all unreachable code", - "category": "message", - "documentation": "" - }, - { - "code": 95052, - "codeText": "TS95052", - "title": "Add missing 'typeof'", - "category": "message", - "documentation": "" - }, - { - "code": 95053, - "codeText": "TS95053", - "title": "Remove unused label", - "category": "message", - "documentation": "" - }, - { - "code": 95054, - "codeText": "TS95054", - "title": "Remove all unused labels", - "category": "message", - "documentation": "" - }, - { - "code": 95055, - "codeText": "TS95055", - "title": "Convert '{0}' to mapped object type", - "category": "message", - "documentation": "" - }, - { - "code": 95056, - "codeText": "TS95056", - "title": "Convert namespace import to named imports", - "category": "message", - "documentation": "" - }, - { - "code": 95057, - "codeText": "TS95057", - "title": "Convert named imports to namespace import", - "category": "message", - "documentation": "" - }, - { - "code": 95058, - "codeText": "TS95058", - "title": "Add or remove braces in an arrow function", - "category": "message", - "documentation": "" - }, - { - "code": 95059, - "codeText": "TS95059", - "title": "Add braces to arrow function", - "category": "message", - "documentation": "" - }, - { - "code": 95060, - "codeText": "TS95060", - "title": "Remove braces from arrow function", - "category": "message", - "documentation": "" - }, - { - "code": 95061, - "codeText": "TS95061", - "title": "Convert default export to named export", - "category": "message", - "documentation": "" - }, - { - "code": 95062, - "codeText": "TS95062", - "title": "Convert named export to default export", - "category": "message", - "documentation": "" - }, - { - "code": 95063, - "codeText": "TS95063", - "title": "Add missing enum member '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 95064, - "codeText": "TS95064", - "title": "Add all missing imports", - "category": "message", - "documentation": "" - }, - { - "code": 95065, - "codeText": "TS95065", - "title": "Convert to async function", - "category": "message", - "documentation": "" - }, - { - "code": 95066, - "codeText": "TS95066", - "title": "Convert all to async functions", - "category": "message", - "documentation": "" - }, - { - "code": 95067, - "codeText": "TS95067", - "title": "Add missing call parentheses", - "category": "message", - "documentation": "" - }, - { - "code": 95068, - "codeText": "TS95068", - "title": "Add all missing call parentheses", - "category": "message", - "documentation": "" - }, - { - "code": 95069, - "codeText": "TS95069", - "title": "Add 'unknown' conversion for non-overlapping types", - "category": "message", - "documentation": "" - }, - { - "code": 95070, - "codeText": "TS95070", - "title": "Add 'unknown' to all conversions of non-overlapping types", - "category": "message", - "documentation": "" - }, - { - "code": 95071, - "codeText": "TS95071", - "title": "Add missing 'new' operator to call", - "category": "message", - "documentation": "" - }, - { - "code": 95072, - "codeText": "TS95072", - "title": "Add missing 'new' operator to all calls", - "category": "message", - "documentation": "" - }, - { - "code": 95073, - "codeText": "TS95073", - "title": "Add names to all parameters without names", - "category": "message", - "documentation": "" - }, - { - "code": 95074, - "codeText": "TS95074", - "title": "Enable the 'experimentalDecorators' option in your configuration file", - "category": "message", - "documentation": "" - }, - { - "code": 95075, - "codeText": "TS95075", - "title": "Convert parameters to destructured object", - "category": "message", - "documentation": "" - }, - { - "code": 95077, - "codeText": "TS95077", - "title": "Extract type", - "category": "message", - "documentation": "" - }, - { - "code": 95078, - "codeText": "TS95078", - "title": "Extract to type alias", - "category": "message", - "documentation": "" - }, - { - "code": 95079, - "codeText": "TS95079", - "title": "Extract to typedef", - "category": "message", - "documentation": "" - }, - { - "code": 95080, - "codeText": "TS95080", - "title": "Infer 'this' type of '{0}' from usage", - "category": "message", - "documentation": "" - }, - { - "code": 95081, - "codeText": "TS95081", - "title": "Add 'const' to unresolved variable", - "category": "message", - "documentation": "" - }, - { - "code": 95082, - "codeText": "TS95082", - "title": "Add 'const' to all unresolved variables", - "category": "message", - "documentation": "" - }, - { - "code": 95083, - "codeText": "TS95083", - "title": "Add 'await'", - "category": "message", - "documentation": "" - }, - { - "code": 95084, - "codeText": "TS95084", - "title": "Add 'await' to initializer for '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 95085, - "codeText": "TS95085", - "title": "Fix all expressions possibly missing 'await'", - "category": "message", - "documentation": "" - }, - { - "code": 95086, - "codeText": "TS95086", - "title": "Remove unnecessary 'await'", - "category": "message", - "documentation": "" - }, - { - "code": 95087, - "codeText": "TS95087", - "title": "Remove all unnecessary uses of 'await'", - "category": "message", - "documentation": "" - }, - { - "code": 95088, - "codeText": "TS95088", - "title": "Enable the '--jsx' flag in your configuration file", - "category": "message", - "documentation": "" - }, - { - "code": 95089, - "codeText": "TS95089", - "title": "Add 'await' to initializers", - "category": "message", - "documentation": "" - }, - { - "code": 95090, - "codeText": "TS95090", - "title": "Extract to interface", - "category": "message", - "documentation": "" - }, - { - "code": 95091, - "codeText": "TS95091", - "title": "Convert to a bigint numeric literal", - "category": "message", - "documentation": "" - }, - { - "code": 95092, - "codeText": "TS95092", - "title": "Convert all to bigint numeric literals", - "category": "message", - "documentation": "" - }, - { - "code": 95093, - "codeText": "TS95093", - "title": "Convert 'const' to 'let'", - "category": "message", - "documentation": "" - }, - { - "code": 95094, - "codeText": "TS95094", - "title": "Prefix with 'declare'", - "category": "message", - "documentation": "" - }, - { - "code": 95095, - "codeText": "TS95095", - "title": "Prefix all incorrect property declarations with 'declare'", - "category": "message", - "documentation": "" - }, - { - "code": 95096, - "codeText": "TS95096", - "title": "Convert to template string", - "category": "message", - "documentation": "" - }, - { - "code": 95097, - "codeText": "TS95097", - "title": "Add 'export {}' to make this file into a module", - "category": "message", - "documentation": "" - }, - { - "code": 95098, - "codeText": "TS95098", - "title": "Set the 'target' option in your configuration file to '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 95099, - "codeText": "TS95099", - "title": "Set the 'module' option in your configuration file to '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 95100, - "codeText": "TS95100", - "title": "Convert invalid character to its html entity code", - "category": "message", - "documentation": "" - }, - { - "code": 95101, - "codeText": "TS95101", - "title": "Convert all invalid characters to HTML entity code", - "category": "message", - "documentation": "" - }, - { - "code": 95102, - "codeText": "TS95102", - "title": "Convert all 'const' to 'let'", - "category": "message", - "documentation": "" - }, - { - "code": 95105, - "codeText": "TS95105", - "title": "Convert function expression '{0}' to arrow function", - "category": "message", - "documentation": "" - }, - { - "code": 95106, - "codeText": "TS95106", - "title": "Convert function declaration '{0}' to arrow function", - "category": "message", - "documentation": "" - }, - { - "code": 95107, - "codeText": "TS95107", - "title": "Fix all implicit-'this' errors", - "category": "message", - "documentation": "" - }, - { - "code": 95108, - "codeText": "TS95108", - "title": "Wrap invalid character in an expression container", - "category": "message", - "documentation": "" - }, - { - "code": 95109, - "codeText": "TS95109", - "title": "Wrap all invalid characters in an expression container", - "category": "message", - "documentation": "" - }, - { - "code": 95110, - "codeText": "TS95110", - "title": "Visit https://aka.ms/tsconfig to read more about this file", - "category": "message", - "documentation": "" - }, - { - "code": 95111, - "codeText": "TS95111", - "title": "Add a return statement", - "category": "message", - "documentation": "" - }, - { - "code": 95112, - "codeText": "TS95112", - "title": "Remove braces from arrow function body", - "category": "message", - "documentation": "" - }, - { - "code": 95113, - "codeText": "TS95113", - "title": "Wrap the following body with parentheses which should be an object literal", - "category": "message", - "documentation": "" - }, - { - "code": 95114, - "codeText": "TS95114", - "title": "Add all missing return statement", - "category": "message", - "documentation": "" - }, - { - "code": 95115, - "codeText": "TS95115", - "title": "Remove braces from all arrow function bodies with relevant issues", - "category": "message", - "documentation": "" - }, - { - "code": 95116, - "codeText": "TS95116", - "title": "Wrap all object literal with parentheses", - "category": "message", - "documentation": "" - }, - { - "code": 95117, - "codeText": "TS95117", - "title": "Move labeled tuple element modifiers to labels", - "category": "message", - "documentation": "" - }, - { - "code": 95118, - "codeText": "TS95118", - "title": "Convert overload list to single signature", - "category": "message", - "documentation": "" - }, - { - "code": 95119, - "codeText": "TS95119", - "title": "Generate 'get' and 'set' accessors for all overriding properties", - "category": "message", - "documentation": "" - }, - { - "code": 95120, - "codeText": "TS95120", - "title": "Wrap in JSX fragment", - "category": "message", - "documentation": "" - }, - { - "code": 95121, - "codeText": "TS95121", - "title": "Wrap all unparented JSX in JSX fragment", - "category": "message", - "documentation": "" - }, - { - "code": 95122, - "codeText": "TS95122", - "title": "Convert arrow function or function expression", - "category": "message", - "documentation": "" - }, - { - "code": 95123, - "codeText": "TS95123", - "title": "Convert to anonymous function", - "category": "message", - "documentation": "" - }, - { - "code": 95124, - "codeText": "TS95124", - "title": "Convert to named function", - "category": "message", - "documentation": "" - }, - { - "code": 95125, - "codeText": "TS95125", - "title": "Convert to arrow function", - "category": "message", - "documentation": "" - }, - { - "code": 95126, - "codeText": "TS95126", - "title": "Remove parentheses", - "category": "message", - "documentation": "" - }, - { - "code": 95127, - "codeText": "TS95127", - "title": "Could not find a containing arrow function", - "category": "message", - "documentation": "" - }, - { - "code": 95128, - "codeText": "TS95128", - "title": "Containing function is not an arrow function", - "category": "message", - "documentation": "" - }, - { - "code": 95129, - "codeText": "TS95129", - "title": "Could not find export statement", - "category": "message", - "documentation": "" - }, - { - "code": 95130, - "codeText": "TS95130", - "title": "This file already has a default export", - "category": "message", - "documentation": "" - }, - { - "code": 95131, - "codeText": "TS95131", - "title": "Could not find import clause", - "category": "message", - "documentation": "" - }, - { - "code": 95132, - "codeText": "TS95132", - "title": "Could not find namespace import or named imports", - "category": "message", - "documentation": "" - }, - { - "code": 95133, - "codeText": "TS95133", - "title": "Selection is not a valid type node", - "category": "message", - "documentation": "" - }, - { - "code": 95134, - "codeText": "TS95134", - "title": "No type could be extracted from this type node", - "category": "message", - "documentation": "" - }, - { - "code": 95135, - "codeText": "TS95135", - "title": "Could not find property for which to generate accessor", - "category": "message", - "documentation": "" - }, - { - "code": 95136, - "codeText": "TS95136", - "title": "Name is not valid", - "category": "message", - "documentation": "" - }, - { - "code": 95137, - "codeText": "TS95137", - "title": "Can only convert property with modifier", - "category": "message", - "documentation": "" - }, - { - "code": 95138, - "codeText": "TS95138", - "title": "Switch each misused '{0}' to '{1}'", - "category": "message", - "documentation": "" - }, - { - "code": 95139, - "codeText": "TS95139", - "title": "Convert to optional chain expression", - "category": "message", - "documentation": "" - }, - { - "code": 95140, - "codeText": "TS95140", - "title": "Could not find convertible access expression", - "category": "message", - "documentation": "" - }, - { - "code": 95141, - "codeText": "TS95141", - "title": "Could not find matching access expressions", - "category": "message", - "documentation": "" - }, - { - "code": 95142, - "codeText": "TS95142", - "title": "Can only convert logical AND access chains", - "category": "message", - "documentation": "" - }, - { - "code": 95143, - "codeText": "TS95143", - "title": "Add 'void' to Promise resolved without a value", - "category": "message", - "documentation": "" - }, - { - "code": 95144, - "codeText": "TS95144", - "title": "Add 'void' to all Promises resolved without a value", - "category": "message", - "documentation": "" - }, - { - "code": 95145, - "codeText": "TS95145", - "title": "Use element access for '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 95146, - "codeText": "TS95146", - "title": "Use element access for all undeclared properties.", - "category": "message", - "documentation": "" - }, - { - "code": 95147, - "codeText": "TS95147", - "title": "Delete all unused imports", - "category": "message", - "documentation": "" - }, - { - "code": 95148, - "codeText": "TS95148", - "title": "Infer function return type", - "category": "message", - "documentation": "" - }, - { - "code": 95149, - "codeText": "TS95149", - "title": "Return type must be inferred from a function", - "category": "message", - "documentation": "" - }, - { - "code": 95150, - "codeText": "TS95150", - "title": "Could not determine function return type", - "category": "message", - "documentation": "" - }, - { - "code": 95151, - "codeText": "TS95151", - "title": "Could not convert to arrow function", - "category": "message", - "documentation": "" - }, - { - "code": 95152, - "codeText": "TS95152", - "title": "Could not convert to named function", - "category": "message", - "documentation": "" - }, - { - "code": 95153, - "codeText": "TS95153", - "title": "Could not convert to anonymous function", - "category": "message", - "documentation": "" - }, - { - "code": 95154, - "codeText": "TS95154", - "title": "Can only convert string concatenation", - "category": "message", - "documentation": "" - }, - { - "code": 95155, - "codeText": "TS95155", - "title": "Selection is not a valid statement or statements", - "category": "message", - "documentation": "" - }, - { - "code": 95156, - "codeText": "TS95156", - "title": "Add missing function declaration '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 95157, - "codeText": "TS95157", - "title": "Add all missing function declarations", - "category": "message", - "documentation": "" - }, - { - "code": 95158, - "codeText": "TS95158", - "title": "Method not implemented.", - "category": "message", - "documentation": "" - }, - { - "code": 95159, - "codeText": "TS95159", - "title": "Function not implemented.", - "category": "message", - "documentation": "" - }, - { - "code": 95160, - "codeText": "TS95160", - "title": "Add 'override' modifier", - "category": "message", - "documentation": "" - }, - { - "code": 95161, - "codeText": "TS95161", - "title": "Remove 'override' modifier", - "category": "message", - "documentation": "" - }, - { - "code": 95162, - "codeText": "TS95162", - "title": "Add all missing 'override' modifiers", - "category": "message", - "documentation": "" - }, - { - "code": 95163, - "codeText": "TS95163", - "title": "Remove all unnecessary 'override' modifiers", - "category": "message", - "documentation": "" - }, - { - "code": 95164, - "codeText": "TS95164", - "title": "Can only convert named export", - "category": "message", - "documentation": "" - }, - { - "code": 95165, - "codeText": "TS95165", - "title": "Add missing properties", - "category": "message", - "documentation": "" - }, - { - "code": 95166, - "codeText": "TS95166", - "title": "Add all missing properties", - "category": "message", - "documentation": "" - }, - { - "code": 95167, - "codeText": "TS95167", - "title": "Add missing attributes", - "category": "message", - "documentation": "" - }, - { - "code": 95168, - "codeText": "TS95168", - "title": "Add all missing attributes", - "category": "message", - "documentation": "" - }, - { - "code": 95169, - "codeText": "TS95169", - "title": "Add 'undefined' to optional property type", - "category": "message", - "documentation": "" - }, - { - "code": 95170, - "codeText": "TS95170", - "title": "Convert named imports to default import", - "category": "message", - "documentation": "" - }, - { - "code": 95171, - "codeText": "TS95171", - "title": "Delete unused '@param' tag '{0}'", - "category": "message", - "documentation": "" - }, - { - "code": 95172, - "codeText": "TS95172", - "title": "Delete all unused '@param' tags", - "category": "message", - "documentation": "" - }, - { - "code": 95173, - "codeText": "TS95173", - "title": "Rename '@param' tag name '{0}' to '{1}'", - "category": "message", - "documentation": "" - }, - { - "code": 95174, - "codeText": "TS95174", - "title": "Use `{0}`.", - "category": "message", - "documentation": "" - }, - { - "code": 95175, - "codeText": "TS95175", - "title": "Use `Number.isNaN` in all conditions.", - "category": "message", - "documentation": "" - }, - { - "code": 95176, - "codeText": "TS95176", - "title": "Convert typedef to TypeScript type.", - "category": "message", - "documentation": "" - }, - { - "code": 95177, - "codeText": "TS95177", - "title": "Convert all typedef to TypeScript types.", - "category": "message", - "documentation": "" - }, - { - "code": 95178, - "codeText": "TS95178", - "title": "Move to file", - "category": "message", - "documentation": "" - }, - { - "code": 95179, - "codeText": "TS95179", - "title": "Cannot move to file, selected file is invalid", - "category": "message", - "documentation": "" - }, - { - "code": 95180, - "codeText": "TS95180", - "title": "Use 'import type'", - "category": "message", - "documentation": "" - }, - { - "code": 95181, - "codeText": "TS95181", - "title": "Use 'type {0}'", - "category": "message", - "documentation": "" - }, - { - "code": 95182, - "codeText": "TS95182", - "title": "Fix all with type-only imports", - "category": "message", - "documentation": "" - }, - { - "code": 95183, - "codeText": "TS95183", - "title": "Cannot move statements to the selected file", - "category": "message", - "documentation": "" - }, - { - "code": 95184, - "codeText": "TS95184", - "title": "Inline variable", - "category": "message", - "documentation": "" - }, - { - "code": 95185, - "codeText": "TS95185", - "title": "Could not find variable to inline.", - "category": "message", - "documentation": "" - }, - { - "code": 95186, - "codeText": "TS95186", - "title": "Variables with multiple declarations cannot be inlined.", - "category": "message", - "documentation": "" - }, - { - "code": 95187, - "codeText": "TS95187", - "title": "Add missing comma for object member completion '{0}'.", - "category": "message", - "documentation": "" - } -] diff --git a/db/_index.json b/db/_index.json deleted file mode 100644 index 3b800a8..0000000 --- a/db/_index.json +++ /dev/null @@ -1,1977 +0,0 @@ -{ - "1002": "Unterminated string literal.", - "1003": "Identifier expected.", - "1005": "'{0}' expected.", - "1006": "A file cannot have a reference to itself.", - "1007": "The parser expected to find a '{1}' to match the '{0}' token here.", - "1009": "Trailing comma not allowed.", - "1010": "'*/' expected.", - "1011": "An element access expression should take an argument.", - "1012": "Unexpected token.", - "1013": "A rest parameter or binding pattern may not have a trailing comma.", - "1014": "A rest parameter must be last in a parameter list.", - "1015": "Parameter cannot have question mark and initializer.", - "1016": "A required parameter cannot follow an optional parameter.", - "1017": "An index signature cannot have a rest parameter.", - "1018": "An index signature parameter cannot have an accessibility modifier.", - "1019": "An index signature parameter cannot have a question mark.", - "1020": "An index signature parameter cannot have an initializer.", - "1021": "An index signature must have a type annotation.", - "1022": "An index signature parameter must have a type annotation.", - "1024": "'readonly' modifier can only appear on a property declaration or index signature.", - "1025": "An index signature cannot have a trailing comma.", - "1028": "Accessibility modifier already seen.", - "1029": "'{0}' modifier must precede '{1}' modifier.", - "1030": "'{0}' modifier already seen.", - "1031": "'{0}' modifier cannot appear on class elements of this kind.", - "1034": "'super' must be followed by an argument list or member access.", - "1035": "Only ambient modules can use quoted names.", - "1036": "Statements are not allowed in ambient contexts.", - "1038": "A 'declare' modifier cannot be used in an already ambient context.", - "1039": "Initializers are not allowed in ambient contexts.", - "1040": "'{0}' modifier cannot be used in an ambient context.", - "1042": "'{0}' modifier cannot be used here.", - "1044": "'{0}' modifier cannot appear on a module or namespace element.", - "1046": "Top-level declarations in .d.ts files must start with either a 'declare' or 'export' modifier.", - "1047": "A rest parameter cannot be optional.", - "1048": "A rest parameter cannot have an initializer.", - "1049": "A 'set' accessor must have exactly one parameter.", - "1051": "A 'set' accessor cannot have an optional parameter.", - "1052": "A 'set' accessor parameter cannot have an initializer.", - "1053": "A 'set' accessor cannot have rest parameter.", - "1054": "A 'get' accessor cannot have parameters.", - "1055": "Type '{0}' is not a valid async function return type in ES5/ES3 because it does not refer to a Promise-compatible constructor value.", - "1056": "Accessors are only available when targeting ECMAScript 5 and higher.", - "1058": "The return type of an async function must either be a valid promise or must not contain a callable 'then' member.", - "1059": "A promise must have a 'then' method.", - "1060": "The first parameter of the 'then' method of a promise must be a callback.", - "1061": "Enum member must have initializer.", - "1062": "Type is referenced directly or indirectly in the fulfillment callback of its own 'then' method.", - "1063": "An export assignment cannot be used in a namespace.", - "1064": "The return type of an async function or method must be the global Promise type. Did you mean to write 'Promise<{0}>'?", - "1065": "The return type of an async function or method must be the global Promise type.", - "1066": "In ambient enum declarations member initializer must be constant expression.", - "1068": "Unexpected token. A constructor, method, accessor, or property was expected.", - "1069": "Unexpected token. A type parameter name was expected without curly braces.", - "1070": "'{0}' modifier cannot appear on a type member.", - "1071": "'{0}' modifier cannot appear on an index signature.", - "1079": "A '{0}' modifier cannot be used with an import declaration.", - "1084": "Invalid 'reference' directive syntax.", - "1085": "Octal literals are not available when targeting ECMAScript 5 and higher. Use the syntax '{0}'.", - "1089": "'{0}' modifier cannot appear on a constructor declaration.", - "1090": "'{0}' modifier cannot appear on a parameter.", - "1091": "Only a single variable declaration is allowed in a 'for...in' statement.", - "1092": "Type parameters cannot appear on a constructor declaration.", - "1093": "Type annotation cannot appear on a constructor declaration.", - "1094": "An accessor cannot have type parameters.", - "1095": "A 'set' accessor cannot have a return type annotation.", - "1096": "An index signature must have exactly one parameter.", - "1097": "'{0}' list cannot be empty.", - "1098": "Type parameter list cannot be empty.", - "1099": "Type argument list cannot be empty.", - "1100": "Invalid use of '{0}' in strict mode.", - "1101": "'with' statements are not allowed in strict mode.", - "1102": "'delete' cannot be called on an identifier in strict mode.", - "1103": "'for await' loops are only allowed within async functions and at the top levels of modules.", - "1104": "A 'continue' statement can only be used within an enclosing iteration statement.", - "1105": "A 'break' statement can only be used within an enclosing iteration or switch statement.", - "1106": "The left-hand side of a 'for...of' statement may not be 'async'.", - "1107": "Jump target cannot cross function boundary.", - "1108": "A 'return' statement can only be used within a function body.", - "1109": "Expression expected.", - "1110": "Type expected.", - "1111": "Private field '{0}' must be declared in an enclosing class.", - "1113": "A 'default' clause cannot appear more than once in a 'switch' statement.", - "1114": "Duplicate label '{0}'.", - "1115": "A 'continue' statement can only jump to a label of an enclosing iteration statement.", - "1116": "A 'break' statement can only jump to a label of an enclosing statement.", - "1117": "An object literal cannot have multiple properties with the same name.", - "1118": "An object literal cannot have multiple get/set accessors with the same name.", - "1119": "An object literal cannot have property and accessor with the same name.", - "1120": "An export assignment cannot have modifiers.", - "1121": "Octal literals are not allowed in strict mode.", - "1123": "Variable declaration list cannot be empty.", - "1124": "Digit expected.", - "1125": "Hexadecimal digit expected.", - "1126": "Unexpected end of text.", - "1127": "Invalid character.", - "1128": "Declaration or statement expected.", - "1129": "Statement expected.", - "1130": "'case' or 'default' expected.", - "1131": "Property or signature expected.", - "1132": "Enum member expected.", - "1134": "Variable declaration expected.", - "1135": "Argument expression expected.", - "1136": "Property assignment expected.", - "1137": "Expression or comma expected.", - "1138": "Parameter declaration expected.", - "1139": "Type parameter declaration expected.", - "1140": "Type argument expected.", - "1141": "String literal expected.", - "1142": "Line break not permitted here.", - "1144": "'{' or ';' expected.", - "1145": "'{' or JSX element expected.", - "1146": "Declaration expected.", - "1147": "Import declarations in a namespace cannot reference a module.", - "1148": "Cannot use imports, exports, or module augmentations when '--module' is 'none'.", - "1149": "File name '{0}' differs from already included file name '{1}' only in casing.", - "1155": "'const' declarations must be initialized.", - "1156": "'const' declarations can only be declared inside a block.", - "1157": "'let' declarations can only be declared inside a block.", - "1160": "Unterminated template literal.", - "1161": "Unterminated regular expression literal.", - "1162": "An object member cannot be declared optional.", - "1163": "A 'yield' expression is only allowed in a generator body.", - "1164": "Computed property names are not allowed in enums.", - "1165": "A computed property name in an ambient context must refer to an expression whose type is a literal type or a 'unique symbol' type.", - "1166": "A computed property name in a class property declaration must have a simple literal type or a 'unique symbol' type.", - "1168": "A computed property name in a method overload must refer to an expression whose type is a literal type or a 'unique symbol' type.", - "1169": "A computed property name in an interface must refer to an expression whose type is a literal type or a 'unique symbol' type.", - "1170": "A computed property name in a type literal must refer to an expression whose type is a literal type or a 'unique symbol' type.", - "1171": "A comma expression is not allowed in a computed property name.", - "1172": "'extends' clause already seen.", - "1173": "'extends' clause must precede 'implements' clause.", - "1174": "Classes can only extend a single class.", - "1175": "'implements' clause already seen.", - "1176": "Interface declaration cannot have 'implements' clause.", - "1177": "Binary digit expected.", - "1178": "Octal digit expected.", - "1179": "Unexpected token. '{' expected.", - "1180": "Property destructuring pattern expected.", - "1181": "Array element destructuring pattern expected.", - "1182": "A destructuring declaration must have an initializer.", - "1183": "An implementation cannot be declared in ambient contexts.", - "1184": "Modifiers cannot appear here.", - "1185": "Merge conflict marker encountered.", - "1186": "A rest element cannot have an initializer.", - "1187": "A parameter property may not be declared using a binding pattern.", - "1188": "Only a single variable declaration is allowed in a 'for...of' statement.", - "1189": "The variable declaration of a 'for...in' statement cannot have an initializer.", - "1190": "The variable declaration of a 'for...of' statement cannot have an initializer.", - "1191": "An import declaration cannot have modifiers.", - "1192": "Module '{0}' has no default export.", - "1193": "An export declaration cannot have modifiers.", - "1194": "Export declarations are not permitted in a namespace.", - "1195": "'export *' does not re-export a default.", - "1196": "Catch clause variable type annotation must be 'any' or 'unknown' if specified.", - "1197": "Catch clause variable cannot have an initializer.", - "1198": "An extended Unicode escape value must be between 0x0 and 0x10FFFF inclusive.", - "1199": "Unterminated Unicode escape sequence.", - "1200": "Line terminator not permitted before arrow.", - "1202": "Import assignment cannot be used when targeting ECMAScript modules. Consider using 'import * as ns from \"mod\"', 'import {a} from \"mod\"', 'import d from \"mod\"', or another module format instead.", - "1203": "Export assignment cannot be used when targeting ECMAScript modules. Consider using 'export default' or another module format instead.", - "1205": "Re-exporting a type when the '--isolatedModules' flag is provided requires using 'export type'.", - "1206": "Decorators are not valid here.", - "1207": "Decorators cannot be applied to multiple get/set accessors of the same name.", - "1208": "'{0}' cannot be compiled under '--isolatedModules' because it is considered a global script file. Add an import, export, or an empty 'export {}' statement to make it a module.", - "1209": "Invalid optional chain from new expression. Did you mean to call '{0}()'?", - "1210": "Code contained in a class is evaluated in JavaScript's strict mode which does not allow this use of '{0}'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode.", - "1211": "A class declaration without the 'default' modifier must have a name.", - "1212": "Identifier expected. '{0}' is a reserved word in strict mode.", - "1213": "Identifier expected. '{0}' is a reserved word in strict mode. Class definitions are automatically in strict mode.", - "1214": "Identifier expected. '{0}' is a reserved word in strict mode. Modules are automatically in strict mode.", - "1215": "Invalid use of '{0}'. Modules are automatically in strict mode.", - "1216": "Identifier expected. '__esModule' is reserved as an exported marker when transforming ECMAScript modules.", - "1218": "Export assignment is not supported when '--module' flag is 'system'.", - "1219": "Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option in your 'tsconfig' or 'jsconfig' to remove this warning.", - "1221": "Generators are not allowed in an ambient context.", - "1222": "An overload signature cannot be declared as a generator.", - "1223": "'{0}' tag already specified.", - "1224": "Signature '{0}' must be a type predicate.", - "1225": "Cannot find parameter '{0}'.", - "1226": "Type predicate '{0}' is not assignable to '{1}'.", - "1227": "Parameter '{0}' is not in the same position as parameter '{1}'.", - "1228": "A type predicate is only allowed in return type position for functions and methods.", - "1229": "A type predicate cannot reference a rest parameter.", - "1230": "A type predicate cannot reference element '{0}' in a binding pattern.", - "1231": "An export assignment must be at the top level of a file or module declaration.", - "1232": "An import declaration can only be used at the top level of a namespace or module.", - "1233": "An export declaration can only be used at the top level of a namespace or module.", - "1234": "An ambient module declaration is only allowed at the top level in a file.", - "1235": "A namespace declaration is only allowed at the top level of a namespace or module.", - "1236": "The return type of a property decorator function must be either 'void' or 'any'.", - "1237": "The return type of a parameter decorator function must be either 'void' or 'any'.", - "1238": "Unable to resolve signature of class decorator when called as an expression.", - "1239": "Unable to resolve signature of parameter decorator when called as an expression.", - "1240": "Unable to resolve signature of property decorator when called as an expression.", - "1241": "Unable to resolve signature of method decorator when called as an expression.", - "1242": "'abstract' modifier can only appear on a class, method, or property declaration.", - "1243": "'{0}' modifier cannot be used with '{1}' modifier.", - "1244": "Abstract methods can only appear within an abstract class.", - "1245": "Method '{0}' cannot have an implementation because it is marked abstract.", - "1246": "An interface property cannot have an initializer.", - "1247": "A type literal property cannot have an initializer.", - "1248": "A class member cannot have the '{0}' keyword.", - "1249": "A decorator can only decorate a method implementation, not an overload.", - "1250": "Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'.", - "1251": "Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'. Class definitions are automatically in strict mode.", - "1252": "Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'. Modules are automatically in strict mode.", - "1253": "Abstract properties can only appear within an abstract class.", - "1254": "A 'const' initializer in an ambient context must be a string or numeric literal or literal enum reference.", - "1255": "A definite assignment assertion '!' is not permitted in this context.", - "1257": "A required element cannot follow an optional element.", - "1258": "A default export must be at the top level of a file or module declaration.", - "1259": "Module '{0}' can only be default-imported using the '{1}' flag", - "1260": "Keywords cannot contain escape characters.", - "1261": "Already included file name '{0}' differs from file name '{1}' only in casing.", - "1262": "Identifier expected. '{0}' is a reserved word at the top-level of a module.", - "1263": "Declarations with initializers cannot also have definite assignment assertions.", - "1264": "Declarations with definite assignment assertions must also have type annotations.", - "1265": "A rest element cannot follow another rest element.", - "1266": "An optional element cannot follow a rest element.", - "1267": "Property '{0}' cannot have an initializer because it is marked abstract.", - "1268": "An index signature parameter type must be 'string', 'number', 'symbol', or a template literal type.", - "1269": "Cannot use 'export import' on a type or type-only namespace when the '--isolatedModules' flag is provided.", - "1270": "Decorator function return type '{0}' is not assignable to type '{1}'.", - "1271": "Decorator function return type is '{0}' but is expected to be 'void' or 'any'.", - "1272": "A type referenced in a decorated signature must be imported with 'import type' or a namespace import when 'isolatedModules' and 'emitDecoratorMetadata' are enabled.", - "1273": "'{0}' modifier cannot appear on a type parameter", - "1274": "'{0}' modifier can only appear on a type parameter of a class, interface or type alias", - "1275": "'accessor' modifier can only appear on a property declaration.", - "1276": "An 'accessor' property cannot be declared optional.", - "1277": "'{0}' modifier can only appear on a type parameter of a function, method or class", - "1278": "The runtime will invoke the decorator with {1} arguments, but the decorator expects {0}.", - "1279": "The runtime will invoke the decorator with {1} arguments, but the decorator expects at least {0}.", - "1280": "Namespaces are not allowed in global script files when '{0}' is enabled. If this file is not intended to be a global script, set 'moduleDetection' to 'force' or add an empty 'export {}' statement.", - "1281": "Cannot access '{0}' from another file without qualification when '{1}' is enabled. Use '{2}' instead.", - "1282": "An 'export =' declaration must reference a value when 'verbatimModuleSyntax' is enabled, but '{0}' only refers to a type.", - "1283": "An 'export =' declaration must reference a real value when 'verbatimModuleSyntax' is enabled, but '{0}' resolves to a type-only declaration.", - "1284": "An 'export default' must reference a value when 'verbatimModuleSyntax' is enabled, but '{0}' only refers to a type.", - "1285": "An 'export default' must reference a real value when 'verbatimModuleSyntax' is enabled, but '{0}' resolves to a type-only declaration.", - "1286": "ESM syntax is not allowed in a CommonJS module when 'verbatimModuleSyntax' is enabled.", - "1287": "A top-level 'export' modifier cannot be used on value declarations in a CommonJS module when 'verbatimModuleSyntax' is enabled.", - "1288": "An import alias cannot resolve to a type or type-only declaration when 'verbatimModuleSyntax' is enabled.", - "1300": "'with' statements are not allowed in an async function block.", - "1308": "'await' expressions are only allowed within async functions and at the top levels of modules.", - "1309": "The current file is a CommonJS module and cannot use 'await' at the top level.", - "1312": "Did you mean to use a ':'? An '=' can only follow a property name when the containing object literal is part of a destructuring pattern.", - "1313": "The body of an 'if' statement cannot be the empty statement.", - "1314": "Global module exports may only appear in module files.", - "1315": "Global module exports may only appear in declaration files.", - "1316": "Global module exports may only appear at top level.", - "1317": "A parameter property cannot be declared using a rest parameter.", - "1318": "An abstract accessor cannot have an implementation.", - "1319": "A default export can only be used in an ECMAScript-style module.", - "1320": "Type of 'await' operand must either be a valid promise or must not contain a callable 'then' member.", - "1321": "Type of 'yield' operand in an async generator must either be a valid promise or must not contain a callable 'then' member.", - "1322": "Type of iterated elements of a 'yield*' operand must either be a valid promise or must not contain a callable 'then' member.", - "1323": "Dynamic imports are only supported when the '--module' flag is set to 'es2020', 'es2022', 'esnext', 'commonjs', 'amd', 'system', 'umd', 'node16', or 'nodenext'.", - "1324": "Dynamic imports only support a second argument when the '--module' option is set to 'esnext', 'node16', or 'nodenext'.", - "1325": "Argument of dynamic import cannot be spread element.", - "1326": "This use of 'import' is invalid. 'import()' calls can be written, but they must have parentheses and cannot have type arguments.", - "1327": "String literal with double quotes expected.", - "1328": "Property value can only be string literal, numeric literal, 'true', 'false', 'null', object literal or array literal.", - "1329": "'{0}' accepts too few arguments to be used as a decorator here. Did you mean to call it first and write '@{0}()'?", - "1330": "A property of an interface or type literal whose type is a 'unique symbol' type must be 'readonly'.", - "1331": "A property of a class whose type is a 'unique symbol' type must be both 'static' and 'readonly'.", - "1332": "A variable whose type is a 'unique symbol' type must be 'const'.", - "1333": "'unique symbol' types may not be used on a variable declaration with a binding name.", - "1334": "'unique symbol' types are only allowed on variables in a variable statement.", - "1335": "'unique symbol' types are not allowed here.", - "1337": "An index signature parameter type cannot be a literal type or generic type. Consider using a mapped object type instead.", - "1338": "'infer' declarations are only permitted in the 'extends' clause of a conditional type.", - "1339": "Module '{0}' does not refer to a value, but is used as a value here.", - "1340": "Module '{0}' does not refer to a type, but is used as a type here. Did you mean 'typeof import('{0}')'?", - "1341": "Class constructor may not be an accessor.", - "1342": "Type arguments cannot be used here.", - "1343": "The 'import.meta' meta-property is only allowed when the '--module' option is 'es2020', 'es2022', 'esnext', 'system', 'node16', or 'nodenext'.", - "1344": "'A label is not allowed here.", - "1345": "An expression of type 'void' cannot be tested for truthiness.", - "1346": "This parameter is not allowed with 'use strict' directive.", - "1347": "'use strict' directive cannot be used with non-simple parameter list.", - "1348": "Non-simple parameter declared here.", - "1349": "'use strict' directive used here.", - "1350": "Print the final configuration instead of building.", - "1351": "An identifier or keyword cannot immediately follow a numeric literal.", - "1352": "A bigint literal cannot use exponential notation.", - "1353": "A bigint literal must be an integer.", - "1354": "'readonly' type modifier is only permitted on array and tuple literal types.", - "1355": "A 'const' assertions can only be applied to references to enum members, or string, number, boolean, array, or object literals.", - "1356": "Did you mean to mark this function as 'async'?", - "1357": "An enum member name must be followed by a ',', '=', or '}'.", - "1358": "Tagged template expressions are not permitted in an optional chain.", - "1359": "Identifier expected. '{0}' is a reserved word that cannot be used here.", - "1360": "Type '{0}' does not satisfy the expected type '{1}'.", - "1361": "'{0}' cannot be used as a value because it was imported using 'import type'.", - "1362": "'{0}' cannot be used as a value because it was exported using 'export type'.", - "1363": "A type-only import can specify a default import or named bindings, but not both.", - "1364": "Convert to type-only export", - "1365": "Convert all re-exported types to type-only exports", - "1366": "Split into two separate import declarations", - "1367": "Split all invalid type-only imports", - "1368": "Class constructor may not be a generator.", - "1369": "Did you mean '{0}'?", - "1371": "This import is never used as a value and must use 'import type' because 'importsNotUsedAsValues' is set to 'error'.", - "1373": "Convert to type-only import", - "1374": "Convert all imports not used as a value to type-only imports", - "1375": "'await' expressions are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module.", - "1376": "'{0}' was imported here.", - "1377": "'{0}' was exported here.", - "1378": "Top-level 'await' expressions are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher.", - "1379": "An import alias cannot reference a declaration that was exported using 'export type'.", - "1380": "An import alias cannot reference a declaration that was imported using 'import type'.", - "1381": "Unexpected token. Did you mean `{'}'}` or `}`?", - "1382": "Unexpected token. Did you mean `{'>'}` or `>`?", - "1383": "Only named exports may use 'export type'.", - "1385": "Function type notation must be parenthesized when used in a union type.", - "1386": "Constructor type notation must be parenthesized when used in a union type.", - "1387": "Function type notation must be parenthesized when used in an intersection type.", - "1388": "Constructor type notation must be parenthesized when used in an intersection type.", - "1389": "'{0}' is not allowed as a variable declaration name.", - "1390": "'{0}' is not allowed as a parameter name.", - "1392": "An import alias cannot use 'import type'", - "1393": "Imported via {0} from file '{1}'", - "1394": "Imported via {0} from file '{1}' with packageId '{2}'", - "1395": "Imported via {0} from file '{1}' to import 'importHelpers' as specified in compilerOptions", - "1396": "Imported via {0} from file '{1}' with packageId '{2}' to import 'importHelpers' as specified in compilerOptions", - "1397": "Imported via {0} from file '{1}' to import 'jsx' and 'jsxs' factory functions", - "1398": "Imported via {0} from file '{1}' with packageId '{2}' to import 'jsx' and 'jsxs' factory functions", - "1399": "File is included via import here.", - "1400": "Referenced via '{0}' from file '{1}'", - "1401": "File is included via reference here.", - "1402": "Type library referenced via '{0}' from file '{1}'", - "1403": "Type library referenced via '{0}' from file '{1}' with packageId '{2}'", - "1404": "File is included via type library reference here.", - "1405": "Library referenced via '{0}' from file '{1}'", - "1406": "File is included via library reference here.", - "1407": "Matched by include pattern '{0}' in '{1}'", - "1408": "File is matched by include pattern specified here.", - "1409": "Part of 'files' list in tsconfig.json", - "1410": "File is matched by 'files' list specified here.", - "1411": "Output from referenced project '{0}' included because '{1}' specified", - "1412": "Output from referenced project '{0}' included because '--module' is specified as 'none'", - "1413": "File is output from referenced project specified here.", - "1414": "Source from referenced project '{0}' included because '{1}' specified", - "1415": "Source from referenced project '{0}' included because '--module' is specified as 'none'", - "1416": "File is source from referenced project specified here.", - "1417": "Entry point of type library '{0}' specified in compilerOptions", - "1418": "Entry point of type library '{0}' specified in compilerOptions with packageId '{1}'", - "1419": "File is entry point of type library specified here.", - "1420": "Entry point for implicit type library '{0}'", - "1421": "Entry point for implicit type library '{0}' with packageId '{1}'", - "1422": "Library '{0}' specified in compilerOptions", - "1423": "File is library specified here.", - "1424": "Default library", - "1425": "Default library for target '{0}'", - "1426": "File is default library for target specified here.", - "1427": "Root file specified for compilation", - "1428": "File is output of project reference source '{0}'", - "1429": "File redirects to file '{0}'", - "1430": "The file is in the program because:", - "1431": "'for await' loops are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module.", - "1432": "Top-level 'for await' loops are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher.", - "1433": "Decorators may not be applied to 'this' parameters.", - "1434": "Unexpected keyword or identifier.", - "1435": "Unknown keyword or identifier. Did you mean '{0}'?", - "1436": "Decorators must precede the name and all keywords of property declarations.", - "1437": "Namespace must be given a name.", - "1438": "Interface must be given a name.", - "1439": "Type alias must be given a name.", - "1440": "Variable declaration not allowed at this location.", - "1441": "Cannot start a function call in a type annotation.", - "1442": "Expected '=' for property initializer.", - "1443": "Module declaration names may only use ' or \" quoted strings.", - "1444": "'{0}' is a type and must be imported using a type-only import when 'preserveValueImports' and 'isolatedModules' are both enabled.", - "1446": "'{0}' resolves to a type-only declaration and must be imported using a type-only import when 'preserveValueImports' and 'isolatedModules' are both enabled.", - "1448": "'{0}' resolves to a type-only declaration and must be re-exported using a type-only re-export when 'isolatedModules' is enabled.", - "1449": "Preserve unused imported values in the JavaScript output that would otherwise be removed.", - "1450": "Dynamic imports can only accept a module specifier and an optional assertion as arguments", - "1451": "Private identifiers are only allowed in class bodies and may only be used as part of a class member declaration, property access, or on the left-hand-side of an 'in' expression", - "1452": "'resolution-mode' assertions are only supported when `moduleResolution` is `node16` or `nodenext`.", - "1453": "`resolution-mode` should be either `require` or `import`.", - "1454": "`resolution-mode` can only be set for type-only imports.", - "1455": "`resolution-mode` is the only valid key for type import assertions.", - "1456": "Type import assertions should have exactly one key - `resolution-mode` - with value `import` or `require`.", - "1457": "Matched by default include pattern '**/*'", - "1458": "File is ECMAScript module because '{0}' has field \"type\" with value \"module\"", - "1459": "File is CommonJS module because '{0}' has field \"type\" whose value is not \"module\"", - "1460": "File is CommonJS module because '{0}' does not have field \"type\"", - "1461": "File is CommonJS module because 'package.json' was not found", - "1470": "The 'import.meta' meta-property is not allowed in files which will build into CommonJS output.", - "1471": "Module '{0}' cannot be imported using this construct. The specifier only resolves to an ES module, which cannot be imported with 'require'. Use an ECMAScript import instead.", - "1472": "'catch' or 'finally' expected.", - "1473": "An import declaration can only be used at the top level of a module.", - "1474": "An export declaration can only be used at the top level of a module.", - "1475": "Control what method is used to detect module-format JS files.", - "1476": "\"auto\": Treat files with imports, exports, import.meta, jsx (with jsx: react-jsx), or esm format (with module: node16+) as modules.", - "1477": "An instantiation expression cannot be followed by a property access.", - "1478": "Identifier or string literal expected.", - "1479": "The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"{0}\")' call instead.", - "1480": "To convert this file to an ECMAScript module, change its file extension to '{0}' or create a local package.json file with `{ \"type\": \"module\" }`.", - "1481": "To convert this file to an ECMAScript module, change its file extension to '{0}', or add the field `\"type\": \"module\"` to '{1}'.", - "1482": "To convert this file to an ECMAScript module, add the field `\"type\": \"module\"` to '{0}'.", - "1483": "To convert this file to an ECMAScript module, create a local package.json file with `{ \"type\": \"module\" }`.", - "1484": "'{0}' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.", - "1485": "'{0}' resolves to a type-only declaration and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.", - "1486": "Decorator used before 'export' here.", - "1487": "Octal escape sequences are not allowed. Use the syntax '{0}'.", - "1488": "Escape sequence '{0}' is not allowed.", - "1489": "Decimals with leading zeros are not allowed.", - "1490": "File appears to be binary.", - "1491": "'{0}' modifier cannot appear on a 'using' declaration.", - "1492": "'{0}' declarations may not have binding patterns.", - "1493": "The left-hand side of a 'for...in' statement cannot be a 'using' declaration.", - "1494": "The left-hand side of a 'for...in' statement cannot be an 'await using' declaration.", - "1495": "'{0}' modifier cannot appear on an 'await using' declaration.", - "2200": "The types of '{0}' are incompatible between these types.", - "2201": "The types returned by '{0}' are incompatible between these types.", - "2202": "Call signature return types '{0}' and '{1}' are incompatible.", - "2203": "Construct signature return types '{0}' and '{1}' are incompatible.", - "2204": "Call signatures with no arguments have incompatible return types '{0}' and '{1}'.", - "2205": "Construct signatures with no arguments have incompatible return types '{0}' and '{1}'.", - "2206": "The 'type' modifier cannot be used on a named import when 'import type' is used on its import statement.", - "2207": "The 'type' modifier cannot be used on a named export when 'export type' is used on its export statement.", - "2208": "This type parameter might need an `extends {0}` constraint.", - "2209": "The project root is ambiguous, but is required to resolve export map entry '{0}' in file '{1}'. Supply the `rootDir` compiler option to disambiguate.", - "2210": "The project root is ambiguous, but is required to resolve import map entry '{0}' in file '{1}'. Supply the `rootDir` compiler option to disambiguate.", - "2211": "Add `extends` constraint.", - "2212": "Add `extends` constraint to all type parameters", - "2300": "Duplicate identifier '{0}'.", - "2301": "Initializer of instance member variable '{0}' cannot reference identifier '{1}' declared in the constructor.", - "2302": "Static members cannot reference class type parameters.", - "2303": "Circular definition of import alias '{0}'.", - "2304": "Cannot find name '{0}'.", - "2305": "Module '{0}' has no exported member '{1}'.", - "2306": "File '{0}' is not a module.", - "2307": "Cannot find module '{0}' or its corresponding type declarations.", - "2308": "Module {0} has already exported a member named '{1}'. Consider explicitly re-exporting to resolve the ambiguity.", - "2309": "An export assignment cannot be used in a module with other exported elements.", - "2310": "Type '{0}' recursively references itself as a base type.", - "2311": "Cannot find name '{0}'. Did you mean to write this in an async function?", - "2312": "An interface can only extend an object type or intersection of object types with statically known members.", - "2313": "Type parameter '{0}' has a circular constraint.", - "2314": "Generic type '{0}' requires {1} type argument(s).", - "2315": "Type '{0}' is not generic.", - "2316": "Global type '{0}' must be a class or interface type.", - "2317": "Global type '{0}' must have {1} type parameter(s).", - "2318": "Cannot find global type '{0}'.", - "2319": "Named property '{0}' of types '{1}' and '{2}' are not identical.", - "2320": "Interface '{0}' cannot simultaneously extend types '{1}' and '{2}'.", - "2321": "Excessive stack depth comparing types '{0}' and '{1}'.", - "2322": "Type '{0}' is not assignable to type '{1}'.", - "2323": "Cannot redeclare exported variable '{0}'.", - "2324": "Property '{0}' is missing in type '{1}'.", - "2325": "Property '{0}' is private in type '{1}' but not in type '{2}'.", - "2326": "Types of property '{0}' are incompatible.", - "2327": "Property '{0}' is optional in type '{1}' but required in type '{2}'.", - "2328": "Types of parameters '{0}' and '{1}' are incompatible.", - "2329": "Index signature for type '{0}' is missing in type '{1}'.", - "2330": "'{0}' and '{1}' index signatures are incompatible.", - "2331": "'this' cannot be referenced in a module or namespace body.", - "2332": "'this' cannot be referenced in current location.", - "2333": "'this' cannot be referenced in constructor arguments.", - "2334": "'this' cannot be referenced in a static property initializer.", - "2335": "'super' can only be referenced in a derived class.", - "2336": "'super' cannot be referenced in constructor arguments.", - "2337": "Super calls are not permitted outside constructors or in nested functions inside constructors.", - "2338": "'super' property access is permitted only in a constructor, member function, or member accessor of a derived class.", - "2339": "Property '{0}' does not exist on type '{1}'.", - "2340": "Only public and protected methods of the base class are accessible via the 'super' keyword.", - "2341": "Property '{0}' is private and only accessible within class '{1}'.", - "2343": "This syntax requires an imported helper named '{1}' which does not exist in '{0}'. Consider upgrading your version of '{0}'.", - "2344": "Type '{0}' does not satisfy the constraint '{1}'.", - "2345": "Argument of type '{0}' is not assignable to parameter of type '{1}'.", - "2346": "Call target does not contain any signatures.", - "2347": "Untyped function calls may not accept type arguments.", - "2348": "Value of type '{0}' is not callable. Did you mean to include 'new'?", - "2349": "This expression is not callable.", - "2350": "Only a void function can be called with the 'new' keyword.", - "2351": "This expression is not constructable.", - "2352": "Conversion of type '{0}' to type '{1}' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.", - "2353": "Object literal may only specify known properties, and '{0}' does not exist in type '{1}'.", - "2354": "This syntax requires an imported helper but module '{0}' cannot be found.", - "2355": "A function whose declared type is neither 'void' nor 'any' must return a value.", - "2356": "An arithmetic operand must be of type 'any', 'number', 'bigint' or an enum type.", - "2357": "The operand of an increment or decrement operator must be a variable or a property access.", - "2358": "The left-hand side of an 'instanceof' expression must be of type 'any', an object type or a type parameter.", - "2359": "The right-hand side of an 'instanceof' expression must be of type 'any' or of a type assignable to the 'Function' interface type.", - "2362": "The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.", - "2363": "The right-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.", - "2364": "The left-hand side of an assignment expression must be a variable or a property access.", - "2365": "Operator '{0}' cannot be applied to types '{1}' and '{2}'.", - "2366": "Function lacks ending return statement and return type does not include 'undefined'.", - "2367": "This comparison appears to be unintentional because the types '{0}' and '{1}' have no overlap.", - "2368": "Type parameter name cannot be '{0}'.", - "2369": "A parameter property is only allowed in a constructor implementation.", - "2370": "A rest parameter must be of an array type.", - "2371": "A parameter initializer is only allowed in a function or constructor implementation.", - "2372": "Parameter '{0}' cannot reference itself.", - "2373": "Parameter '{0}' cannot reference identifier '{1}' declared after it.", - "2374": "Duplicate index signature for type '{0}'.", - "2375": "Type '{0}' is not assignable to type '{1}' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.", - "2376": "A 'super' call must be the first statement in the constructor to refer to 'super' or 'this' when a derived class contains initialized properties, parameter properties, or private identifiers.", - "2377": "Constructors for derived classes must contain a 'super' call.", - "2378": "A 'get' accessor must return a value.", - "2379": "Argument of type '{0}' is not assignable to parameter of type '{1}' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.", - "2380": "The return type of a 'get' accessor must be assignable to its 'set' accessor type", - "2383": "Overload signatures must all be exported or non-exported.", - "2384": "Overload signatures must all be ambient or non-ambient.", - "2385": "Overload signatures must all be public, private or protected.", - "2386": "Overload signatures must all be optional or required.", - "2387": "Function overload must be static.", - "2388": "Function overload must not be static.", - "2389": "Function implementation name must be '{0}'.", - "2390": "Constructor implementation is missing.", - "2391": "Function implementation is missing or not immediately following the declaration.", - "2392": "Multiple constructor implementations are not allowed.", - "2393": "Duplicate function implementation.", - "2394": "This overload signature is not compatible with its implementation signature.", - "2395": "Individual declarations in merged declaration '{0}' must be all exported or all local.", - "2396": "Duplicate identifier 'arguments'. Compiler uses 'arguments' to initialize rest parameters.", - "2397": "Declaration name conflicts with built-in global identifier '{0}'.", - "2398": "'constructor' cannot be used as a parameter property name.", - "2399": "Duplicate identifier '_this'. Compiler uses variable declaration '_this' to capture 'this' reference.", - "2400": "Expression resolves to variable declaration '_this' that compiler uses to capture 'this' reference.", - "2401": "A 'super' call must be a root-level statement within a constructor of a derived class that contains initialized properties, parameter properties, or private identifiers.", - "2402": "Expression resolves to '_super' that compiler uses to capture base class reference.", - "2403": "Subsequent variable declarations must have the same type. Variable '{0}' must be of type '{1}', but here has type '{2}'.", - "2404": "The left-hand side of a 'for...in' statement cannot use a type annotation.", - "2405": "The left-hand side of a 'for...in' statement must be of type 'string' or 'any'.", - "2406": "The left-hand side of a 'for...in' statement must be a variable or a property access.", - "2407": "The right-hand side of a 'for...in' statement must be of type 'any', an object type or a type parameter, but here has type '{0}'.", - "2408": "Setters cannot return a value.", - "2409": "Return type of constructor signature must be assignable to the instance type of the class.", - "2410": "The 'with' statement is not supported. All symbols in a 'with' block will have type 'any'.", - "2411": "Property '{0}' of type '{1}' is not assignable to '{2}' index type '{3}'.", - "2412": "Type '{0}' is not assignable to type '{1}' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the type of the target.", - "2413": "'{0}' index type '{1}' is not assignable to '{2}' index type '{3}'.", - "2414": "Class name cannot be '{0}'.", - "2415": "Class '{0}' incorrectly extends base class '{1}'.", - "2416": "Property '{0}' in type '{1}' is not assignable to the same property in base type '{2}'.", - "2417": "Class static side '{0}' incorrectly extends base class static side '{1}'.", - "2418": "Type of computed property's value is '{0}', which is not assignable to type '{1}'.", - "2419": "Types of construct signatures are incompatible.", - "2420": "Class '{0}' incorrectly implements interface '{1}'.", - "2422": "A class can only implement an object type or intersection of object types with statically known members.", - "2423": "Class '{0}' defines instance member function '{1}', but extended class '{2}' defines it as instance member accessor.", - "2425": "Class '{0}' defines instance member property '{1}', but extended class '{2}' defines it as instance member function.", - "2426": "Class '{0}' defines instance member accessor '{1}', but extended class '{2}' defines it as instance member function.", - "2427": "Interface name cannot be '{0}'.", - "2428": "All declarations of '{0}' must have identical type parameters.", - "2430": "Interface '{0}' incorrectly extends interface '{1}'.", - "2431": "Enum name cannot be '{0}'.", - "2432": "In an enum with multiple declarations, only one declaration can omit an initializer for its first enum element.", - "2433": "A namespace declaration cannot be in a different file from a class or function with which it is merged.", - "2434": "A namespace declaration cannot be located prior to a class or function with which it is merged.", - "2435": "Ambient modules cannot be nested in other modules or namespaces.", - "2436": "Ambient module declaration cannot specify relative module name.", - "2437": "Module '{0}' is hidden by a local declaration with the same name.", - "2438": "Import name cannot be '{0}'.", - "2439": "Import or export declaration in an ambient module declaration cannot reference module through relative module name.", - "2440": "Import declaration conflicts with local declaration of '{0}'.", - "2441": "Duplicate identifier '{0}'. Compiler reserves name '{1}' in top level scope of a module.", - "2442": "Types have separate declarations of a private property '{0}'.", - "2443": "Property '{0}' is protected but type '{1}' is not a class derived from '{2}'.", - "2444": "Property '{0}' is protected in type '{1}' but public in type '{2}'.", - "2445": "Property '{0}' is protected and only accessible within class '{1}' and its subclasses.", - "2446": "Property '{0}' is protected and only accessible through an instance of class '{1}'. This is an instance of class '{2}'.", - "2447": "The '{0}' operator is not allowed for boolean types. Consider using '{1}' instead.", - "2448": "Block-scoped variable '{0}' used before its declaration.", - "2449": "Class '{0}' used before its declaration.", - "2450": "Enum '{0}' used before its declaration.", - "2451": "Cannot redeclare block-scoped variable '{0}'.", - "2452": "An enum member cannot have a numeric name.", - "2454": "Variable '{0}' is used before being assigned.", - "2456": "Type alias '{0}' circularly references itself.", - "2457": "Type alias name cannot be '{0}'.", - "2458": "An AMD module cannot have multiple name assignments.", - "2459": "Module '{0}' declares '{1}' locally, but it is not exported.", - "2460": "Module '{0}' declares '{1}' locally, but it is exported as '{2}'.", - "2461": "Type '{0}' is not an array type.", - "2462": "A rest element must be last in a destructuring pattern.", - "2463": "A binding pattern parameter cannot be optional in an implementation signature.", - "2464": "A computed property name must be of type 'string', 'number', 'symbol', or 'any'.", - "2465": "'this' cannot be referenced in a computed property name.", - "2466": "'super' cannot be referenced in a computed property name.", - "2467": "A computed property name cannot reference a type parameter from its containing type.", - "2468": "Cannot find global value '{0}'.", - "2469": "The '{0}' operator cannot be applied to type 'symbol'.", - "2472": "Spread operator in 'new' expressions is only available when targeting ECMAScript 5 and higher.", - "2473": "Enum declarations must all be const or non-const.", - "2474": "const enum member initializers must be constant expressions.", - "2475": "'const' enums can only be used in property or index access expressions or the right hand side of an import declaration or export assignment or type query.", - "2476": "A const enum member can only be accessed using a string literal.", - "2477": "'const' enum member initializer was evaluated to a non-finite value.", - "2478": "'const' enum member initializer was evaluated to disallowed value 'NaN'.", - "2480": "'let' is not allowed to be used as a name in 'let' or 'const' declarations.", - "2481": "Cannot initialize outer scoped variable '{0}' in the same scope as block scoped declaration '{1}'.", - "2483": "The left-hand side of a 'for...of' statement cannot use a type annotation.", - "2484": "Export declaration conflicts with exported declaration of '{0}'.", - "2487": "The left-hand side of a 'for...of' statement must be a variable or a property access.", - "2488": "Type '{0}' must have a '[Symbol.iterator]()' method that returns an iterator.", - "2489": "An iterator must have a 'next()' method.", - "2490": "The type returned by the '{0}()' method of an iterator must have a 'value' property.", - "2491": "The left-hand side of a 'for...in' statement cannot be a destructuring pattern.", - "2492": "Cannot redeclare identifier '{0}' in catch clause.", - "2493": "Tuple type '{0}' of length '{1}' has no element at index '{2}'.", - "2494": "Using a string in a 'for...of' statement is only supported in ECMAScript 5 and higher.", - "2495": "Type '{0}' is not an array type or a string type.", - "2496": "The 'arguments' object cannot be referenced in an arrow function in ES3 and ES5. Consider using a standard function expression.", - "2497": "This module can only be referenced with ECMAScript imports/exports by turning on the '{0}' flag and referencing its default export.", - "2498": "Module '{0}' uses 'export =' and cannot be used with 'export *'.", - "2499": "An interface can only extend an identifier/qualified-name with optional type arguments.", - "2500": "A class can only implement an identifier/qualified-name with optional type arguments.", - "2501": "A rest element cannot contain a binding pattern.", - "2502": "'{0}' is referenced directly or indirectly in its own type annotation.", - "2503": "Cannot find namespace '{0}'.", - "2504": "Type '{0}' must have a '[Symbol.asyncIterator]()' method that returns an async iterator.", - "2505": "A generator cannot have a 'void' type annotation.", - "2506": "'{0}' is referenced directly or indirectly in its own base expression.", - "2507": "Type '{0}' is not a constructor function type.", - "2508": "No base constructor has the specified number of type arguments.", - "2509": "Base constructor return type '{0}' is not an object type or intersection of object types with statically known members.", - "2510": "Base constructors must all have the same return type.", - "2511": "Cannot create an instance of an abstract class.", - "2512": "Overload signatures must all be abstract or non-abstract.", - "2513": "Abstract method '{0}' in class '{1}' cannot be accessed via super expression.", - "2514": "A tuple type cannot be indexed with a negative value.", - "2515": "Non-abstract class '{0}' does not implement inherited abstract member '{1}' from class '{2}'.", - "2516": "All declarations of an abstract method must be consecutive.", - "2517": "Cannot assign an abstract constructor type to a non-abstract constructor type.", - "2518": "A 'this'-based type guard is not compatible with a parameter-based type guard.", - "2519": "An async iterator must have a 'next()' method.", - "2520": "Duplicate identifier '{0}'. Compiler uses declaration '{1}' to support async functions.", - "2522": "The 'arguments' object cannot be referenced in an async function or method in ES3 and ES5. Consider using a standard function or method.", - "2523": "'yield' expressions cannot be used in a parameter initializer.", - "2524": "'await' expressions cannot be used in a parameter initializer.", - "2525": "Initializer provides no value for this binding element and the binding element has no default value.", - "2526": "A 'this' type is available only in a non-static member of a class or interface.", - "2527": "The inferred type of '{0}' references an inaccessible '{1}' type. A type annotation is necessary.", - "2528": "A module cannot have multiple default exports.", - "2529": "Duplicate identifier '{0}'. Compiler reserves name '{1}' in top level scope of a module containing async functions.", - "2530": "Property '{0}' is incompatible with index signature.", - "2531": "Object is possibly 'null'.", - "2532": "Object is possibly 'undefined'.", - "2533": "Object is possibly 'null' or 'undefined'.", - "2534": "A function returning 'never' cannot have a reachable end point.", - "2536": "Type '{0}' cannot be used to index type '{1}'.", - "2537": "Type '{0}' has no matching index signature for type '{1}'.", - "2538": "Type '{0}' cannot be used as an index type.", - "2539": "Cannot assign to '{0}' because it is not a variable.", - "2540": "Cannot assign to '{0}' because it is a read-only property.", - "2542": "Index signature in type '{0}' only permits reading.", - "2543": "Duplicate identifier '_newTarget'. Compiler uses variable declaration '_newTarget' to capture 'new.target' meta-property reference.", - "2544": "Expression resolves to variable declaration '_newTarget' that compiler uses to capture 'new.target' meta-property reference.", - "2545": "A mixin class must have a constructor with a single rest parameter of type 'any[]'.", - "2547": "The type returned by the '{0}()' method of an async iterator must be a promise for a type with a 'value' property.", - "2548": "Type '{0}' is not an array type or does not have a '[Symbol.iterator]()' method that returns an iterator.", - "2549": "Type '{0}' is not an array type or a string type or does not have a '[Symbol.iterator]()' method that returns an iterator.", - "2550": "Property '{0}' does not exist on type '{1}'. Do you need to change your target library? Try changing the 'lib' compiler option to '{2}' or later.", - "2551": "Property '{0}' does not exist on type '{1}'. Did you mean '{2}'?", - "2552": "Cannot find name '{0}'. Did you mean '{1}'?", - "2553": "Computed values are not permitted in an enum with string valued members.", - "2554": "Expected {0} arguments, but got {1}.", - "2555": "Expected at least {0} arguments, but got {1}.", - "2556": "A spread argument must either have a tuple type or be passed to a rest parameter.", - "2558": "Expected {0} type arguments, but got {1}.", - "2559": "Type '{0}' has no properties in common with type '{1}'.", - "2560": "Value of type '{0}' has no properties in common with type '{1}'. Did you mean to call it?", - "2561": "Object literal may only specify known properties, but '{0}' does not exist in type '{1}'. Did you mean to write '{2}'?", - "2562": "Base class expressions cannot reference class type parameters.", - "2563": "The containing function or module body is too large for control flow analysis.", - "2564": "Property '{0}' has no initializer and is not definitely assigned in the constructor.", - "2565": "Property '{0}' is used before being assigned.", - "2566": "A rest element cannot have a property name.", - "2567": "Enum declarations can only merge with namespace or other enum declarations.", - "2568": "Property '{0}' may not exist on type '{1}'. Did you mean '{2}'?", - "2570": "Could not find name '{0}'. Did you mean '{1}'?", - "2571": "Object is of type 'unknown'.", - "2574": "A rest element type must be an array type.", - "2575": "No overload expects {0} arguments, but overloads do exist that expect either {1} or {2} arguments.", - "2576": "Property '{0}' does not exist on type '{1}'. Did you mean to access the static member '{2}' instead?", - "2577": "Return type annotation circularly references itself.", - "2578": "Unused '@ts-expect-error' directive.", - "2580": "Cannot find name '{0}'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node`.", - "2581": "Cannot find name '{0}'. Do you need to install type definitions for jQuery? Try `npm i --save-dev @types/jquery`.", - "2582": "Cannot find name '{0}'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`.", - "2583": "Cannot find name '{0}'. Do you need to change your target library? Try changing the 'lib' compiler option to '{1}' or later.", - "2584": "Cannot find name '{0}'. Do you need to change your target library? Try changing the 'lib' compiler option to include 'dom'.", - "2585": "'{0}' only refers to a type, but is being used as a value here. Do you need to change your target library? Try changing the 'lib' compiler option to es2015 or later.", - "2588": "Cannot assign to '{0}' because it is a constant.", - "2589": "Type instantiation is excessively deep and possibly infinite.", - "2590": "Expression produces a union type that is too complex to represent.", - "2591": "Cannot find name '{0}'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node` and then add 'node' to the types field in your tsconfig.", - "2592": "Cannot find name '{0}'. Do you need to install type definitions for jQuery? Try `npm i --save-dev @types/jquery` and then add 'jquery' to the types field in your tsconfig.", - "2593": "Cannot find name '{0}'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig.", - "2594": "This module is declared with 'export =', and can only be used with a default import when using the '{0}' flag.", - "2595": "'{0}' can only be imported by using a default import.", - "2596": "'{0}' can only be imported by turning on the 'esModuleInterop' flag and using a default import.", - "2597": "'{0}' can only be imported by using a 'require' call or by using a default import.", - "2598": "'{0}' can only be imported by using a 'require' call or by turning on the 'esModuleInterop' flag and using a default import.", - "2602": "JSX element implicitly has type 'any' because the global type 'JSX.Element' does not exist.", - "2603": "Property '{0}' in type '{1}' is not assignable to type '{2}'.", - "2604": "JSX element type '{0}' does not have any construct or call signatures.", - "2606": "Property '{0}' of JSX spread attribute is not assignable to target property.", - "2607": "JSX element class does not support attributes because it does not have a '{0}' property.", - "2608": "The global type 'JSX.{0}' may not have more than one property.", - "2609": "JSX spread child must be an array type.", - "2610": "'{0}' is defined as an accessor in class '{1}', but is overridden here in '{2}' as an instance property.", - "2611": "'{0}' is defined as a property in class '{1}', but is overridden here in '{2}' as an accessor.", - "2612": "Property '{0}' will overwrite the base property in '{1}'. If this is intentional, add an initializer. Otherwise, add a 'declare' modifier or remove the redundant declaration.", - "2613": "Module '{0}' has no default export. Did you mean to use 'import { {1} } from {0}' instead?", - "2614": "Module '{0}' has no exported member '{1}'. Did you mean to use 'import {1} from {0}' instead?", - "2615": "Type of property '{0}' circularly references itself in mapped type '{1}'.", - "2616": "'{0}' can only be imported by using 'import {1} = require({2})' or a default import.", - "2617": "'{0}' can only be imported by using 'import {1} = require({2})' or by turning on the 'esModuleInterop' flag and using a default import.", - "2618": "Source has {0} element(s) but target requires {1}.", - "2619": "Source has {0} element(s) but target allows only {1}.", - "2620": "Target requires {0} element(s) but source may have fewer.", - "2621": "Target allows only {0} element(s) but source may have more.", - "2623": "Source provides no match for required element at position {0} in target.", - "2624": "Source provides no match for variadic element at position {0} in target.", - "2625": "Variadic element at position {0} in source does not match element at position {1} in target.", - "2626": "Type at position {0} in source is not compatible with type at position {1} in target.", - "2627": "Type at positions {0} through {1} in source is not compatible with type at position {2} in target.", - "2628": "Cannot assign to '{0}' because it is an enum.", - "2629": "Cannot assign to '{0}' because it is a class.", - "2630": "Cannot assign to '{0}' because it is a function.", - "2631": "Cannot assign to '{0}' because it is a namespace.", - "2632": "Cannot assign to '{0}' because it is an import.", - "2633": "JSX property access expressions cannot include JSX namespace names", - "2634": "'{0}' index signatures are incompatible.", - "2635": "Type '{0}' has no signatures for which the type argument list is applicable.", - "2636": "Type '{0}' is not assignable to type '{1}' as implied by variance annotation.", - "2637": "Variance annotations are only supported in type aliases for object, function, constructor, and mapped types.", - "2638": "Type '{0}' may represent a primitive value, which is not permitted as the right operand of the 'in' operator.", - "2639": "React components cannot include JSX namespace names", - "2649": "Cannot augment module '{0}' with value exports because it resolves to a non-module entity.", - "2651": "A member initializer in a enum declaration cannot reference members declared after it, including members defined in other enums.", - "2652": "Merged declaration '{0}' cannot include a default export declaration. Consider adding a separate 'export default {0}' declaration instead.", - "2653": "Non-abstract class expression does not implement inherited abstract member '{0}' from class '{1}'.", - "2657": "JSX expressions must have one parent element.", - "2658": "Type '{0}' provides no match for the signature '{1}'.", - "2659": "'super' is only allowed in members of object literal expressions when option 'target' is 'ES2015' or higher.", - "2660": "'super' can only be referenced in members of derived classes or object literal expressions.", - "2661": "Cannot export '{0}'. Only local declarations can be exported from a module.", - "2662": "Cannot find name '{0}'. Did you mean the static member '{1}.{0}'?", - "2663": "Cannot find name '{0}'. Did you mean the instance member 'this.{0}'?", - "2664": "Invalid module name in augmentation, module '{0}' cannot be found.", - "2665": "Invalid module name in augmentation. Module '{0}' resolves to an untyped module at '{1}', which cannot be augmented.", - "2666": "Exports and export assignments are not permitted in module augmentations.", - "2667": "Imports are not permitted in module augmentations. Consider moving them to the enclosing external module.", - "2668": "'export' modifier cannot be applied to ambient modules and module augmentations since they are always visible.", - "2669": "Augmentations for the global scope can only be directly nested in external modules or ambient module declarations.", - "2670": "Augmentations for the global scope should have 'declare' modifier unless they appear in already ambient context.", - "2671": "Cannot augment module '{0}' because it resolves to a non-module entity.", - "2672": "Cannot assign a '{0}' constructor type to a '{1}' constructor type.", - "2673": "Constructor of class '{0}' is private and only accessible within the class declaration.", - "2674": "Constructor of class '{0}' is protected and only accessible within the class declaration.", - "2675": "Cannot extend a class '{0}'. Class constructor is marked as private.", - "2676": "Accessors must both be abstract or non-abstract.", - "2677": "A type predicate's type must be assignable to its parameter's type.", - "2678": "Type '{0}' is not comparable to type '{1}'.", - "2679": "A function that is called with the 'new' keyword cannot have a 'this' type that is 'void'.", - "2680": "A '{0}' parameter must be the first parameter.", - "2681": "A constructor cannot have a 'this' parameter.", - "2683": "'this' implicitly has type 'any' because it does not have a type annotation.", - "2684": "The 'this' context of type '{0}' is not assignable to method's 'this' of type '{1}'.", - "2685": "The 'this' types of each signature are incompatible.", - "2686": "'{0}' refers to a UMD global, but the current file is a module. Consider adding an import instead.", - "2687": "All declarations of '{0}' must have identical modifiers.", - "2688": "Cannot find type definition file for '{0}'.", - "2689": "Cannot extend an interface '{0}'. Did you mean 'implements'?", - "2690": "'{0}' only refers to a type, but is being used as a value here. Did you mean to use '{1} in {0}'?", - "2691": "An import path cannot end with a '{0}' extension. Consider importing '{1}' instead.", - "2692": "'{0}' is a primitive, but '{1}' is a wrapper object. Prefer using '{0}' when possible.", - "2693": "'{0}' only refers to a type, but is being used as a value here.", - "2694": "Namespace '{0}' has no exported member '{1}'.", - "2695": "Left side of comma operator is unused and has no side effects.", - "2696": "The 'Object' type is assignable to very few other types. Did you mean to use the 'any' type instead?", - "2697": "An async function or method must return a 'Promise'. Make sure you have a declaration for 'Promise' or include 'ES2015' in your '--lib' option.", - "2698": "Spread types may only be created from object types.", - "2699": "Static property '{0}' conflicts with built-in property 'Function.{0}' of constructor function '{1}'.", - "2700": "Rest types may only be created from object types.", - "2701": "The target of an object rest assignment must be a variable or a property access.", - "2702": "'{0}' only refers to a type, but is being used as a namespace here.", - "2703": "The operand of a 'delete' operator must be a property reference.", - "2704": "The operand of a 'delete' operator cannot be a read-only property.", - "2705": "An async function or method in ES5/ES3 requires the 'Promise' constructor. Make sure you have a declaration for the 'Promise' constructor or include 'ES2015' in your '--lib' option.", - "2706": "Required type parameters may not follow optional type parameters.", - "2707": "Generic type '{0}' requires between {1} and {2} type arguments.", - "2708": "Cannot use namespace '{0}' as a value.", - "2709": "Cannot use namespace '{0}' as a type.", - "2710": "'{0}' are specified twice. The attribute named '{0}' will be overwritten.", - "2711": "A dynamic import call returns a 'Promise'. Make sure you have a declaration for 'Promise' or include 'ES2015' in your '--lib' option.", - "2712": "A dynamic import call in ES5/ES3 requires the 'Promise' constructor. Make sure you have a declaration for the 'Promise' constructor or include 'ES2015' in your '--lib' option.", - "2713": "Cannot access '{0}.{1}' because '{0}' is a type, but not a namespace. Did you mean to retrieve the type of the property '{1}' in '{0}' with '{0}[\"{1}\"]'?", - "2714": "The expression of an export assignment must be an identifier or qualified name in an ambient context.", - "2715": "Abstract property '{0}' in class '{1}' cannot be accessed in the constructor.", - "2716": "Type parameter '{0}' has a circular default.", - "2717": "Subsequent property declarations must have the same type. Property '{0}' must be of type '{1}', but here has type '{2}'.", - "2718": "Duplicate property '{0}'.", - "2719": "Type '{0}' is not assignable to type '{1}'. Two different types with this name exist, but they are unrelated.", - "2720": "Class '{0}' incorrectly implements class '{1}'. Did you mean to extend '{1}' and inherit its members as a subclass?", - "2721": "Cannot invoke an object which is possibly 'null'.", - "2722": "Cannot invoke an object which is possibly 'undefined'.", - "2723": "Cannot invoke an object which is possibly 'null' or 'undefined'.", - "2724": "'{0}' has no exported member named '{1}'. Did you mean '{2}'?", - "2725": "Class name cannot be 'Object' when targeting ES5 with module {0}.", - "2726": "Cannot find lib definition for '{0}'.", - "2727": "Cannot find lib definition for '{0}'. Did you mean '{1}'?", - "2728": "'{0}' is declared here.", - "2729": "Property '{0}' is used before its initialization.", - "2730": "An arrow function cannot have a 'this' parameter.", - "2731": "Implicit conversion of a 'symbol' to a 'string' will fail at runtime. Consider wrapping this expression in 'String(...)'.", - "2732": "Cannot find module '{0}'. Consider using '--resolveJsonModule' to import module with '.json' extension.", - "2733": "Property '{0}' was also declared here.", - "2734": "Are you missing a semicolon?", - "2735": "Did you mean for '{0}' to be constrained to type 'new (...args: any[]) => {1}'?", - "2736": "Operator '{0}' cannot be applied to type '{1}'.", - "2737": "BigInt literals are not available when targeting lower than ES2020.", - "2738": "An outer value of 'this' is shadowed by this container.", - "2739": "Type '{0}' is missing the following properties from type '{1}': {2}", - "2740": "Type '{0}' is missing the following properties from type '{1}': {2}, and {3} more.", - "2741": "Property '{0}' is missing in type '{1}' but required in type '{2}'.", - "2742": "The inferred type of '{0}' cannot be named without a reference to '{1}'. This is likely not portable. A type annotation is necessary.", - "2743": "No overload expects {0} type arguments, but overloads do exist that expect either {1} or {2} type arguments.", - "2744": "Type parameter defaults can only reference previously declared type parameters.", - "2745": "This JSX tag's '{0}' prop expects type '{1}' which requires multiple children, but only a single child was provided.", - "2746": "This JSX tag's '{0}' prop expects a single child of type '{1}', but multiple children were provided.", - "2747": "'{0}' components don't accept text as child elements. Text in JSX has the type 'string', but the expected type of '{1}' is '{2}'.", - "2748": "Cannot access ambient const enums when the '--isolatedModules' flag is provided.", - "2749": "'{0}' refers to a value, but is being used as a type here. Did you mean 'typeof {0}'?", - "2750": "The implementation signature is declared here.", - "2751": "Circularity originates in type at this location.", - "2752": "The first export default is here.", - "2753": "Another export default is here.", - "2754": "'super' may not use type arguments.", - "2755": "No constituent of type '{0}' is callable.", - "2756": "Not all constituents of type '{0}' are callable.", - "2757": "Type '{0}' has no call signatures.", - "2758": "Each member of the union type '{0}' has signatures, but none of those signatures are compatible with each other.", - "2759": "No constituent of type '{0}' is constructable.", - "2760": "Not all constituents of type '{0}' are constructable.", - "2761": "Type '{0}' has no construct signatures.", - "2762": "Each member of the union type '{0}' has construct signatures, but none of those signatures are compatible with each other.", - "2763": "Cannot iterate value because the 'next' method of its iterator expects type '{1}', but for-of will always send '{0}'.", - "2764": "Cannot iterate value because the 'next' method of its iterator expects type '{1}', but array spread will always send '{0}'.", - "2765": "Cannot iterate value because the 'next' method of its iterator expects type '{1}', but array destructuring will always send '{0}'.", - "2766": "Cannot delegate iteration to value because the 'next' method of its iterator expects type '{1}', but the containing generator will always send '{0}'.", - "2767": "The '{0}' property of an iterator must be a method.", - "2768": "The '{0}' property of an async iterator must be a method.", - "2769": "No overload matches this call.", - "2770": "The last overload gave the following error.", - "2771": "The last overload is declared here.", - "2772": "Overload {0} of {1}, '{2}', gave the following error.", - "2773": "Did you forget to use 'await'?", - "2774": "This condition will always return true since this function is always defined. Did you mean to call it instead?", - "2775": "Assertions require every name in the call target to be declared with an explicit type annotation.", - "2776": "Assertions require the call target to be an identifier or qualified name.", - "2777": "The operand of an increment or decrement operator may not be an optional property access.", - "2778": "The target of an object rest assignment may not be an optional property access.", - "2779": "The left-hand side of an assignment expression may not be an optional property access.", - "2780": "The left-hand side of a 'for...in' statement may not be an optional property access.", - "2781": "The left-hand side of a 'for...of' statement may not be an optional property access.", - "2782": "'{0}' needs an explicit type annotation.", - "2783": "'{0}' is specified more than once, so this usage will be overwritten.", - "2784": "'get' and 'set' accessors cannot declare 'this' parameters.", - "2785": "This spread always overwrites this property.", - "2786": "'{0}' cannot be used as a JSX component.", - "2787": "Its return type '{0}' is not a valid JSX element.", - "2788": "Its instance type '{0}' is not a valid JSX element.", - "2789": "Its element type '{0}' is not a valid JSX element.", - "2790": "The operand of a 'delete' operator must be optional.", - "2791": "Exponentiation cannot be performed on 'bigint' values unless the 'target' option is set to 'es2016' or later.", - "2792": "Cannot find module '{0}'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option?", - "2793": "The call would have succeeded against this implementation, but implementation signatures of overloads are not externally visible.", - "2794": "Expected {0} arguments, but got {1}. Did you forget to include 'void' in your type argument to 'Promise'?", - "2795": "The 'intrinsic' keyword can only be used to declare compiler provided intrinsic types.", - "2796": "It is likely that you are missing a comma to separate these two template expressions. They form a tagged template expression which cannot be invoked.", - "2797": "A mixin class that extends from a type variable containing an abstract construct signature must also be declared 'abstract'.", - "2798": "The declaration was marked as deprecated here.", - "2799": "Type produces a tuple type that is too large to represent.", - "2800": "Expression produces a tuple type that is too large to represent.", - "2801": "This condition will always return true since this '{0}' is always defined.", - "2802": "Type '{0}' can only be iterated through when using the '--downlevelIteration' flag or with a '--target' of 'es2015' or higher.", - "2803": "Cannot assign to private method '{0}'. Private methods are not writable.", - "2804": "Duplicate identifier '{0}'. Static and instance elements cannot share the same private name.", - "2806": "Private accessor was defined without a getter.", - "2807": "This syntax requires an imported helper named '{1}' with {2} parameters, which is not compatible with the one in '{0}'. Consider upgrading your version of '{0}'.", - "2808": "A get accessor must be at least as accessible as the setter", - "2809": "Declaration or statement expected. This '=' follows a block of statements, so if you intended to write a destructuring assignment, you might need to wrap the the whole assignment in parentheses.", - "2810": "Expected 1 argument, but got 0. 'new Promise()' needs a JSDoc hint to produce a 'resolve' that can be called without arguments.", - "2811": "Initializer for property '{0}'", - "2812": "Property '{0}' does not exist on type '{1}'. Try changing the 'lib' compiler option to include 'dom'.", - "2813": "Class declaration cannot implement overload list for '{0}'.", - "2814": "Function with bodies can only merge with classes that are ambient.", - "2815": "'arguments' cannot be referenced in property initializers.", - "2816": "Cannot use 'this' in a static property initializer of a decorated class.", - "2817": "Property '{0}' has no initializer and is not definitely assigned in a class static block.", - "2818": "Duplicate identifier '{0}'. Compiler reserves name '{1}' when emitting 'super' references in static initializers.", - "2819": "Namespace name cannot be '{0}'.", - "2820": "Type '{0}' is not assignable to type '{1}'. Did you mean '{2}'?", - "2821": "Import assertions are only supported when the '--module' option is set to 'esnext' or 'nodenext'.", - "2822": "Import assertions cannot be used with type-only imports or exports.", - "2833": "Cannot find namespace '{0}'. Did you mean '{1}'?", - "2834": "Relative import paths need explicit file extensions in EcmaScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.", - "2835": "Relative import paths need explicit file extensions in EcmaScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '{0}'?", - "2836": "Import assertions are not allowed on statements that transpile to commonjs 'require' calls.", - "2837": "Import assertion values must be string literal expressions.", - "2838": "All declarations of '{0}' must have identical constraints.", - "2839": "This condition will always return '{0}' since JavaScript compares objects by reference, not value.", - "2840": "An interface cannot extend a primitive type like '{0}'; an interface can only extend named types and classes", - "2841": "The type of this expression cannot be named without a 'resolution-mode' assertion, which is an unstable feature. Use nightly TypeScript to silence this error. Try updating with 'npm install -D typescript@next'.", - "2842": "'{0}' is an unused renaming of '{1}'. Did you intend to use it as a type annotation?", - "2843": "We can only write a type for '{0}' by adding a type for the entire parameter here.", - "2844": "Type of instance member variable '{0}' cannot reference identifier '{1}' declared in the constructor.", - "2845": "This condition will always return '{0}'.", - "2846": "A declaration file cannot be imported without 'import type'. Did you mean to import an implementation file '{0}' instead?", - "2848": "The right-hand side of an 'instanceof' expression must not be an instantiation expression.", - "2849": "Target signature provides too few arguments. Expected {0} or more, but got {1}.", - "2850": "The initializer of a 'using' declaration must be either an object with a '[Symbol.dispose]()' method, or be 'null' or 'undefined'.", - "2851": "The initializer of an 'await using' declaration must be either an object with a '[Symbol.asyncDispose]()' or '[Symbol.dispose]()' method, or be 'null' or 'undefined'.", - "2852": "'await using' statements are only allowed within async functions and at the top levels of modules.", - "2853": "'await using' statements are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module.", - "2854": "Top-level 'await using' statements are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher.", - "4000": "Import declaration '{0}' is using private name '{1}'.", - "4002": "Type parameter '{0}' of exported class has or is using private name '{1}'.", - "4004": "Type parameter '{0}' of exported interface has or is using private name '{1}'.", - "4006": "Type parameter '{0}' of constructor signature from exported interface has or is using private name '{1}'.", - "4008": "Type parameter '{0}' of call signature from exported interface has or is using private name '{1}'.", - "4010": "Type parameter '{0}' of public static method from exported class has or is using private name '{1}'.", - "4012": "Type parameter '{0}' of public method from exported class has or is using private name '{1}'.", - "4014": "Type parameter '{0}' of method from exported interface has or is using private name '{1}'.", - "4016": "Type parameter '{0}' of exported function has or is using private name '{1}'.", - "4019": "Implements clause of exported class '{0}' has or is using private name '{1}'.", - "4020": "'extends' clause of exported class '{0}' has or is using private name '{1}'.", - "4021": "'extends' clause of exported class has or is using private name '{0}'.", - "4022": "'extends' clause of exported interface '{0}' has or is using private name '{1}'.", - "4023": "Exported variable '{0}' has or is using name '{1}' from external module {2} but cannot be named.", - "4024": "Exported variable '{0}' has or is using name '{1}' from private module '{2}'.", - "4025": "Exported variable '{0}' has or is using private name '{1}'.", - "4026": "Public static property '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named.", - "4027": "Public static property '{0}' of exported class has or is using name '{1}' from private module '{2}'.", - "4028": "Public static property '{0}' of exported class has or is using private name '{1}'.", - "4029": "Public property '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named.", - "4030": "Public property '{0}' of exported class has or is using name '{1}' from private module '{2}'.", - "4031": "Public property '{0}' of exported class has or is using private name '{1}'.", - "4032": "Property '{0}' of exported interface has or is using name '{1}' from private module '{2}'.", - "4033": "Property '{0}' of exported interface has or is using private name '{1}'.", - "4034": "Parameter type of public static setter '{0}' from exported class has or is using name '{1}' from private module '{2}'.", - "4035": "Parameter type of public static setter '{0}' from exported class has or is using private name '{1}'.", - "4036": "Parameter type of public setter '{0}' from exported class has or is using name '{1}' from private module '{2}'.", - "4037": "Parameter type of public setter '{0}' from exported class has or is using private name '{1}'.", - "4038": "Return type of public static getter '{0}' from exported class has or is using name '{1}' from external module {2} but cannot be named.", - "4039": "Return type of public static getter '{0}' from exported class has or is using name '{1}' from private module '{2}'.", - "4040": "Return type of public static getter '{0}' from exported class has or is using private name '{1}'.", - "4041": "Return type of public getter '{0}' from exported class has or is using name '{1}' from external module {2} but cannot be named.", - "4042": "Return type of public getter '{0}' from exported class has or is using name '{1}' from private module '{2}'.", - "4043": "Return type of public getter '{0}' from exported class has or is using private name '{1}'.", - "4044": "Return type of constructor signature from exported interface has or is using name '{0}' from private module '{1}'.", - "4045": "Return type of constructor signature from exported interface has or is using private name '{0}'.", - "4046": "Return type of call signature from exported interface has or is using name '{0}' from private module '{1}'.", - "4047": "Return type of call signature from exported interface has or is using private name '{0}'.", - "4048": "Return type of index signature from exported interface has or is using name '{0}' from private module '{1}'.", - "4049": "Return type of index signature from exported interface has or is using private name '{0}'.", - "4050": "Return type of public static method from exported class has or is using name '{0}' from external module {1} but cannot be named.", - "4051": "Return type of public static method from exported class has or is using name '{0}' from private module '{1}'.", - "4052": "Return type of public static method from exported class has or is using private name '{0}'.", - "4053": "Return type of public method from exported class has or is using name '{0}' from external module {1} but cannot be named.", - "4054": "Return type of public method from exported class has or is using name '{0}' from private module '{1}'.", - "4055": "Return type of public method from exported class has or is using private name '{0}'.", - "4056": "Return type of method from exported interface has or is using name '{0}' from private module '{1}'.", - "4057": "Return type of method from exported interface has or is using private name '{0}'.", - "4058": "Return type of exported function has or is using name '{0}' from external module {1} but cannot be named.", - "4059": "Return type of exported function has or is using name '{0}' from private module '{1}'.", - "4060": "Return type of exported function has or is using private name '{0}'.", - "4061": "Parameter '{0}' of constructor from exported class has or is using name '{1}' from external module {2} but cannot be named.", - "4062": "Parameter '{0}' of constructor from exported class has or is using name '{1}' from private module '{2}'.", - "4063": "Parameter '{0}' of constructor from exported class has or is using private name '{1}'.", - "4064": "Parameter '{0}' of constructor signature from exported interface has or is using name '{1}' from private module '{2}'.", - "4065": "Parameter '{0}' of constructor signature from exported interface has or is using private name '{1}'.", - "4066": "Parameter '{0}' of call signature from exported interface has or is using name '{1}' from private module '{2}'.", - "4067": "Parameter '{0}' of call signature from exported interface has or is using private name '{1}'.", - "4068": "Parameter '{0}' of public static method from exported class has or is using name '{1}' from external module {2} but cannot be named.", - "4069": "Parameter '{0}' of public static method from exported class has or is using name '{1}' from private module '{2}'.", - "4070": "Parameter '{0}' of public static method from exported class has or is using private name '{1}'.", - "4071": "Parameter '{0}' of public method from exported class has or is using name '{1}' from external module {2} but cannot be named.", - "4072": "Parameter '{0}' of public method from exported class has or is using name '{1}' from private module '{2}'.", - "4073": "Parameter '{0}' of public method from exported class has or is using private name '{1}'.", - "4074": "Parameter '{0}' of method from exported interface has or is using name '{1}' from private module '{2}'.", - "4075": "Parameter '{0}' of method from exported interface has or is using private name '{1}'.", - "4076": "Parameter '{0}' of exported function has or is using name '{1}' from external module {2} but cannot be named.", - "4077": "Parameter '{0}' of exported function has or is using name '{1}' from private module '{2}'.", - "4078": "Parameter '{0}' of exported function has or is using private name '{1}'.", - "4081": "Exported type alias '{0}' has or is using private name '{1}'.", - "4082": "Default export of the module has or is using private name '{0}'.", - "4083": "Type parameter '{0}' of exported type alias has or is using private name '{1}'.", - "4084": "Exported type alias '{0}' has or is using private name '{1}' from module {2}.", - "4085": "Extends clause for inferred type '{0}' has or is using private name '{1}'.", - "4090": "Conflicting definitions for '{0}' found at '{1}' and '{2}'. Consider installing a specific version of this library to resolve the conflict.", - "4091": "Parameter '{0}' of index signature from exported interface has or is using name '{1}' from private module '{2}'.", - "4092": "Parameter '{0}' of index signature from exported interface has or is using private name '{1}'.", - "4094": "Property '{0}' of exported class expression may not be private or protected.", - "4095": "Public static method '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named.", - "4096": "Public static method '{0}' of exported class has or is using name '{1}' from private module '{2}'.", - "4097": "Public static method '{0}' of exported class has or is using private name '{1}'.", - "4098": "Public method '{0}' of exported class has or is using name '{1}' from external module {2} but cannot be named.", - "4099": "Public method '{0}' of exported class has or is using name '{1}' from private module '{2}'.", - "4100": "Public method '{0}' of exported class has or is using private name '{1}'.", - "4101": "Method '{0}' of exported interface has or is using name '{1}' from private module '{2}'.", - "4102": "Method '{0}' of exported interface has or is using private name '{1}'.", - "4103": "Type parameter '{0}' of exported mapped object type is using private name '{1}'.", - "4104": "The type '{0}' is 'readonly' and cannot be assigned to the mutable type '{1}'.", - "4105": "Private or protected member '{0}' cannot be accessed on a type parameter.", - "4106": "Parameter '{0}' of accessor has or is using private name '{1}'.", - "4107": "Parameter '{0}' of accessor has or is using name '{1}' from private module '{2}'.", - "4108": "Parameter '{0}' of accessor has or is using name '{1}' from external module '{2}' but cannot be named.", - "4109": "Type arguments for '{0}' circularly reference themselves.", - "4110": "Tuple type arguments circularly reference themselves.", - "4111": "Property '{0}' comes from an index signature, so it must be accessed with ['{0}'].", - "4112": "This member cannot have an 'override' modifier because its containing class '{0}' does not extend another class.", - "4113": "This member cannot have an 'override' modifier because it is not declared in the base class '{0}'.", - "4114": "This member must have an 'override' modifier because it overrides a member in the base class '{0}'.", - "4115": "This parameter property must have an 'override' modifier because it overrides a member in base class '{0}'.", - "4116": "This member must have an 'override' modifier because it overrides an abstract method that is declared in the base class '{0}'.", - "4117": "This member cannot have an 'override' modifier because it is not declared in the base class '{0}'. Did you mean '{1}'?", - "4118": "The type of this node cannot be serialized because its property '{0}' cannot be serialized.", - "4119": "This member must have a JSDoc comment with an '@override' tag because it overrides a member in the base class '{0}'.", - "4120": "This parameter property must have a JSDoc comment with an '@override' tag because it overrides a member in the base class '{0}'.", - "4121": "This member cannot have a JSDoc comment with an '@override' tag because its containing class '{0}' does not extend another class.", - "4122": "This member cannot have a JSDoc comment with an '@override' tag because it is not declared in the base class '{0}'.", - "4123": "This member cannot have a JSDoc comment with an 'override' tag because it is not declared in the base class '{0}'. Did you mean '{1}'?", - "4124": "Compiler option '{0}' of value '{1}' is unstable. Use nightly TypeScript to silence this error. Try updating with 'npm install -D typescript@next'.", - "4125": "'resolution-mode' assertions are unstable. Use nightly TypeScript to silence this error. Try updating with 'npm install -D typescript@next'.", - "5001": "The current host does not support the '{0}' option.", - "5009": "Cannot find the common subdirectory path for the input files.", - "5010": "File specification cannot end in a recursive directory wildcard ('**'): '{0}'.", - "5012": "Cannot read file '{0}': {1}.", - "5014": "Failed to parse file '{0}': {1}.", - "5023": "Unknown compiler option '{0}'.", - "5024": "Compiler option '{0}' requires a value of type {1}.", - "5025": "Unknown compiler option '{0}'. Did you mean '{1}'?", - "5033": "Could not write file '{0}': {1}.", - "5042": "Option 'project' cannot be mixed with source files on a command line.", - "5047": "Option 'isolatedModules' can only be used when either option '--module' is provided or option 'target' is 'ES2015' or higher.", - "5048": "Option '{0}' cannot be specified when option 'target' is 'ES3'.", - "5051": "Option '{0} can only be used when either option '--inlineSourceMap' or option '--sourceMap' is provided.", - "5052": "Option '{0}' cannot be specified without specifying option '{1}'.", - "5053": "Option '{0}' cannot be specified with option '{1}'.", - "5054": "A 'tsconfig.json' file is already defined at: '{0}'.", - "5055": "Cannot write file '{0}' because it would overwrite input file.", - "5056": "Cannot write file '{0}' because it would be overwritten by multiple input files.", - "5057": "Cannot find a tsconfig.json file at the specified directory: '{0}'.", - "5058": "The specified path does not exist: '{0}'.", - "5059": "Invalid value for '--reactNamespace'. '{0}' is not a valid identifier.", - "5061": "Pattern '{0}' can have at most one '*' character.", - "5062": "Substitution '{0}' in pattern '{1}' can have at most one '*' character.", - "5063": "Substitutions for pattern '{0}' should be an array.", - "5064": "Substitution '{0}' for pattern '{1}' has incorrect type, expected 'string', got '{2}'.", - "5065": "File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '{0}'.", - "5066": "Substitutions for pattern '{0}' shouldn't be an empty array.", - "5067": "Invalid value for 'jsxFactory'. '{0}' is not a valid identifier or qualified-name.", - "5068": "Adding a tsconfig.json file will help organize projects that contain both TypeScript and JavaScript files. Learn more at https://aka.ms/tsconfig.", - "5069": "Option '{0}' cannot be specified without specifying option '{1}' or option '{2}'.", - "5070": "Option '--resolveJsonModule' cannot be specified without 'node' module resolution strategy.", - "5071": "Option '--resolveJsonModule' can only be specified when module code generation is 'commonjs', 'amd', 'es2015' or 'esNext'.", - "5072": "Unknown build option '{0}'.", - "5073": "Build option '{0}' requires a value of type {1}.", - "5074": "Option '--incremental' can only be specified using tsconfig, emitting to single file or when option '--tsBuildInfoFile' is specified.", - "5075": "'{0}' is assignable to the constraint of type '{1}', but '{1}' could be instantiated with a different subtype of constraint '{2}'.", - "5076": "'{0}' and '{1}' operations cannot be mixed without parentheses.", - "5077": "Unknown build option '{0}'. Did you mean '{1}'?", - "5078": "Unknown watch option '{0}'.", - "5079": "Unknown watch option '{0}'. Did you mean '{1}'?", - "5080": "Watch option '{0}' requires a value of type {1}.", - "5081": "Cannot find a tsconfig.json file at the current directory: {0}.", - "5082": "'{0}' could be instantiated with an arbitrary type which could be unrelated to '{1}'.", - "5083": "Cannot read file '{0}'.", - "5084": "Tuple members must all have names or all not have names.", - "5085": "A tuple member cannot be both optional and rest.", - "5086": "A labeled tuple element is declared as optional with a question mark after the name and before the colon, rather than after the type.", - "5087": "A labeled tuple element is declared as rest with a '...' before the name, rather than before the type.", - "5088": "The inferred type of '{0}' references a type with a cyclic structure which cannot be trivially serialized. A type annotation is necessary.", - "5089": "Option '{0}' cannot be specified when option 'jsx' is '{1}'.", - "5090": "Non-relative paths are not allowed when 'baseUrl' is not set. Did you forget a leading './'?", - "5091": "Option 'preserveConstEnums' cannot be disabled when 'isolatedModules' is enabled.", - "5092": "The root value of a '{0}' file must be an object.", - "5093": "Compiler option '--{0}' may only be used with '--build'.", - "5094": "Compiler option '--{0}' may not be used with '--build'.", - "5095": "Option 'preserveValueImports' can only be used when 'module' is set to 'es2015' or later.", - "5096": "Option 'allowImportingTsExtensions' can only be used when either 'noEmit' or 'emitDeclarationOnly' is set.", - "5097": "An import path can only end with a '{0}' extension when 'allowImportingTsExtensions' is enabled.", - "5098": "Option '{0}' can only be used when 'moduleResolution' is set to 'node16', 'nodenext', or 'bundler'.", - "5099": "Import assignment is not allowed when 'moduleResolution' is set to 'bundler'. Consider using 'import * as ns from \"mod\"', 'import {a} from \"mod\"', 'import d from \"mod\"', or another module format instead.", - "5100": "Export assignment cannot be used when 'moduleResolution' is set to 'bundler'. Consider using 'export default' or another module format instead.", - "5101": "Flag '{0}' is deprecated and will stop functioning in TypeScript {1}. Specify 'ignoreDeprecations: \"{2}\"' to silence this error.", - "5102": "Flag '{0}' is deprecated. Please remove it from your configuration.", - "5103": "Invalid value for '--ignoreDeprecations'.", - "5104": "Option '{0}' is redundant and cannot be specified with option '{1}'.", - "5105": "Option 'verbatimModuleSyntax' cannot be used when 'module' is set to 'UMD', 'AMD', or 'System'.", - "5106": "Use '{0}' instead.", - "5107": "Option '{0}={1}' is deprecated and will stop functioning in TypeScript {2}. Specify compilerOption '\"ignoreDeprecations\": \"{3}\"' to silence this error.", - "5108": "Option '{0}={1}' has been removed. Please remove it from your configuration.", - "5109": "Option 'moduleResolution' must be set to '{0}' (or left unspecified) when option 'module' is set to '{1}'.", - "5110": "Option 'module' must be set to '{0}' when option 'moduleResolution' is set to '{1}'.", - "6000": "Generates a sourcemap for each corresponding '.d.ts' file.", - "6001": "Concatenate and emit output to single file.", - "6002": "Generates corresponding '.d.ts' file.", - "6004": "Specify the location where debugger should locate TypeScript files instead of source locations.", - "6005": "Watch input files.", - "6006": "Redirect output structure to the directory.", - "6007": "Do not erase const enum declarations in generated code.", - "6008": "Do not emit outputs if any errors were reported.", - "6009": "Do not emit comments to output.", - "6010": "Do not emit outputs.", - "6011": "Allow default imports from modules with no default export. This does not affect code emit, just typechecking.", - "6012": "Skip type checking of declaration files.", - "6013": "Do not resolve the real path of symlinks.", - "6014": "Only emit '.d.ts' declaration files.", - "6015": "Specify ECMAScript target version.", - "6016": "Specify module code generation.", - "6017": "Print this message.", - "6019": "Print the compiler's version.", - "6020": "Compile the project given the path to its configuration file, or to a folder with a 'tsconfig.json'.", - "6023": "Syntax: {0}", - "6024": "options", - "6025": "file", - "6026": "Examples: {0}", - "6027": "Options:", - "6029": "Version {0}", - "6030": "Insert command line options and files from a file.", - "6031": "Starting compilation in watch mode...", - "6032": "File change detected. Starting incremental compilation...", - "6034": "KIND", - "6035": "FILE", - "6036": "VERSION", - "6037": "LOCATION", - "6038": "DIRECTORY", - "6039": "STRATEGY", - "6040": "FILE OR DIRECTORY", - "6041": "Errors Files", - "6043": "Generates corresponding '.map' file.", - "6044": "Compiler option '{0}' expects an argument.", - "6045": "Unterminated quoted string in response file '{0}'.", - "6046": "Argument for '{0}' option must be: {1}.", - "6048": "Locale must be of the form or -. For example '{0}' or '{1}'.", - "6050": "Unable to open file '{0}'.", - "6051": "Corrupted locale file {0}.", - "6052": "Raise error on expressions and declarations with an implied 'any' type.", - "6053": "File '{0}' not found.", - "6054": "File '{0}' has an unsupported extension. The only supported extensions are {1}.", - "6055": "Suppress noImplicitAny errors for indexing objects lacking index signatures.", - "6056": "Do not emit declarations for code that has an '@internal' annotation.", - "6058": "Specify the root directory of input files. Use to control the output directory structure with --outDir.", - "6059": "File '{0}' is not under 'rootDir' '{1}'. 'rootDir' is expected to contain all source files.", - "6060": "Specify the end of line sequence to be used when emitting files: 'CRLF' (dos) or 'LF' (unix).", - "6061": "NEWLINE", - "6064": "Option '{0}' can only be specified in 'tsconfig.json' file or set to 'null' on command line.", - "6065": "Enables experimental support for ES7 decorators.", - "6066": "Enables experimental support for emitting type metadata for decorators.", - "6069": "Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6).", - "6070": "Initializes a TypeScript project and creates a tsconfig.json file.", - "6071": "Successfully created a tsconfig.json file.", - "6072": "Suppress excess property checks for object literals.", - "6073": "Stylize errors and messages using color and context (experimental).", - "6074": "Do not report errors on unused labels.", - "6075": "Report error when not all code paths in function return a value.", - "6076": "Report errors for fallthrough cases in switch statement.", - "6077": "Do not report errors on unreachable code.", - "6078": "Disallow inconsistently-cased references to the same file.", - "6079": "Specify library files to be included in the compilation.", - "6080": "Specify JSX code generation.", - "6081": "File '{0}' has an unsupported extension, so skipping it.", - "6082": "Only 'amd' and 'system' modules are supported alongside --{0}.", - "6083": "Base directory to resolve non-absolute module names.", - "6084": "[Deprecated] Use '--jsxFactory' instead. Specify the object invoked for createElement when targeting 'react' JSX emit", - "6085": "Enable tracing of the name resolution process.", - "6086": "======== Resolving module '{0}' from '{1}'. ========", - "6087": "Explicitly specified module resolution kind: '{0}'.", - "6088": "Module resolution kind is not specified, using '{0}'.", - "6089": "======== Module name '{0}' was successfully resolved to '{1}'. ========", - "6090": "======== Module name '{0}' was not resolved. ========", - "6091": "'paths' option is specified, looking for a pattern to match module name '{0}'.", - "6092": "Module name '{0}', matched pattern '{1}'.", - "6093": "Trying substitution '{0}', candidate module location: '{1}'.", - "6094": "Resolving module name '{0}' relative to base url '{1}' - '{2}'.", - "6095": "Loading module as file / folder, candidate module location '{0}', target file type '{1}'.", - "6096": "File '{0}' does not exist.", - "6097": "File '{0}' exist - use it as a name resolution result.", - "6098": "Loading module '{0}' from 'node_modules' folder, target file type '{1}'.", - "6099": "Found 'package.json' at '{0}'.", - "6100": "'package.json' does not have a '{0}' field.", - "6101": "'package.json' has '{0}' field '{1}' that references '{2}'.", - "6102": "Allow javascript files to be compiled.", - "6104": "Checking if '{0}' is the longest matching prefix for '{1}' - '{2}'.", - "6105": "Expected type of '{0}' field in 'package.json' to be '{1}', got '{2}'.", - "6106": "'baseUrl' option is set to '{0}', using this value to resolve non-relative module name '{1}'.", - "6107": "'rootDirs' option is set, using it to resolve relative module name '{0}'.", - "6108": "Longest matching prefix for '{0}' is '{1}'.", - "6109": "Loading '{0}' from the root dir '{1}', candidate location '{2}'.", - "6110": "Trying other entries in 'rootDirs'.", - "6111": "Module resolution using 'rootDirs' has failed.", - "6112": "Do not emit 'use strict' directives in module output.", - "6113": "Enable strict null checks.", - "6114": "Unknown option 'excludes'. Did you mean 'exclude'?", - "6115": "Raise error on 'this' expressions with an implied 'any' type.", - "6116": "======== Resolving type reference directive '{0}', containing file '{1}', root directory '{2}'. ========", - "6119": "======== Type reference directive '{0}' was successfully resolved to '{1}', primary: {2}. ========", - "6120": "======== Type reference directive '{0}' was not resolved. ========", - "6121": "Resolving with primary search path '{0}'.", - "6122": "Root directory cannot be determined, skipping primary search paths.", - "6123": "======== Resolving type reference directive '{0}', containing file '{1}', root directory not set. ========", - "6124": "Type declaration files to be included in compilation.", - "6125": "Looking up in 'node_modules' folder, initial location '{0}'.", - "6126": "Containing file is not specified and root directory cannot be determined, skipping lookup in 'node_modules' folder.", - "6127": "======== Resolving type reference directive '{0}', containing file not set, root directory '{1}'. ========", - "6128": "======== Resolving type reference directive '{0}', containing file not set, root directory not set. ========", - "6130": "Resolving real path for '{0}', result '{1}'.", - "6131": "Cannot compile modules using option '{0}' unless the '--module' flag is 'amd' or 'system'.", - "6132": "File name '{0}' has a '{1}' extension - stripping it.", - "6133": "'{0}' is declared but its value is never read.", - "6134": "Report errors on unused locals.", - "6135": "Report errors on unused parameters.", - "6136": "The maximum dependency depth to search under node_modules and load JavaScript files.", - "6137": "Cannot import type declaration files. Consider importing '{0}' instead of '{1}'.", - "6138": "Property '{0}' is declared but its value is never read.", - "6139": "Import emit helpers from 'tslib'.", - "6140": "Auto discovery for typings is enabled in project '{0}'. Running extra resolution pass for module '{1}' using cache location '{2}'.", - "6141": "Parse in strict mode and emit \"use strict\" for each source file.", - "6142": "Module '{0}' was resolved to '{1}', but '--jsx' is not set.", - "6144": "Module '{0}' was resolved as locally declared ambient module in file '{1}'.", - "6145": "Module '{0}' was resolved as ambient module declared in '{1}' since this file was not modified.", - "6146": "Specify the JSX factory function to use when targeting 'react' JSX emit, e.g. 'React.createElement' or 'h'.", - "6147": "Resolution for module '{0}' was found in cache from location '{1}'.", - "6148": "Directory '{0}' does not exist, skipping all lookups in it.", - "6149": "Show diagnostic information.", - "6150": "Show verbose diagnostic information.", - "6151": "Emit a single file with source maps instead of having a separate file.", - "6152": "Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set.", - "6153": "Transpile each file as a separate module (similar to 'ts.transpileModule').", - "6154": "Print names of generated files part of the compilation.", - "6155": "Print names of files part of the compilation.", - "6156": "The locale used when displaying messages to the user (e.g. 'en-us')", - "6157": "Do not generate custom helper functions like '__extends' in compiled output.", - "6158": "Do not include the default library file (lib.d.ts).", - "6159": "Do not add triple-slash references or imported modules to the list of compiled files.", - "6160": "[Deprecated] Use '--skipLibCheck' instead. Skip type checking of default library declaration files.", - "6161": "List of folders to include type definitions from.", - "6162": "Disable size limitations on JavaScript projects.", - "6163": "The character set of the input files.", - "6164": "Skipping module '{0}' that looks like an absolute URI, target file types: {1}.", - "6165": "Do not truncate error messages.", - "6166": "Output directory for generated declaration files.", - "6167": "A series of entries which re-map imports to lookup locations relative to the 'baseUrl'.", - "6168": "List of root folders whose combined content represents the structure of the project at runtime.", - "6169": "Show all compiler options.", - "6170": "[Deprecated] Use '--outFile' instead. Concatenate and emit output to single file", - "6171": "Command-line Options", - "6179": "Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'.", - "6180": "Enable all strict type-checking options.", - "6182": "Scoped package detected, looking in '{0}'", - "6183": "Reusing resolution of module '{0}' from '{1}' of old program, it was successfully resolved to '{2}'.", - "6184": "Reusing resolution of module '{0}' from '{1}' of old program, it was successfully resolved to '{2}' with Package ID '{3}'.", - "6186": "Enable strict checking of function types.", - "6187": "Enable strict checking of property initialization in classes.", - "6188": "Numeric separators are not allowed here.", - "6189": "Multiple consecutive numeric separators are not permitted.", - "6191": "Whether to keep outdated console output in watch mode instead of clearing the screen.", - "6192": "All imports in import declaration are unused.", - "6193": "Found 1 error. Watching for file changes.", - "6194": "Found {0} errors. Watching for file changes.", - "6195": "Resolve 'keyof' to string valued property names only (no numbers or symbols).", - "6196": "'{0}' is declared but never used.", - "6197": "Include modules imported with '.json' extension", - "6198": "All destructured elements are unused.", - "6199": "All variables are unused.", - "6200": "Definitions of the following identifiers conflict with those in another file: {0}", - "6201": "Conflicts are in this file.", - "6202": "Project references may not form a circular graph. Cycle detected: {0}", - "6203": "'{0}' was also declared here.", - "6204": "and here.", - "6205": "All type parameters are unused.", - "6206": "'package.json' has a 'typesVersions' field with version-specific path mappings.", - "6207": "'package.json' does not have a 'typesVersions' entry that matches version '{0}'.", - "6208": "'package.json' has a 'typesVersions' entry '{0}' that matches compiler version '{1}', looking for a pattern to match module name '{2}'.", - "6209": "'package.json' has a 'typesVersions' entry '{0}' that is not a valid semver range.", - "6210": "An argument for '{0}' was not provided.", - "6211": "An argument matching this binding pattern was not provided.", - "6212": "Did you mean to call this expression?", - "6213": "Did you mean to use 'new' with this expression?", - "6214": "Enable strict 'bind', 'call', and 'apply' methods on functions.", - "6215": "Using compiler options of project reference redirect '{0}'.", - "6216": "Found 1 error.", - "6217": "Found {0} errors.", - "6218": "======== Module name '{0}' was successfully resolved to '{1}' with Package ID '{2}'. ========", - "6219": "======== Type reference directive '{0}' was successfully resolved to '{1}' with Package ID '{2}', primary: {3}. ========", - "6220": "'package.json' had a falsy '{0}' field.", - "6221": "Disable use of source files instead of declaration files from referenced projects.", - "6222": "Emit class fields with Define instead of Set.", - "6223": "Generates a CPU profile.", - "6224": "Disable solution searching for this project.", - "6225": "Specify strategy for watching file: 'FixedPollingInterval' (default), 'PriorityPollingInterval', 'DynamicPriorityPolling', 'FixedChunkSizePolling', 'UseFsEvents', 'UseFsEventsOnParentDirectory'.", - "6226": "Specify strategy for watching directory on platforms that don't support recursive watching natively: 'UseFsEvents' (default), 'FixedPollingInterval', 'DynamicPriorityPolling', 'FixedChunkSizePolling'.", - "6227": "Specify strategy for creating a polling watch when it fails to create using file system events: 'FixedInterval' (default), 'PriorityInterval', 'DynamicPriority', 'FixedChunkSize'.", - "6229": "Tag '{0}' expects at least '{1}' arguments, but the JSX factory '{2}' provides at most '{3}'.", - "6230": "Option '{0}' can only be specified in 'tsconfig.json' file or set to 'false' or 'null' on command line.", - "6231": "Could not resolve the path '{0}' with the extensions: {1}.", - "6232": "Declaration augments declaration in another file. This cannot be serialized.", - "6233": "This is the declaration being augmented. Consider moving the augmenting declaration into the same file.", - "6234": "This expression is not callable because it is a 'get' accessor. Did you mean to use it without '()'?", - "6235": "Disable loading referenced projects.", - "6236": "Arguments for the rest parameter '{0}' were not provided.", - "6237": "Generates an event trace and a list of types.", - "6238": "Specify the module specifier to be used to import the 'jsx' and 'jsxs' factory functions from. eg, react", - "6239": "File '{0}' exists according to earlier cached lookups.", - "6240": "File '{0}' does not exist according to earlier cached lookups.", - "6241": "Resolution for type reference directive '{0}' was found in cache from location '{1}'.", - "6242": "======== Resolving type reference directive '{0}', containing file '{1}'. ========", - "6243": "Interpret optional property types as written, rather than adding 'undefined'.", - "6244": "Modules", - "6245": "File Management", - "6246": "Emit", - "6247": "JavaScript Support", - "6248": "Type Checking", - "6249": "Editor Support", - "6250": "Watch and Build Modes", - "6251": "Compiler Diagnostics", - "6252": "Interop Constraints", - "6253": "Backwards Compatibility", - "6254": "Language and Environment", - "6255": "Projects", - "6256": "Output Formatting", - "6257": "Completeness", - "6258": "'{0}' should be set inside the 'compilerOptions' object of the config json file", - "6259": "Found 1 error in {1}", - "6260": "Found {0} errors in the same file, starting at: {1}", - "6261": "Found {0} errors in {1} files.", - "6262": "File name '{0}' has a '{1}' extension - looking up '{2}' instead.", - "6263": "Module '{0}' was resolved to '{1}', but '--allowArbitraryExtensions' is not set.", - "6264": "Enable importing files with any extension, provided a declaration file is present.", - "6265": "Resolving type reference directive for program that specifies custom typeRoots, skipping lookup in 'node_modules' folder.", - "6266": "Option '{0}' can only be specified on command line.", - "6270": "Directory '{0}' has no containing package.json scope. Imports will not resolve.", - "6271": "Import specifier '{0}' does not exist in package.json scope at path '{1}'.", - "6272": "Invalid import specifier '{0}' has no possible resolutions.", - "6273": "package.json scope '{0}' has no imports defined.", - "6274": "package.json scope '{0}' explicitly maps specifier '{1}' to null.", - "6275": "package.json scope '{0}' has invalid type for target of specifier '{1}'", - "6276": "Export specifier '{0}' does not exist in package.json scope at path '{1}'.", - "6277": "Resolution of non-relative name failed; trying with modern Node resolution features disabled to see if npm library needs configuration update.", - "6278": "There are types at '{0}', but this result could not be resolved when respecting package.json \"exports\". The '{1}' library may need to update its package.json or typings.", - "6302": "Enable project compilation", - "6304": "Composite projects may not disable declaration emit.", - "6305": "Output file '{0}' has not been built from source file '{1}'.", - "6306": "Referenced project '{0}' must have setting \"composite\": true.", - "6307": "File '{0}' is not listed within the file list of project '{1}'. Projects must list all files or use an 'include' pattern.", - "6308": "Cannot prepend project '{0}' because it does not have 'outFile' set", - "6309": "Output file '{0}' from project '{1}' does not exist", - "6310": "Referenced project '{0}' may not disable emit.", - "6350": "Project '{0}' is out of date because output '{1}' is older than input '{2}'", - "6351": "Project '{0}' is up to date because newest input '{1}' is older than output '{2}'", - "6352": "Project '{0}' is out of date because output file '{1}' does not exist", - "6353": "Project '{0}' is out of date because its dependency '{1}' is out of date", - "6354": "Project '{0}' is up to date with .d.ts files from its dependencies", - "6355": "Projects in this build: {0}", - "6356": "A non-dry build would delete the following files: {0}", - "6357": "A non-dry build would build project '{0}'", - "6358": "Building project '{0}'...", - "6359": "Updating output timestamps of project '{0}'...", - "6361": "Project '{0}' is up to date", - "6362": "Skipping build of project '{0}' because its dependency '{1}' has errors", - "6363": "Project '{0}' can't be built because its dependency '{1}' has errors", - "6364": "Build one or more projects and their dependencies, if out of date", - "6365": "Delete the outputs of all projects.", - "6367": "Show what would be built (or deleted, if specified with '--clean')", - "6369": "Option '--build' must be the first command line argument.", - "6370": "Options '{0}' and '{1}' cannot be combined.", - "6371": "Updating unchanged output timestamps of project '{0}'...", - "6372": "Project '{0}' is out of date because output of its dependency '{1}' has changed", - "6373": "Updating output of project '{0}'...", - "6374": "A non-dry build would update timestamps for output of project '{0}'", - "6375": "A non-dry build would update output of project '{0}'", - "6376": "Cannot update output of project '{0}' because there was error reading file '{1}'", - "6377": "Cannot write file '{0}' because it will overwrite '.tsbuildinfo' file generated by referenced project '{1}'", - "6379": "Composite projects may not disable incremental compilation.", - "6380": "Specify file to store incremental compilation information", - "6381": "Project '{0}' is out of date because output for it was generated with version '{1}' that differs with current version '{2}'", - "6382": "Skipping build of project '{0}' because its dependency '{1}' was not built", - "6383": "Project '{0}' can't be built because its dependency '{1}' was not built", - "6384": "Have recompiles in '--incremental' and '--watch' assume that changes within a file will only affect files directly depending on it.", - "6385": "'{0}' is deprecated.", - "6386": "Performance timings for '--diagnostics' or '--extendedDiagnostics' are not available in this session. A native implementation of the Web Performance API could not be found.", - "6387": "The signature '{0}' of '{1}' is deprecated.", - "6388": "Project '{0}' is being forcibly rebuilt", - "6389": "Reusing resolution of module '{0}' from '{1}' of old program, it was not resolved.", - "6390": "Reusing resolution of type reference directive '{0}' from '{1}' of old program, it was successfully resolved to '{2}'.", - "6391": "Reusing resolution of type reference directive '{0}' from '{1}' of old program, it was successfully resolved to '{2}' with Package ID '{3}'.", - "6392": "Reusing resolution of type reference directive '{0}' from '{1}' of old program, it was not resolved.", - "6393": "Reusing resolution of module '{0}' from '{1}' found in cache from location '{2}', it was successfully resolved to '{3}'.", - "6394": "Reusing resolution of module '{0}' from '{1}' found in cache from location '{2}', it was successfully resolved to '{3}' with Package ID '{4}'.", - "6395": "Reusing resolution of module '{0}' from '{1}' found in cache from location '{2}', it was not resolved.", - "6396": "Reusing resolution of type reference directive '{0}' from '{1}' found in cache from location '{2}', it was successfully resolved to '{3}'.", - "6397": "Reusing resolution of type reference directive '{0}' from '{1}' found in cache from location '{2}', it was successfully resolved to '{3}' with Package ID '{4}'.", - "6398": "Reusing resolution of type reference directive '{0}' from '{1}' found in cache from location '{2}', it was not resolved.", - "6399": "Project '{0}' is out of date because buildinfo file '{1}' indicates that some of the changes were not emitted", - "6400": "Project '{0}' is up to date but needs to update timestamps of output files that are older than input files", - "6401": "Project '{0}' is out of date because there was error reading file '{1}'", - "6402": "Resolving in {0} mode with conditions {1}.", - "6403": "Matched '{0}' condition '{1}'.", - "6404": "Using '{0}' subpath '{1}' with target '{2}'.", - "6405": "Saw non-matching condition '{0}'.", - "6406": "Project '{0}' is out of date because buildinfo file '{1}' indicates there is change in compilerOptions", - "6407": "Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set.", - "6408": "Use the package.json 'exports' field when resolving package imports.", - "6409": "Use the package.json 'imports' field when resolving imports.", - "6410": "Conditions to set in addition to the resolver-specific defaults when resolving imports.", - "6411": "`true` when 'moduleResolution' is 'node16', 'nodenext', or 'bundler'; otherwise `false`.", - "6412": "Project '{0}' is out of date because buildinfo file '{1}' indicates that file '{2}' was root file of compilation but not any more.", - "6413": "Entering conditional exports.", - "6414": "Resolved under condition '{0}'.", - "6415": "Failed to resolve under condition '{0}'.", - "6416": "Exiting conditional exports.", - "6417": "Searching all ancestor node_modules directories for preferred extensions: {0}.", - "6418": "Searching all ancestor node_modules directories for fallback extensions: {0}.", - "6500": "The expected type comes from property '{0}' which is declared here on type '{1}'", - "6501": "The expected type comes from this index signature.", - "6502": "The expected type comes from the return type of this signature.", - "6503": "Print names of files that are part of the compilation and then stop processing.", - "6504": "File '{0}' is a JavaScript file. Did you mean to enable the 'allowJs' option?", - "6505": "Print names of files and the reason they are part of the compilation.", - "6506": "Consider adding a 'declare' modifier to this class.", - "6600": "Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files.", - "6601": "Allow 'import x from y' when a module doesn't have a default export.", - "6602": "Allow accessing UMD globals from modules.", - "6603": "Disable error reporting for unreachable code.", - "6604": "Disable error reporting for unused labels.", - "6605": "Ensure 'use strict' is always emitted.", - "6606": "Have recompiles in projects that use 'incremental' and 'watch' mode assume that changes within a file will only affect files directly depending on it.", - "6607": "Specify the base directory to resolve non-relative module names.", - "6608": "No longer supported. In early versions, manually set the text encoding for reading files.", - "6609": "Enable error reporting in type-checked JavaScript files.", - "6611": "Enable constraints that allow a TypeScript project to be used with project references.", - "6612": "Generate .d.ts files from TypeScript and JavaScript files in your project.", - "6613": "Specify the output directory for generated declaration files.", - "6614": "Create sourcemaps for d.ts files.", - "6615": "Output compiler performance information after building.", - "6616": "Disables inference for type acquisition by looking at filenames in a project.", - "6617": "Reduce the number of projects loaded automatically by TypeScript.", - "6618": "Remove the 20mb cap on total source code size for JavaScript files in the TypeScript language server.", - "6619": "Opt a project out of multi-project reference checking when editing.", - "6620": "Disable preferring source files instead of declaration files when referencing composite projects.", - "6621": "Emit more compliant, but verbose and less performant JavaScript for iteration.", - "6622": "Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files.", - "6623": "Only output d.ts files and not JavaScript files.", - "6624": "Emit design-type metadata for decorated declarations in source files.", - "6625": "Disable the type acquisition for JavaScript projects", - "6626": "Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility.", - "6627": "Filters results from the `include` option.", - "6628": "Remove a list of directories from the watch process.", - "6629": "Remove a list of files from the watch mode's processing.", - "6630": "Enable experimental support for TC39 stage 2 draft decorators.", - "6631": "Print files read during the compilation including why it was included.", - "6632": "Output more detailed compiler performance information after building.", - "6633": "Specify one or more path or node module references to base configuration files from which settings are inherited.", - "6634": "Specify what approach the watcher should use if the system runs out of native file watchers.", - "6635": "Include a list of files. This does not support glob patterns, as opposed to `include`.", - "6636": "Build all projects, including those that appear to be up to date.", - "6637": "Ensure that casing is correct in imports.", - "6638": "Emit a v8 CPU profile of the compiler run for debugging.", - "6639": "Allow importing helper functions from tslib once per project, instead of including them per-file.", - "6641": "Specify a list of glob patterns that match files to be included in compilation.", - "6642": "Save .tsbuildinfo files to allow for incremental compilation of projects.", - "6643": "Include sourcemap files inside the emitted JavaScript.", - "6644": "Include source code in the sourcemaps inside the emitted JavaScript.", - "6645": "Ensure that each file can be safely transpiled without relying on other imports.", - "6646": "Specify what JSX code is generated.", - "6647": "Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'.", - "6648": "Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'.", - "6649": "Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'.", - "6650": "Make keyof only return strings instead of string, numbers or symbols. Legacy option.", - "6651": "Specify a set of bundled library declaration files that describe the target runtime environment.", - "6652": "Print the names of emitted files after a compilation.", - "6653": "Print all of the files read during the compilation.", - "6654": "Set the language of the messaging from TypeScript. This does not affect emit.", - "6655": "Specify the location where debugger should locate map files instead of generated locations.", - "6656": "Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'.", - "6657": "Specify what module code is generated.", - "6658": "Specify how TypeScript looks up a file from a given module specifier.", - "6659": "Set the newline character for emitting files.", - "6660": "Disable emitting files from a compilation.", - "6661": "Disable generating custom helper functions like '__extends' in compiled output.", - "6662": "Disable emitting files if any type checking errors are reported.", - "6663": "Disable truncating types in error messages.", - "6664": "Enable error reporting for fallthrough cases in switch statements.", - "6665": "Enable error reporting for expressions and declarations with an implied 'any' type.", - "6666": "Ensure overriding members in derived classes are marked with an override modifier.", - "6667": "Enable error reporting for codepaths that do not explicitly return in a function.", - "6668": "Enable error reporting when 'this' is given the type 'any'.", - "6669": "Disable adding 'use strict' directives in emitted JavaScript files.", - "6670": "Disable including any library files, including the default lib.d.ts.", - "6671": "Enforces using indexed accessors for keys declared using an indexed type.", - "6672": "Disallow 'import's, 'require's or ''s from expanding the number of files TypeScript should add to a project.", - "6673": "Disable strict checking of generic signatures in function types.", - "6674": "Add 'undefined' to a type when accessed using an index.", - "6675": "Enable error reporting when local variables aren't read.", - "6676": "Raise an error when a function parameter isn't read.", - "6677": "Deprecated setting. Use 'outFile' instead.", - "6678": "Specify an output folder for all emitted files.", - "6679": "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.", - "6680": "Specify a set of entries that re-map imports to additional lookup locations.", - "6681": "Specify a list of language service plugins to include.", - "6682": "Disable erasing 'const enum' declarations in generated code.", - "6683": "Disable resolving symlinks to their realpath. This correlates to the same flag in node.", - "6684": "Disable wiping the console in watch mode.", - "6685": "Enable color and formatting in TypeScript's output to make compiler errors easier to read.", - "6686": "Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit.", - "6687": "Specify an array of objects that specify paths for projects. Used in project references.", - "6688": "Disable emitting comments.", - "6689": "Enable importing .json files.", - "6690": "Specify the root folder within your source files.", - "6691": "Allow multiple folders to be treated as one when resolving modules.", - "6692": "Skip type checking .d.ts files that are included with TypeScript.", - "6693": "Skip type checking all .d.ts files.", - "6694": "Create source map files for emitted JavaScript files.", - "6695": "Specify the root path for debuggers to find the reference source code.", - "6697": "Check that the arguments for 'bind', 'call', and 'apply' methods match the original function.", - "6698": "When assigning functions, check to ensure parameters and the return values are subtype-compatible.", - "6699": "When type checking, take into account 'null' and 'undefined'.", - "6700": "Check for class properties that are declared but not set in the constructor.", - "6701": "Disable emitting declarations that have '@internal' in their JSDoc comments.", - "6702": "Disable reporting of excess property errors during the creation of object literals.", - "6703": "Suppress 'noImplicitAny' errors when indexing objects that lack index signatures.", - "6704": "Synchronously call callbacks and update the state of directory watchers on platforms that don`t support recursive watching natively.", - "6705": "Set the JavaScript language version for emitted JavaScript and include compatible library declarations.", - "6706": "Log paths used during the 'moduleResolution' process.", - "6707": "Specify the path to .tsbuildinfo incremental compilation file.", - "6709": "Specify options for automatic acquisition of declaration files.", - "6710": "Specify multiple folders that act like './node_modules/@types'.", - "6711": "Specify type package names to be included without being referenced in a source file.", - "6712": "Emit ECMAScript-standard-compliant class fields.", - "6713": "Enable verbose logging.", - "6714": "Specify how directories are watched on systems that lack recursive file-watching functionality.", - "6715": "Specify how the TypeScript watch mode works.", - "6717": "Require undeclared properties from index signatures to use element accesses.", - "6718": "Specify emit/checking behavior for imports that are only used for types.", - "6803": "Default catch clause variables as 'unknown' instead of 'any'.", - "6804": "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.", - "6900": "one of:", - "6901": "one or more:", - "6902": "type:", - "6903": "default:", - "6904": "module === \"system\" or esModuleInterop", - "6905": "`false`, unless `strict` is set", - "6906": "`false`, unless `composite` is set", - "6907": "`[\"node_modules\", \"bower_components\", \"jspm_packages\"]`, plus the value of `outDir` if one is specified.", - "6908": "`[]` if `files` is specified, otherwise `[\"**/*\"]`", - "6909": "`true` if `composite`, `false` otherwise", - "6911": "Computed from the list of input files", - "6912": "Platform specific", - "6913": "You can learn about all of the compiler options at {0}", - "6914": "Including --watch, -w will start watching the current project for the file changes. Once set, you can config watch mode with:", - "6915": "Using --build, -b will make tsc behave more like a build orchestrator than a compiler. This is used to trigger building composite projects which you can learn more about at {0}", - "6916": "COMMON COMMANDS", - "6917": "ALL COMPILER OPTIONS", - "6918": "WATCH OPTIONS", - "6919": "BUILD OPTIONS", - "6920": "COMMON COMPILER OPTIONS", - "6921": "COMMAND LINE FLAGS", - "6922": "tsc: The TypeScript Compiler", - "6923": "Compiles the current project (tsconfig.json in the working directory.)", - "6924": "Ignoring tsconfig.json, compiles the specified files with default compiler options.", - "6925": "Build a composite project in the working directory.", - "6926": "Creates a tsconfig.json with the recommended settings in the working directory.", - "6927": "Compiles the TypeScript project located at the specified path.", - "6928": "An expanded version of this information, showing all possible compiler options", - "6929": "Compiles the current project, with additional settings.", - "6930": "`true` for ES2022 and above, including ESNext.", - "6931": "List of file name suffixes to search when resolving a module.", - "7005": "Variable '{0}' implicitly has an '{1}' type.", - "7006": "Parameter '{0}' implicitly has an '{1}' type.", - "7008": "Member '{0}' implicitly has an '{1}' type.", - "7009": "'new' expression, whose target lacks a construct signature, implicitly has an 'any' type.", - "7010": "'{0}', which lacks return-type annotation, implicitly has an '{1}' return type.", - "7011": "Function expression, which lacks return-type annotation, implicitly has an '{0}' return type.", - "7012": "This overload implicitly returns the type '{0}' because it lacks a return type annotation.", - "7013": "Construct signature, which lacks return-type annotation, implicitly has an 'any' return type.", - "7014": "Function type, which lacks return-type annotation, implicitly has an '{0}' return type.", - "7015": "Element implicitly has an 'any' type because index expression is not of type 'number'.", - "7016": "Could not find a declaration file for module '{0}'. '{1}' implicitly has an 'any' type.", - "7017": "Element implicitly has an 'any' type because type '{0}' has no index signature.", - "7018": "Object literal's property '{0}' implicitly has an '{1}' type.", - "7019": "Rest parameter '{0}' implicitly has an 'any[]' type.", - "7020": "Call signature, which lacks return-type annotation, implicitly has an 'any' return type.", - "7022": "'{0}' implicitly has type 'any' because it does not have a type annotation and is referenced directly or indirectly in its own initializer.", - "7023": "'{0}' implicitly has return type 'any' because it does not have a return type annotation and is referenced directly or indirectly in one of its return expressions.", - "7024": "Function implicitly has return type 'any' because it does not have a return type annotation and is referenced directly or indirectly in one of its return expressions.", - "7025": "Generator implicitly has yield type '{0}' because it does not yield any values. Consider supplying a return type annotation.", - "7026": "JSX element implicitly has type 'any' because no interface 'JSX.{0}' exists.", - "7027": "Unreachable code detected.", - "7028": "Unused label.", - "7029": "Fallthrough case in switch.", - "7030": "Not all code paths return a value.", - "7031": "Binding element '{0}' implicitly has an '{1}' type.", - "7032": "Property '{0}' implicitly has type 'any', because its set accessor lacks a parameter type annotation.", - "7033": "Property '{0}' implicitly has type 'any', because its get accessor lacks a return type annotation.", - "7034": "Variable '{0}' implicitly has type '{1}' in some locations where its type cannot be determined.", - "7035": "Try `npm i --save-dev @types/{1}` if it exists or add a new declaration (.d.ts) file containing `declare module '{0}';`", - "7036": "Dynamic import's specifier must be of type 'string', but here has type '{0}'.", - "7037": "Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'.", - "7038": "Type originates at this import. A namespace-style import cannot be called or constructed, and will cause a failure at runtime. Consider using a default import or import require here instead.", - "7039": "Mapped object type implicitly has an 'any' template type.", - "7040": "If the '{0}' package actually exposes this module, consider sending a pull request to amend 'https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/{1}'", - "7041": "The containing arrow function captures the global value of 'this'.", - "7042": "Module '{0}' was resolved to '{1}', but '--resolveJsonModule' is not used.", - "7043": "Variable '{0}' implicitly has an '{1}' type, but a better type may be inferred from usage.", - "7044": "Parameter '{0}' implicitly has an '{1}' type, but a better type may be inferred from usage.", - "7045": "Member '{0}' implicitly has an '{1}' type, but a better type may be inferred from usage.", - "7046": "Variable '{0}' implicitly has type '{1}' in some locations, but a better type may be inferred from usage.", - "7047": "Rest parameter '{0}' implicitly has an 'any[]' type, but a better type may be inferred from usage.", - "7048": "Property '{0}' implicitly has type 'any', but a better type for its get accessor may be inferred from usage.", - "7049": "Property '{0}' implicitly has type 'any', but a better type for its set accessor may be inferred from usage.", - "7050": "'{0}' implicitly has an '{1}' return type, but a better type may be inferred from usage.", - "7051": "Parameter has a name but no type. Did you mean '{0}: {1}'?", - "7052": "Element implicitly has an 'any' type because type '{0}' has no index signature. Did you mean to call '{1}'?", - "7053": "Element implicitly has an 'any' type because expression of type '{0}' can't be used to index type '{1}'.", - "7054": "No index signature with a parameter of type '{0}' was found on type '{1}'.", - "7055": "'{0}', which lacks return-type annotation, implicitly has an '{1}' yield type.", - "7056": "The inferred type of this node exceeds the maximum length the compiler will serialize. An explicit type annotation is needed.", - "7057": "'yield' expression implicitly results in an 'any' type because its containing generator lacks a return-type annotation.", - "7058": "If the '{0}' package actually exposes this module, try adding a new declaration (.d.ts) file containing `declare module '{1}';`", - "7059": "This syntax is reserved in files with the .mts or .cts extension. Use an `as` expression instead.", - "7060": "This syntax is reserved in files with the .mts or .cts extension. Add a trailing comma or explicit constraint.", - "7061": "A mapped type may not declare properties or methods.", - "8000": "You cannot rename this element.", - "8001": "You cannot rename elements that are defined in the standard TypeScript library.", - "8002": "'import ... =' can only be used in TypeScript files.", - "8003": "'export =' can only be used in TypeScript files.", - "8004": "Type parameter declarations can only be used in TypeScript files.", - "8005": "'implements' clauses can only be used in TypeScript files.", - "8006": "'{0}' declarations can only be used in TypeScript files.", - "8008": "Type aliases can only be used in TypeScript files.", - "8009": "The '{0}' modifier can only be used in TypeScript files.", - "8010": "Type annotations can only be used in TypeScript files.", - "8011": "Type arguments can only be used in TypeScript files.", - "8012": "Parameter modifiers can only be used in TypeScript files.", - "8013": "Non-null assertions can only be used in TypeScript files.", - "8016": "Type assertion expressions can only be used in TypeScript files.", - "8017": "Octal literal types must use ES2015 syntax. Use the syntax '{0}'.", - "8018": "Octal literals are not allowed in enums members initializer. Use the syntax '{0}'.", - "8019": "Report errors in .js files.", - "8020": "JSDoc types can only be used inside documentation comments.", - "8021": "JSDoc '@typedef' tag should either have a type annotation or be followed by '@property' or '@member' tags.", - "8022": "JSDoc '@{0}' is not attached to a class.", - "8023": "JSDoc '@{0} {1}' does not match the 'extends {2}' clause.", - "8024": "JSDoc '@param' tag has name '{0}', but there is no parameter with that name.", - "8025": "Class declarations cannot have more than one '@augments' or '@extends' tag.", - "8026": "Expected {0} type arguments; provide these with an '@extends' tag.", - "8027": "Expected {0}-{1} type arguments; provide these with an '@extends' tag.", - "8028": "JSDoc '...' may only appear in the last parameter of a signature.", - "8029": "JSDoc '@param' tag has name '{0}', but there is no parameter with that name. It would match 'arguments' if it had an array type.", - "8030": "The type of a function declaration must match the function's signature.", - "8031": "You cannot rename a module via a global import.", - "8032": "Qualified name '{0}' is not allowed without a leading '@param {object} {1}'.", - "8033": "A JSDoc '@typedef' comment may not contain multiple '@type' tags.", - "8034": "The tag was first specified here.", - "8035": "You cannot rename elements that are defined in a 'node_modules' folder.", - "8036": "You cannot rename elements that are defined in another 'node_modules' folder.", - "8037": "Type satisfaction expressions can only be used in TypeScript files.", - "8038": "Decorators must come after 'export' or 'export default' in JavaScript files.", - "8039": "A JSDoc '@template' tag may not follow a '@typedef', '@callback', or '@overload' tag", - "9005": "Declaration emit for this file requires using private name '{0}'. An explicit type annotation may unblock declaration emit.", - "9006": "Declaration emit for this file requires using private name '{0}' from module '{1}'. An explicit type annotation may unblock declaration emit.", - "17000": "JSX attributes must only be assigned a non-empty 'expression'.", - "17001": "JSX elements cannot have multiple attributes with the same name.", - "17002": "Expected corresponding JSX closing tag for '{0}'.", - "17004": "Cannot use JSX unless the '--jsx' flag is provided.", - "17005": "A constructor cannot contain a 'super' call when its class extends 'null'.", - "17006": "An unary expression with the '{0}' operator is not allowed in the left-hand side of an exponentiation expression. Consider enclosing the expression in parentheses.", - "17007": "A type assertion expression is not allowed in the left-hand side of an exponentiation expression. Consider enclosing the expression in parentheses.", - "17008": "JSX element '{0}' has no corresponding closing tag.", - "17009": "'super' must be called before accessing 'this' in the constructor of a derived class.", - "17010": "Unknown type acquisition option '{0}'.", - "17011": "'super' must be called before accessing a property of 'super' in the constructor of a derived class.", - "17012": "'{0}' is not a valid meta-property for keyword '{1}'. Did you mean '{2}'?", - "17013": "Meta-property '{0}' is only allowed in the body of a function declaration, function expression, or constructor.", - "17014": "JSX fragment has no corresponding closing tag.", - "17015": "Expected corresponding closing tag for JSX fragment.", - "17016": "The 'jsxFragmentFactory' compiler option must be provided to use JSX fragments with the 'jsxFactory' compiler option.", - "17017": "An @jsxFrag pragma is required when using an @jsx pragma with JSX fragments.", - "17018": "Unknown type acquisition option '{0}'. Did you mean '{1}'?", - "17019": "'{0}' at the end of a type is not valid TypeScript syntax. Did you mean to write '{1}'?", - "17020": "'{0}' at the start of a type is not valid TypeScript syntax. Did you mean to write '{1}'?", - "17021": "Unicode escape sequence cannot appear here.", - "18000": "Circularity detected while resolving configuration: {0}", - "18002": "The 'files' list in config file '{0}' is empty.", - "18003": "No inputs were found in config file '{0}'. Specified 'include' paths were '{1}' and 'exclude' paths were '{2}'.", - "18004": "No value exists in scope for the shorthand property '{0}'. Either declare one or provide an initializer.", - "18006": "Classes may not have a field named 'constructor'.", - "18007": "JSX expressions may not use the comma operator. Did you mean to write an array?", - "18009": "Private identifiers cannot be used as parameters.", - "18010": "An accessibility modifier cannot be used with a private identifier.", - "18011": "The operand of a 'delete' operator cannot be a private identifier.", - "18012": "'#constructor' is a reserved word.", - "18013": "Property '{0}' is not accessible outside class '{1}' because it has a private identifier.", - "18014": "The property '{0}' cannot be accessed on type '{1}' within this class because it is shadowed by another private identifier with the same spelling.", - "18015": "Property '{0}' in type '{1}' refers to a different member that cannot be accessed from within type '{2}'.", - "18016": "Private identifiers are not allowed outside class bodies.", - "18017": "The shadowing declaration of '{0}' is defined here", - "18018": "The declaration of '{0}' that you probably intended to use is defined here", - "18019": "'{0}' modifier cannot be used with a private identifier.", - "18024": "An enum member cannot be named with a private identifier.", - "18026": "'#!' can only be used at the start of a file.", - "18027": "Compiler reserves name '{0}' when emitting private identifier downlevel.", - "18028": "Private identifiers are only available when targeting ECMAScript 2015 and higher.", - "18029": "Private identifiers are not allowed in variable declarations.", - "18030": "An optional chain cannot contain private identifiers.", - "18031": "The intersection '{0}' was reduced to 'never' because property '{1}' has conflicting types in some constituents.", - "18032": "The intersection '{0}' was reduced to 'never' because property '{1}' exists in multiple constituents and is private in some.", - "18033": "Type '{0}' is not assignable to type '{1}' as required for computed enum member values.", - "18034": "Specify the JSX fragment factory function to use when targeting 'react' JSX emit with 'jsxFactory' compiler option is specified, e.g. 'Fragment'.", - "18035": "Invalid value for 'jsxFragmentFactory'. '{0}' is not a valid identifier or qualified-name.", - "18036": "Class decorators can't be used with static private identifier. Consider removing the experimental decorator.", - "18037": "Await expression cannot be used inside a class static block.", - "18038": "'For await' loops cannot be used inside a class static block.", - "18039": "Invalid use of '{0}'. It cannot be used inside a class static block.", - "18041": "A 'return' statement cannot be used inside a class static block.", - "18042": "'{0}' is a type and cannot be imported in JavaScript files. Use '{1}' in a JSDoc type annotation.", - "18043": "Types cannot appear in export declarations in JavaScript files.", - "18044": "'{0}' is automatically exported here.", - "18045": "Properties with the 'accessor' modifier are only available when targeting ECMAScript 2015 and higher.", - "18046": "'{0}' is of type 'unknown'.", - "18047": "'{0}' is possibly 'null'.", - "18048": "'{0}' is possibly 'undefined'.", - "18049": "'{0}' is possibly 'null' or 'undefined'.", - "18050": "The value '{0}' cannot be used here.", - "18051": "Compiler option '{0}' cannot be given an empty string.", - "18052": "Non-abstract class '{0}' does not implement all abstract members of '{1}'", - "18053": "Its type '{0}' is not a valid JSX element type.", - "18054": "'await using' statements cannot be used inside a class static block.", - "69010": "module === `AMD` or `UMD` or `System` or `ES6`, then `Classic`, Otherwise `Node`", - "80001": "File is a CommonJS module; it may be converted to an ES module.", - "80002": "This constructor function may be converted to a class declaration.", - "80003": "Import may be converted to a default import.", - "80004": "JSDoc types may be moved to TypeScript types.", - "80005": "'require' call may be converted to an import.", - "80006": "This may be converted to an async function.", - "80007": "'await' has no effect on the type of this expression.", - "80008": "Numeric literals with absolute values equal to 2^53 or greater are too large to be represented accurately as integers.", - "80009": "JSDoc typedef may be converted to TypeScript type.", - "80010": "JSDoc typedefs may be converted to TypeScript types.", - "90001": "Add missing 'super()' call", - "90002": "Make 'super()' call the first statement in the constructor", - "90003": "Change 'extends' to 'implements'", - "90004": "Remove unused declaration for: '{0}'", - "90005": "Remove import from '{0}'", - "90006": "Implement interface '{0}'", - "90007": "Implement inherited abstract class", - "90008": "Add '{0}.' to unresolved variable", - "90010": "Remove variable statement", - "90011": "Remove template tag", - "90012": "Remove type parameters", - "90013": "Import '{0}' from \"{1}\"", - "90014": "Change '{0}' to '{1}'", - "90016": "Declare property '{0}'", - "90017": "Add index signature for property '{0}'", - "90018": "Disable checking for this file", - "90019": "Ignore this error message", - "90020": "Initialize property '{0}' in the constructor", - "90021": "Initialize static property '{0}'", - "90022": "Change spelling to '{0}'", - "90023": "Declare method '{0}'", - "90024": "Declare static method '{0}'", - "90025": "Prefix '{0}' with an underscore", - "90026": "Rewrite as the indexed access type '{0}'", - "90027": "Declare static property '{0}'", - "90028": "Call decorator expression", - "90029": "Add async modifier to containing function", - "90030": "Replace 'infer {0}' with 'unknown'", - "90031": "Replace all unused 'infer' with 'unknown'", - "90034": "Add parameter name", - "90035": "Declare private property '{0}'", - "90036": "Replace '{0}' with 'Promise<{1}>'", - "90037": "Fix all incorrect return type of an async functions", - "90038": "Declare private method '{0}'", - "90039": "Remove unused destructuring declaration", - "90041": "Remove unused declarations for: '{0}'", - "90053": "Declare a private field named '{0}'.", - "90054": "Includes imports of types referenced by '{0}'", - "90055": "Remove 'type' from import declaration from \"{0}\"", - "90056": "Remove 'type' from import of '{0}' from \"{1}\"", - "90057": "Add import from \"{0}\"", - "90058": "Update import from \"{0}\"", - "90059": "Export '{0}' from module '{1}'", - "90060": "Export all referenced locals", - "95001": "Convert function to an ES2015 class", - "95003": "Convert '{0}' to '{1} in {0}'", - "95004": "Extract to {0} in {1}", - "95005": "Extract function", - "95006": "Extract constant", - "95007": "Extract to {0} in enclosing scope", - "95008": "Extract to {0} in {1} scope", - "95009": "Annotate with type from JSDoc", - "95011": "Infer type of '{0}' from usage", - "95012": "Infer parameter types from usage", - "95013": "Convert to default import", - "95014": "Install '{0}'", - "95015": "Replace import with '{0}'.", - "95016": "Use synthetic 'default' member.", - "95017": "Convert to ES module", - "95018": "Add 'undefined' type to property '{0}'", - "95019": "Add initializer to property '{0}'", - "95020": "Add definite assignment assertion to property '{0}'", - "95021": "Convert all type literals to mapped type", - "95022": "Add all missing members", - "95023": "Infer all types from usage", - "95024": "Delete all unused declarations", - "95025": "Prefix all unused declarations with '_' where possible", - "95026": "Fix all detected spelling errors", - "95027": "Add initializers to all uninitialized properties", - "95028": "Add definite assignment assertions to all uninitialized properties", - "95029": "Add undefined type to all uninitialized properties", - "95030": "Change all jsdoc-style types to TypeScript", - "95031": "Change all jsdoc-style types to TypeScript (and add '| undefined' to nullable types)", - "95032": "Implement all unimplemented interfaces", - "95033": "Install all missing types packages", - "95034": "Rewrite all as indexed access types", - "95035": "Convert all to default imports", - "95036": "Make all 'super()' calls the first statement in their constructor", - "95037": "Add qualifier to all unresolved variables matching a member name", - "95038": "Change all extended interfaces to 'implements'", - "95039": "Add all missing super calls", - "95040": "Implement all inherited abstract classes", - "95041": "Add all missing 'async' modifiers", - "95042": "Add '@ts-ignore' to all error messages", - "95043": "Annotate everything with types from JSDoc", - "95044": "Add '()' to all uncalled decorators", - "95045": "Convert all constructor functions to classes", - "95046": "Generate 'get' and 'set' accessors", - "95047": "Convert 'require' to 'import'", - "95048": "Convert all 'require' to 'import'", - "95049": "Move to a new file", - "95050": "Remove unreachable code", - "95051": "Remove all unreachable code", - "95052": "Add missing 'typeof'", - "95053": "Remove unused label", - "95054": "Remove all unused labels", - "95055": "Convert '{0}' to mapped object type", - "95056": "Convert namespace import to named imports", - "95057": "Convert named imports to namespace import", - "95058": "Add or remove braces in an arrow function", - "95059": "Add braces to arrow function", - "95060": "Remove braces from arrow function", - "95061": "Convert default export to named export", - "95062": "Convert named export to default export", - "95063": "Add missing enum member '{0}'", - "95064": "Add all missing imports", - "95065": "Convert to async function", - "95066": "Convert all to async functions", - "95067": "Add missing call parentheses", - "95068": "Add all missing call parentheses", - "95069": "Add 'unknown' conversion for non-overlapping types", - "95070": "Add 'unknown' to all conversions of non-overlapping types", - "95071": "Add missing 'new' operator to call", - "95072": "Add missing 'new' operator to all calls", - "95073": "Add names to all parameters without names", - "95074": "Enable the 'experimentalDecorators' option in your configuration file", - "95075": "Convert parameters to destructured object", - "95077": "Extract type", - "95078": "Extract to type alias", - "95079": "Extract to typedef", - "95080": "Infer 'this' type of '{0}' from usage", - "95081": "Add 'const' to unresolved variable", - "95082": "Add 'const' to all unresolved variables", - "95083": "Add 'await'", - "95084": "Add 'await' to initializer for '{0}'", - "95085": "Fix all expressions possibly missing 'await'", - "95086": "Remove unnecessary 'await'", - "95087": "Remove all unnecessary uses of 'await'", - "95088": "Enable the '--jsx' flag in your configuration file", - "95089": "Add 'await' to initializers", - "95090": "Extract to interface", - "95091": "Convert to a bigint numeric literal", - "95092": "Convert all to bigint numeric literals", - "95093": "Convert 'const' to 'let'", - "95094": "Prefix with 'declare'", - "95095": "Prefix all incorrect property declarations with 'declare'", - "95096": "Convert to template string", - "95097": "Add 'export {}' to make this file into a module", - "95098": "Set the 'target' option in your configuration file to '{0}'", - "95099": "Set the 'module' option in your configuration file to '{0}'", - "95100": "Convert invalid character to its html entity code", - "95101": "Convert all invalid characters to HTML entity code", - "95102": "Convert all 'const' to 'let'", - "95105": "Convert function expression '{0}' to arrow function", - "95106": "Convert function declaration '{0}' to arrow function", - "95107": "Fix all implicit-'this' errors", - "95108": "Wrap invalid character in an expression container", - "95109": "Wrap all invalid characters in an expression container", - "95110": "Visit https://aka.ms/tsconfig to read more about this file", - "95111": "Add a return statement", - "95112": "Remove braces from arrow function body", - "95113": "Wrap the following body with parentheses which should be an object literal", - "95114": "Add all missing return statement", - "95115": "Remove braces from all arrow function bodies with relevant issues", - "95116": "Wrap all object literal with parentheses", - "95117": "Move labeled tuple element modifiers to labels", - "95118": "Convert overload list to single signature", - "95119": "Generate 'get' and 'set' accessors for all overriding properties", - "95120": "Wrap in JSX fragment", - "95121": "Wrap all unparented JSX in JSX fragment", - "95122": "Convert arrow function or function expression", - "95123": "Convert to anonymous function", - "95124": "Convert to named function", - "95125": "Convert to arrow function", - "95126": "Remove parentheses", - "95127": "Could not find a containing arrow function", - "95128": "Containing function is not an arrow function", - "95129": "Could not find export statement", - "95130": "This file already has a default export", - "95131": "Could not find import clause", - "95132": "Could not find namespace import or named imports", - "95133": "Selection is not a valid type node", - "95134": "No type could be extracted from this type node", - "95135": "Could not find property for which to generate accessor", - "95136": "Name is not valid", - "95137": "Can only convert property with modifier", - "95138": "Switch each misused '{0}' to '{1}'", - "95139": "Convert to optional chain expression", - "95140": "Could not find convertible access expression", - "95141": "Could not find matching access expressions", - "95142": "Can only convert logical AND access chains", - "95143": "Add 'void' to Promise resolved without a value", - "95144": "Add 'void' to all Promises resolved without a value", - "95145": "Use element access for '{0}'", - "95146": "Use element access for all undeclared properties.", - "95147": "Delete all unused imports", - "95148": "Infer function return type", - "95149": "Return type must be inferred from a function", - "95150": "Could not determine function return type", - "95151": "Could not convert to arrow function", - "95152": "Could not convert to named function", - "95153": "Could not convert to anonymous function", - "95154": "Can only convert string concatenation", - "95155": "Selection is not a valid statement or statements", - "95156": "Add missing function declaration '{0}'", - "95157": "Add all missing function declarations", - "95158": "Method not implemented.", - "95159": "Function not implemented.", - "95160": "Add 'override' modifier", - "95161": "Remove 'override' modifier", - "95162": "Add all missing 'override' modifiers", - "95163": "Remove all unnecessary 'override' modifiers", - "95164": "Can only convert named export", - "95165": "Add missing properties", - "95166": "Add all missing properties", - "95167": "Add missing attributes", - "95168": "Add all missing attributes", - "95169": "Add 'undefined' to optional property type", - "95170": "Convert named imports to default import", - "95171": "Delete unused '@param' tag '{0}'", - "95172": "Delete all unused '@param' tags", - "95173": "Rename '@param' tag name '{0}' to '{1}'", - "95174": "Use `{0}`.", - "95175": "Use `Number.isNaN` in all conditions.", - "95176": "Convert typedef to TypeScript type.", - "95177": "Convert all typedef to TypeScript types.", - "95178": "Move to file", - "95179": "Cannot move to file, selected file is invalid", - "95180": "Use 'import type'", - "95181": "Use 'type {0}'", - "95182": "Fix all with type-only imports", - "95183": "Cannot move statements to the selected file", - "95184": "Inline variable", - "95185": "Could not find variable to inline.", - "95186": "Variables with multiple declarations cannot be inlined.", - "95187": "Add missing comma for object member completion '{0}'." -} diff --git a/db/_tags.json b/db/_tags.json deleted file mode 100644 index d3ca907..0000000 --- a/db/_tags.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "syntax-error": [ - 1040, - 1011, - 1035, - 1015, - 1044, - 1021, - 1031, - 1005, - 1014, - 1030, - 1010, - 1034, - 1029, - 1039, - 1019, - 1048, - 1009, - 1018, - 1028, - 1038, - 1046, - 1017, - 1013, - 1042, - 1003, - 1002, - 1036, - 1047, - 1016 - ], - "typescript-only": [ - 1040, - 1035, - 1044, - 1039, - 1038, - 1046, - 1036 - ], - "declarations": [ - 1040, - 1035, - 1044, - 1039, - 1038, - 1046, - 1036 - ], - "missing-code": [ - 1011 - ], - "accessors": [ - 1054, - 1051, - 1049, - 1052, - 1053 - ], - "incomplete-code": [ - 1005, - 1010, - 1003, - 1002 - ], - "async": [ - 1055 - ], - "trailing-comma": [ - 1009 - ], - "down-emit": [ - 1056 - ], - "tailing-comma": [ - 1013 - ], - "strings": [ - 1002 - ], - "triple-slash": [ - 1006 - ] -} diff --git a/deno.json b/deno.json index ae2556e..c9d5c50 100644 --- a/deno.json +++ b/deno.json @@ -1,7 +1,7 @@ { "tasks": { - "build": "deno run --allow-env --allow-read=. --allow-write=db --allow-net build.ts", - "start": "deno run -A --watch=static/,routes/ dev.ts", + "build": "deno run --allow-env --allow-read=. --allow-write=db --allow-net --unstable build.ts", + "start": "deno run -A --unstable --watch=static/,routes/ dev.ts", "preview": "deno run -A main.ts" }, "compilerOptions": { @@ -9,16 +9,17 @@ "jsxImportSource": "preact" }, "imports": { - "$fresh/": "https://deno.land/x/fresh@1.4.2/", + "$fresh/": "https://deno.land/x/fresh@1.4.3/", "$types": "./types.d.ts", "algoliasearch": "https://esm.sh/stable/algoliasearch@4.19.1", "@algolia/client-search": "https://esm.sh/stable/@algolia/client-search@4.19.1", "@algolia/requester-fetch": "https://esm.sh/stable/@algolia/requester-fetch@4.19.1", - "cliffy/ansi/colors": "https://deno.land/x/cliffy@v0.25.7/ansi/colors.ts", - "cliffy/command": "https://deno.land/x/cliffy@v0.25.7/command/mod.ts", - "cliffy/table": "https://deno.land/x/cliffy@v0.25.7/table/mod.ts", + "cliffy/ansi/colors": "https://deno.land/x/cliffy@v1.0.0-rc.3/ansi/colors.ts", + "cliffy/command": "https://deno.land/x/cliffy@v1.0.0-rc.3/command/mod.ts", + "cliffy/table": "https://deno.land/x/cliffy@v1.0.0-rc.3/table/mod.ts", "gfm": "https://deno.land/x/gfm@0.2.5/mod.ts", "kia": "https://deno.land/x/kia@0.4.1b/mod.ts", + "kv_toolbox/": "https://deno.land/x/kv_toolbox@0.0.4/", "monaco-editor": "https://esm.sh/stable/monaco-editor@0.41.0?target=esnext", "monaco-editor/editor": "https://esm.sh/stable/monaco-editor@0.41.0/esm/vs/editor/editor.worker?target=esnext&worker", "octokit": "https://esm.sh/stable/octokit@v3.1.0", @@ -32,7 +33,7 @@ "@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.2.3", "prism/": "https://esm.sh/stable/prismjs@1.29.0/", "std/encoding/front_matter/": "https://raw.githubusercontent.com/kitsonk/deno_std/fix_front_matter_extract/encoding/front_matter/", - "std/": "https://deno.land/std@0.198.0/", + "std/": "https://deno.land/std@0.201.0/", "twind": "https://esm.sh/twind@0.16.19", "twind/": "https://esm.sh/twind@0.16.19/", "$util/": "./util/" diff --git a/deno.lock b/deno.lock index 03a01e9..38064de 100644 --- a/deno.lock +++ b/deno.lock @@ -32,7 +32,6 @@ "https://deno.land/std@0.140.0/path/separator.ts": "fe1816cb765a8068afb3e8f13ad272351c85cbc739af56dacfc7d93d710fe0f9", "https://deno.land/std@0.140.0/path/win32.ts": "31811536855e19ba37a999cd8d1b62078235548d67902ece4aa6b814596dd757", "https://deno.land/std@0.140.0/streams/conversion.ts": "712585bfa0172a97fb68dd46e784ae8ad59d11b88079d6a4ab098ff42e697d21", - "https://deno.land/std@0.170.0/fmt/colors.ts": "03ad95e543d2808bc43c17a3dd29d25b43d0f16287fe562a0be89bf632454a12", "https://deno.land/std@0.173.0/_util/asserts.ts": "178dfc49a464aee693a7e285567b3d0b555dc805ff490505a8aae34f9cfb1462", "https://deno.land/std@0.173.0/_util/os.ts": "d932f56d41e4f6a6093d56044e29ce637f8dcc43c5a90af43504a889cf1775e3", "https://deno.land/std@0.173.0/encoding/base32.ts": "cb15f16e53c580d2491637280302bc6cfeb48f8911521ea9c7895ba513a2bcc5", @@ -59,6 +58,8 @@ "https://deno.land/std@0.173.0/path/posix.ts": "0874b341c2c6968ca38d323338b8b295ea1dae10fa872a768d812e2e7d634789", "https://deno.land/std@0.173.0/path/separator.ts": "0fb679739d0d1d7bf45b68dacfb4ec7563597a902edbaf3c59b50d5bcadd93b1", "https://deno.land/std@0.173.0/path/win32.ts": "672942919dd66ce1b8c224e77d3447e2ad8254eaff13fe6946420a9f78fa141e", + "https://deno.land/std@0.186.0/_util/asserts.ts": "178dfc49a464aee693a7e285567b3d0b555dc805ff490505a8aae34f9cfb1462", + "https://deno.land/std@0.186.0/crypto/timing_safe_equal.ts": "0fae34ee02264f309ae0b6e54e9746a7aba3996e5454903ed106967a7a9ef665", "https://deno.land/std@0.193.0/_util/asserts.ts": "178dfc49a464aee693a7e285567b3d0b555dc805ff490505a8aae34f9cfb1462", "https://deno.land/std@0.193.0/_util/os.ts": "d932f56d41e4f6a6093d56044e29ce637f8dcc43c5a90af43504a889cf1775e3", "https://deno.land/std@0.193.0/async/abortable.ts": "fd682fa46f3b7b16b4606a5ab52a7ce309434b76f820d3221bdfb862719a15d7", @@ -226,64 +227,76 @@ "https://deno.land/std@0.195.0/semver/try_parse.ts": "fc7eeafc18686563b0cc35b518eda57690e513e634527a0ff48c600ba7798ce4", "https://deno.land/std@0.195.0/semver/try_parse_range.ts": "49be2271c4c07374fc2d986d5212fab7bb1f49daa485141e9bedd78d851ca5ca", "https://deno.land/std@0.195.0/semver/types.ts": "d44f442c2f27dd89bd6695b369e310b80549746f03c38f241fe28a83b33dd429", - "https://deno.land/std@0.198.0/collections/filter_values.ts": "16e1fc456a7969e770ec5b89edf5ac97b295ca534b47c1a83f061b409aad7814", - "https://deno.land/std@0.198.0/collections/without_all.ts": "1e3cccb1ed0659455b473c0766d9414b7710d8cef48862c899f445178f66b779", - "https://deno.land/std@0.198.0/dotenv/mod.ts": "ff7acf1c97ba57af512ecb6f9094fa96e1f63cca1960a7687616fa86bab7e356", + "https://deno.land/std@0.196.0/assert/assert.ts": "9a97dad6d98c238938e7540736b826440ad8c1c1e54430ca4c4e623e585607ee", + "https://deno.land/std@0.196.0/assert/assertion_error.ts": "4d0bde9b374dfbcbe8ac23f54f567b77024fb67dbb1906a852d67fe050d42f56", + "https://deno.land/std@0.196.0/console/_data.json": "cf2cc9d039a192b3adbfe64627167c7e6212704c888c25c769fc8f1709e1e1b8", + "https://deno.land/std@0.196.0/console/_rle.ts": "56668d5c44f964f1b4ff93f21c9896df42d6ee4394e814db52d6d13f5bb247c7", + "https://deno.land/std@0.196.0/console/unicode_width.ts": "10661c0f2eeab802d16b8b85ed8825bbc573991bbfb6affed32dc1ff994f54f9", + "https://deno.land/std@0.196.0/fmt/colors.ts": "a7eecffdf3d1d54db890723b303847b6e0a1ab4b528ba6958b8f2e754cf1b3bc", + "https://deno.land/std@0.201.0/dotenv/mod.ts": "1da8c6d0e7f7d8a5c2b19400b763bc11739df24acec235dda7ea2cfd3d300057", "https://deno.land/std@0.97.0/fmt/colors.ts": "db22b314a2ae9430ae7460ce005e0a7130e23ae1c999157e3bb77cf55800f7e4", "https://deno.land/std@0.97.0/testing/_diff.ts": "961eaf6d9f5b0a8556c9d835bbc6fa74f5addd7d3b02728ba7936ff93364f7a3", "https://deno.land/std@0.97.0/testing/asserts.ts": "341292d12eebc44be4c3c2ca101ba8b6b5859cef2fa69d50c217f9d0bfbcfd1f", - "https://deno.land/x/cliffy@v0.25.7/_utils/distance.ts": "02af166952c7c358ac83beae397aa2fbca4ad630aecfcd38d92edb1ea429f004", - "https://deno.land/x/cliffy@v0.25.7/ansi/colors.ts": "5f71993af5bd1aa0a795b15f41692d556d7c89584a601fed75997df844b832c9", - "https://deno.land/x/cliffy@v0.25.7/command/_errors.ts": "a9bd23dc816b32ec96c9b8f3057218241778d8c40333b43341138191450965e5", - "https://deno.land/x/cliffy@v0.25.7/command/_utils.ts": "9ab3d69fabab6c335b881b8a5229cbd5db0c68f630a1c307aff988b6396d9baf", - "https://deno.land/x/cliffy@v0.25.7/command/command.ts": "a2b83c612acd65c69116f70dec872f6da383699b83874b70fcf38cddf790443f", - "https://deno.land/x/cliffy@v0.25.7/command/completions/_bash_completions_generator.ts": "43b4abb543d4dc60233620d51e69d82d3b7c44e274e723681e0dce2a124f69f9", - "https://deno.land/x/cliffy@v0.25.7/command/completions/_fish_completions_generator.ts": "d0289985f5cf0bd288c05273bfa286b24c27feb40822eb7fd9d7fee64e6580e8", - "https://deno.land/x/cliffy@v0.25.7/command/completions/_zsh_completions_generator.ts": "14461eb274954fea4953ee75938821f721da7da607dc49bcc7db1e3f33a207bd", - "https://deno.land/x/cliffy@v0.25.7/command/completions/bash.ts": "053aa2006ec327ccecacb00ba28e5eb836300e5c1bec1b3cfaee9ddcf8189756", - "https://deno.land/x/cliffy@v0.25.7/command/completions/complete.ts": "58df61caa5e6220ff2768636a69337923ad9d4b8c1932aeb27165081c4d07d8b", - "https://deno.land/x/cliffy@v0.25.7/command/completions/fish.ts": "9938beaa6458c6cf9e2eeda46a09e8cd362d4f8c6c9efe87d3cd8ca7477402a5", - "https://deno.land/x/cliffy@v0.25.7/command/completions/mod.ts": "aeef7ec8e319bb157c39a4bab8030c9fe8fa327b4c1e94c9c1025077b45b40c0", - "https://deno.land/x/cliffy@v0.25.7/command/completions/zsh.ts": "8b04ab244a0b582f7927d405e17b38602428eeb347a9968a657e7ea9f40e721a", - "https://deno.land/x/cliffy@v0.25.7/command/deprecated.ts": "bbe6670f1d645b773d04b725b8b8e7814c862c9f1afba460c4d599ffe9d4983c", - "https://deno.land/x/cliffy@v0.25.7/command/deps.ts": "275b964ce173770bae65f6b8ebe9d2fd557dc10292cdd1ed3db1735f0d77fa1d", - "https://deno.land/x/cliffy@v0.25.7/command/help/_help_generator.ts": "f7c349cb2ddb737e70dc1f89bcb1943ca9017a53506be0d4138e0aadb9970a49", - "https://deno.land/x/cliffy@v0.25.7/command/help/mod.ts": "09d74d3eb42d21285407cda688074c29595d9c927b69aedf9d05ff3f215820d3", - "https://deno.land/x/cliffy@v0.25.7/command/mod.ts": "d0a32df6b14028e43bb2d41fa87d24bc00f9662a44e5a177b3db02f93e473209", - "https://deno.land/x/cliffy@v0.25.7/command/type.ts": "24e88e3085e1574662b856ccce70d589959648817135d4469fab67b9cce1b364", - "https://deno.land/x/cliffy@v0.25.7/command/types.ts": "ae02eec0ed7a769f7dba2dd5d3a931a61724b3021271b1b565cf189d9adfd4a0", - "https://deno.land/x/cliffy@v0.25.7/command/types/action_list.ts": "33c98d449617c7a563a535c9ceb3741bde9f6363353fd492f90a74570c611c27", - "https://deno.land/x/cliffy@v0.25.7/command/types/boolean.ts": "3879ec16092b4b5b1a0acb8675f8c9250c0b8a972e1e4c7adfba8335bd2263ed", - "https://deno.land/x/cliffy@v0.25.7/command/types/child_command.ts": "f1fca390c7fbfa7a713ca15ef55c2c7656bcbb394d50e8ef54085bdf6dc22559", - "https://deno.land/x/cliffy@v0.25.7/command/types/command.ts": "325d0382e383b725fd8d0ef34ebaeae082c5b76a1f6f2e843fee5dbb1a4fe3ac", - "https://deno.land/x/cliffy@v0.25.7/command/types/enum.ts": "2178345972adf7129a47e5f02856ca3e6852a91442a1c78307dffb8a6a3c6c9f", - "https://deno.land/x/cliffy@v0.25.7/command/types/file.ts": "8618f16ac9015c8589cbd946b3de1988cc4899b90ea251f3325c93c46745140e", - "https://deno.land/x/cliffy@v0.25.7/command/types/integer.ts": "29864725fd48738579d18123d7ee78fed37515e6dc62146c7544c98a82f1778d", - "https://deno.land/x/cliffy@v0.25.7/command/types/number.ts": "aeba96e6f470309317a16b308c82e0e4138a830ec79c9877e4622c682012bc1f", - "https://deno.land/x/cliffy@v0.25.7/command/types/string.ts": "e4dadb08a11795474871c7967beab954593813bb53d9f69ea5f9b734e43dc0e0", - "https://deno.land/x/cliffy@v0.25.7/command/upgrade/mod.ts": "17e2df3b620905583256684415e6c4a31e8de5c59066eb6d6c9c133919292dc4", - "https://deno.land/x/cliffy@v0.25.7/command/upgrade/provider.ts": "d6fb846043232cbd23c57d257100c7fc92274984d75a5fead0f3e4266dc76ab8", - "https://deno.land/x/cliffy@v0.25.7/command/upgrade/provider/deno_land.ts": "24f8d82e38c51e09be989f30f8ad21f9dd41ac1bb1973b443a13883e8ba06d6d", - "https://deno.land/x/cliffy@v0.25.7/command/upgrade/provider/github.ts": "99e1b133dd446c6aa79f69e69c46eb8bc1c968dd331c2a7d4064514a317c7b59", - "https://deno.land/x/cliffy@v0.25.7/command/upgrade/provider/nest_land.ts": "0e07936cea04fa41ac9297f32d87f39152ea873970c54cb5b4934b12fee1885e", - "https://deno.land/x/cliffy@v0.25.7/command/upgrade/upgrade_command.ts": "3640a287d914190241ea1e636774b1b4b0e1828fa75119971dd5304784061e05", - "https://deno.land/x/cliffy@v0.25.7/flags/_errors.ts": "f1fbb6bfa009e7950508c9d491cfb4a5551027d9f453389606adb3f2327d048f", - "https://deno.land/x/cliffy@v0.25.7/flags/_utils.ts": "340d3ecab43cde9489187e1f176504d2c58485df6652d1cdd907c0e9c3ce4cc2", - "https://deno.land/x/cliffy@v0.25.7/flags/_validate_flags.ts": "16eb5837986c6f6f7620817820161a78d66ce92d690e3697068726bbef067452", - "https://deno.land/x/cliffy@v0.25.7/flags/deprecated.ts": "a72a35de3cc7314e5ebea605ca23d08385b218ef171c32a3f135fb4318b08126", - "https://deno.land/x/cliffy@v0.25.7/flags/flags.ts": "68a9dfcacc4983a84c07ba19b66e5e9fccd04389fad215210c60fb414cc62576", - "https://deno.land/x/cliffy@v0.25.7/flags/types.ts": "7452ea5296758fb7af89930349ce40d8eb9a43b24b3f5759283e1cb5113075fd", - "https://deno.land/x/cliffy@v0.25.7/flags/types/boolean.ts": "4c026dd66ec9c5436860dc6d0241427bdb8d8e07337ad71b33c08193428a2236", - "https://deno.land/x/cliffy@v0.25.7/flags/types/integer.ts": "b60d4d590f309ddddf066782d43e4dc3799f0e7d08e5ede7dc62a5ee94b9a6d9", - "https://deno.land/x/cliffy@v0.25.7/flags/types/number.ts": "610936e2d29de7c8c304b65489a75ebae17b005c6122c24e791fbed12444d51e", - "https://deno.land/x/cliffy@v0.25.7/flags/types/string.ts": "e89b6a5ce322f65a894edecdc48b44956ec246a1d881f03e97bbda90dd8638c5", - "https://deno.land/x/cliffy@v0.25.7/table/border.ts": "2514abae4e4f51eda60a5f8c927ba24efd464a590027e900926b38f68e01253c", - "https://deno.land/x/cliffy@v0.25.7/table/cell.ts": "1d787d8006ac8302020d18ec39f8d7f1113612c20801b973e3839de9c3f8b7b3", - "https://deno.land/x/cliffy@v0.25.7/table/deps.ts": "5b05fa56c1a5e2af34f2103fd199e5f87f0507549963019563eae519271819d2", - "https://deno.land/x/cliffy@v0.25.7/table/layout.ts": "46bf10ae5430cf4fbb92f23d588230e9c6336edbdb154e5c9581290562b169f4", - "https://deno.land/x/cliffy@v0.25.7/table/row.ts": "5f519ba7488d2ef76cbbf50527f10f7957bfd668ce5b9169abbc44ec88302645", - "https://deno.land/x/cliffy@v0.25.7/table/table.ts": "ec204c9d08bb3ff1939c5ac7412a4c9ed7d00925d4fc92aff9bfe07bd269258d", - "https://deno.land/x/cliffy@v0.25.7/table/utils.ts": "187bb7dcbcfb16199a5d906113f584740901dfca1007400cba0df7dcd341bc29", + "https://deno.land/x/cliffy@v1.0.0-rc.3/_utils/distance.ts": "02af166952c7c358ac83beae397aa2fbca4ad630aecfcd38d92edb1ea429f004", + "https://deno.land/x/cliffy@v1.0.0-rc.3/ansi/colors.ts": "328916ea1627c202b39f2ed0f1ca65a573cfb75fa8986aa3dbcc0b7463911005", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/_argument_types.ts": "ab269dacea2030f865a07c2a1e953ec437a64419a05bad1f1ddaab3f99752ead", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/_errors.ts": "12d513ff401020287a344e0830e1297ce1c80c077ecb91e0ac5db44d04a6019c", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/_spread.ts": "0cc6eb70a6df97b5d7d26008822d39f3e8a1232ee0a27f395aa19e68de738245", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/_type_utils.ts": "820004a59bc858e355b11f80e5b3ff1be2c87e66f31f53f253610170795602f0", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/_utils.ts": "3c88ff4f36eba298beb07de08068fdce5e5cb7b9d82c8a319f09596d8279be64", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/command.ts": "ae690745759524082776b7f271f66d5b93933170b1b132f888bd4ac12e9fdd7d", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/completions/_bash_completions_generator.ts": "0c6cb1df4d378d22f001155781d97a9c3519fd10c48187a198fef2cc63b0f84a", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/completions/_fish_completions_generator.ts": "8ba4455f7f76a756e05c3db4ce35332b2951af65a2891f2750b530e06880f495", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/completions/_zsh_completions_generator.ts": "c74525feaf570fe8c14433c30d192622c25603f1fc64694ef69f2a218b41f230", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/completions/bash.ts": "53fe78994eb2359110dc4fa79235bdd86800a38c1d6b1c4fe673c81756f3a0e2", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/completions/complete.ts": "58df61caa5e6220ff2768636a69337923ad9d4b8c1932aeb27165081c4d07d8b", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/completions/completions_command.ts": "506f97f1c6b0b1c3e9956e5069070028b818942310600d4157f64c9b644d3c49", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/completions/fish.ts": "6f0b44b4067740b2931c9ec8863b6619b1d3410fea0c5a3988525a4c53059197", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/completions/mod.ts": "8dda715ca25f3f66d5ec232b76d7c9a96dd4c64b5029feff91738cc0c9586fb1", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/completions/zsh.ts": "f1263c3946975e090d4aadc8681db811d86b52a8ae680f246e03248025885c21", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/deprecated.ts": "bbe6670f1d645b773d04b725b8b8e7814c862c9f1afba460c4d599ffe9d4983c", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/deps.ts": "7473ebd5625bf901becd7ff80afdde3b8a50ae5d1bbfa2f43805cfacf4559d5a", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/help/_help_generator.ts": "532dd4a928baab8b45ce46bb6d20e2ebacfdf3da141ce9d12da796652b1de478", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/help/help_command.ts": "fbbf0c0827dd21d3cec7bcc68c00c20b55f53e2b621032891b9d23ac4191231c", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/help/mod.ts": "8369b292761dcc9ddaf41f2d34bfb06fb6800b69efe80da4fc9752c3b890275b", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/mod.ts": "4b708df1b97152522bee0e3828f06abbbc1d2250168910e5cf454950d7b7404b", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/type.ts": "f588f5d9635b79100044e62aced4b00e510e75b83801f9b089c40c2d98674de2", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/types.ts": "bc9ff7459b9cc1079eeb95ff101690a51b4b4afa4af5623340076ee361d08dbb", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/types/action_list.ts": "33c98d449617c7a563a535c9ceb3741bde9f6363353fd492f90a74570c611c27", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/types/boolean.ts": "3879ec16092b4b5b1a0acb8675f8c9250c0b8a972e1e4c7adfba8335bd2263ed", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/types/child_command.ts": "f1fca390c7fbfa7a713ca15ef55c2c7656bcbb394d50e8ef54085bdf6dc22559", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/types/command.ts": "325d0382e383b725fd8d0ef34ebaeae082c5b76a1f6f2e843fee5dbb1a4fe3ac", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/types/enum.ts": "8a7cd2898e03089234083bb78c8b1d9b7172254c53c32d4710321638165a48ec", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/types/file.ts": "8618f16ac9015c8589cbd946b3de1988cc4899b90ea251f3325c93c46745140e", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/types/integer.ts": "29864725fd48738579d18123d7ee78fed37515e6dc62146c7544c98a82f1778d", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/types/number.ts": "aeba96e6f470309317a16b308c82e0e4138a830ec79c9877e4622c682012bc1f", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/types/string.ts": "e4dadb08a11795474871c7967beab954593813bb53d9f69ea5f9b734e43dc0e0", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/upgrade/_check_version.ts": "6cfa7dc26bc0dc46381500e8d4b130fb224f4c5456152dada15bd3793edca89b", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/upgrade/mod.ts": "4eff69c489467be17dea27fb95a795396111ee385d170ac0cbcc82f0ea38156c", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/upgrade/provider.ts": "c23253334097dc4b8a147ccdeb3aa44f5a95aa953a6386cb5396f830d95d77a5", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/upgrade/provider/deno_land.ts": "24f8d82e38c51e09be989f30f8ad21f9dd41ac1bb1973b443a13883e8ba06d6d", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/upgrade/provider/github.ts": "99e1b133dd446c6aa79f69e69c46eb8bc1c968dd331c2a7d4064514a317c7b59", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/upgrade/provider/nest_land.ts": "0e07936cea04fa41ac9297f32d87f39152ea873970c54cb5b4934b12fee1885e", + "https://deno.land/x/cliffy@v1.0.0-rc.3/command/upgrade/upgrade_command.ts": "3640a287d914190241ea1e636774b1b4b0e1828fa75119971dd5304784061e05", + "https://deno.land/x/cliffy@v1.0.0-rc.3/flags/_errors.ts": "f1fbb6bfa009e7950508c9d491cfb4a5551027d9f453389606adb3f2327d048f", + "https://deno.land/x/cliffy@v1.0.0-rc.3/flags/_utils.ts": "340d3ecab43cde9489187e1f176504d2c58485df6652d1cdd907c0e9c3ce4cc2", + "https://deno.land/x/cliffy@v1.0.0-rc.3/flags/_validate_flags.ts": "e60b9038c0136ab7e6bd1baf0e993a07bf23f18afbfb6e12c59adf665a622957", + "https://deno.land/x/cliffy@v1.0.0-rc.3/flags/deprecated.ts": "a72a35de3cc7314e5ebea605ca23d08385b218ef171c32a3f135fb4318b08126", + "https://deno.land/x/cliffy@v1.0.0-rc.3/flags/flags.ts": "3e62c4a9756b5705aada29e7e94847001356b3a83cd18ad56f4207387a71cf51", + "https://deno.land/x/cliffy@v1.0.0-rc.3/flags/types.ts": "9e2f75edff2217d972fc711a21676a59dfd88378da2f1ace440ea84c07db1dcc", + "https://deno.land/x/cliffy@v1.0.0-rc.3/flags/types/boolean.ts": "4c026dd66ec9c5436860dc6d0241427bdb8d8e07337ad71b33c08193428a2236", + "https://deno.land/x/cliffy@v1.0.0-rc.3/flags/types/integer.ts": "b60d4d590f309ddddf066782d43e4dc3799f0e7d08e5ede7dc62a5ee94b9a6d9", + "https://deno.land/x/cliffy@v1.0.0-rc.3/flags/types/number.ts": "610936e2d29de7c8c304b65489a75ebae17b005c6122c24e791fbed12444d51e", + "https://deno.land/x/cliffy@v1.0.0-rc.3/flags/types/string.ts": "e89b6a5ce322f65a894edecdc48b44956ec246a1d881f03e97bbda90dd8638c5", + "https://deno.land/x/cliffy@v1.0.0-rc.3/table/_layout.ts": "e4a518da28333de95ad791208b9930025987c8b93d5f8b7f30b377b3e26b24e1", + "https://deno.land/x/cliffy@v1.0.0-rc.3/table/_utils.ts": "fd48d1a524a42e72aa3ad2eec858a92f5a00728d306c7e8436fba6c34314fee6", + "https://deno.land/x/cliffy@v1.0.0-rc.3/table/border.ts": "5c6e9ef5078c6930169aacb668b274bdbb498461c724a7693ac9270fe9d3f5d5", + "https://deno.land/x/cliffy@v1.0.0-rc.3/table/cell.ts": "1ffabd43b6b7fddfac9625cb0d015532e144702a9bfed03b358b79375115d06b", + "https://deno.land/x/cliffy@v1.0.0-rc.3/table/column.ts": "cf14009f2cb14bad156f879946186c1893acdc6a2fee6845db152edddb6a2714", + "https://deno.land/x/cliffy@v1.0.0-rc.3/table/consume_words.ts": "456e75755fdf6966abdefb8b783df2855e2a8bad6ddbdf21bd748547c5fc1d4b", + "https://deno.land/x/cliffy@v1.0.0-rc.3/table/deps.ts": "1226c4d39d53edc81d7c3e661fb8a79f2e704937c276c60355cd4947a0fe9153", + "https://deno.land/x/cliffy@v1.0.0-rc.3/table/row.ts": "79eb1468aafdd951e5963898cdafe0752d4ab4c519d5f847f3d8ecb8fe857d4f", + "https://deno.land/x/cliffy@v1.0.0-rc.3/table/table.ts": "298671e72e61f1ab18b42ae36643181993f79e29b39dc411fdc6ffd53aa04684", "https://deno.land/x/code_block_writer@11.0.3/mod.ts": "2c3448060e47c9d08604c8f40dee34343f553f33edcdfebbf648442be33205e5", "https://deno.land/x/code_block_writer@11.0.3/utils/string_utils.ts": "60cb4ec8bd335bf241ef785ccec51e809d576ff8e8d29da43d2273b69ce2a6ff", "https://deno.land/x/deno_cache@0.4.1/auth_tokens.ts": "5fee7e9155e78cedf3f6ff3efacffdb76ac1a76c86978658d9066d4fb0f7326e", @@ -317,42 +330,44 @@ "https://deno.land/x/expect@v0.2.9/matchers.ts": "ba7360b73c5031a22449fa98eb4d5dbe7f256a88dd4c22ccae96dc6c01f0b19c", "https://deno.land/x/expect@v0.2.9/mock.ts": "562d4b1d735d15b0b8e935f342679096b64fe452f86e96714fe8616c0c884914", "https://deno.land/x/expect@v0.2.9/mod.ts": "0304d2430e1e96ba669a8495e24ba606dcc3d152e1f81aaa8da898cea24e36c2", - "https://deno.land/x/fresh@1.4.2/dev.ts": "720dd3a64b62b852db7b6ae471c246c5c605cf4a3091c4cbc802790f36d43e4c", - "https://deno.land/x/fresh@1.4.2/plugins/twind.ts": "b20ab6004318eb56538976c49b23c125560845650cf2b2d69b463c31b16da06f", - "https://deno.land/x/fresh@1.4.2/plugins/twind/shared.ts": "ad8ccde3874b305be13a996e6f1c774bb9f611505f98a0995f5f7be368c5949c", - "https://deno.land/x/fresh@1.4.2/runtime.ts": "b02ec1e2e32cf73a33d262b7c9dcab9468ce16cd89fd424196c71003698a4ab0", - "https://deno.land/x/fresh@1.4.2/server.ts": "f379c9aad24471a71e58fb887fa57e5cc27ad9df035987eb260541c78df38e84", - "https://deno.land/x/fresh@1.4.2/src/build/deps.ts": "e6f52b4d8814cd40db62f98f78ad050b232d7fac79b4df586429408d14456f23", - "https://deno.land/x/fresh@1.4.2/src/build/esbuild.ts": "10518c16f639b44c61698aca97d95adbd19eb0e91eb1167d7c3022e18b032471", - "https://deno.land/x/fresh@1.4.2/src/build/mod.ts": "95d2d99b7d31adfa10896599bdd21c67b3eac0d077e7a39fc637f812196538c3", - "https://deno.land/x/fresh@1.4.2/src/dev/build.ts": "48d678da87707a938e86108325b3d1dc93af1cda0e8b5f0b12a6348f717a1b80", - "https://deno.land/x/fresh@1.4.2/src/dev/deps.ts": "204401f2657137ee3fa077de4ed1d6b9ab69c19602ad53a393d147be899e29ad", - "https://deno.land/x/fresh@1.4.2/src/dev/dev_command.ts": "88c51a836f4866e7070ad1f8d9738f79d6b133f0ab3e9e484fd41a228310b680", - "https://deno.land/x/fresh@1.4.2/src/dev/error.ts": "21a38d240c00279662e6adde41367f1da0ae7e2836d993f818ea94aabab53e7b", - "https://deno.land/x/fresh@1.4.2/src/dev/mod.ts": "cf14e8ff8b2f70e88a592539ae4ab1fa875b5eba367b1b34a8058e6c6da282f2", - "https://deno.land/x/fresh@1.4.2/src/dev/update_check.ts": "4a66f7e1017d1344b7cdcbc35a1ba225593fe90a4f62d1c0ec03a91d94a0f569", - "https://deno.land/x/fresh@1.4.2/src/runtime/build_id.ts": "8376e70e42ce456dfa6932c638409d2ef1bca4833b4ceba0bf74510080a7f976", - "https://deno.land/x/fresh@1.4.2/src/runtime/csp.ts": "9ee900e9b0b786057b1009da5976298c202d1b86d1f1e4d2510bde5f06530ac9", - "https://deno.land/x/fresh@1.4.2/src/runtime/deserializer.ts": "8f11e04f9671741442b9512cc0617bef3edf22a60620c78b05097143a83cfe6e", - "https://deno.land/x/fresh@1.4.2/src/runtime/head.ts": "0f9932874497ab6e57ed1ba01d549e843523df4a5d36ef97460e7a43e3132fdc", - "https://deno.land/x/fresh@1.4.2/src/runtime/utils.ts": "9f6ef9125891490b34ba3567c8ab43deaf378855b1ccc857c4626d1f6797a868", - "https://deno.land/x/fresh@1.4.2/src/server/build_id.ts": "e7448a3e4c040d906aeaa5dedf6657d67742199bbf4741c55d11410c100cbcef", - "https://deno.land/x/fresh@1.4.2/src/server/constants.ts": "498b1a0f001b6b56bb67524b764605d742a7450fd53edce0a6e04a0463b383b3", - "https://deno.land/x/fresh@1.4.2/src/server/context.ts": "da02f0bd6ec6a5d6319355faf2db3329747885549b1ec73803e9641377aac77c", - "https://deno.land/x/fresh@1.4.2/src/server/default_error_page.ts": "c512f91c9b93540923f0ce0ee4a4af748066d3317e9d8077e5203727c4cb015f", - "https://deno.land/x/fresh@1.4.2/src/server/defines.ts": "8d0f223de01f49b87cf83c7a163a88f786584c0c851783c1ef1bb498bc09d661", - "https://deno.land/x/fresh@1.4.2/src/server/deps.ts": "9523494e164a9c71320550d90a6dbfa814e3562eb5034345b5ccdf4ab9e502ff", - "https://deno.land/x/fresh@1.4.2/src/server/htmlescape.ts": "834ac7d0caa9fc38dffd9b8613fb47aeecd4f22d5d70c51d4b20a310c085835c", - "https://deno.land/x/fresh@1.4.2/src/server/mod.ts": "44ea8aa8028375735e53a5707c3568241164678abcce82839c923ca9741d38c7", - "https://deno.land/x/fresh@1.4.2/src/server/render.ts": "c67fbde8e17a57081114e5cd27e11f9034eacedda5ae1b8c59afe818a99aca80", - "https://deno.land/x/fresh@1.4.2/src/server/rendering/fresh_tags.tsx": "7f3952700acbf2cf24a632a104aa93825d24ba10b122e4cfa98971c9caec16c9", - "https://deno.land/x/fresh@1.4.2/src/server/rendering/preact_hooks.ts": "594d13a96f3b80e3f83d40279c7527f80052dad5e4ec3a2693364fc56c7f2ee6", - "https://deno.land/x/fresh@1.4.2/src/server/rendering/state.ts": "1f8dc2abae8cd56be1cf8b8280f274fe9fcd72cb9ac465cc30187d1822daf5f7", - "https://deno.land/x/fresh@1.4.2/src/server/rendering/template.tsx": "26658d196d0a4226d2d449a0af71f0d1b16276818488f71a0b90407e0f4e6ac0", - "https://deno.land/x/fresh@1.4.2/src/server/router.ts": "7726ed6ebe602396a630bd5a3f0cd564c37a86d601ea86c34d6087bc0a047c2c", - "https://deno.land/x/fresh@1.4.2/src/server/serializer.ts": "f0cffb863bbdbac6ed53fefe181e415d6aefc2101f2dc92a562b364088809e44", - "https://deno.land/x/fresh@1.4.2/src/server/types.ts": "2a5575c6450df7a0f5026a2b22e8f07aa739e29eb42b4332e478e49b1505da5a", - "https://deno.land/x/fresh@1.4.2/versions.json": "ce4e2fef0af8d2d08c3c31180b508d8e7a5f60bdc1243c937e2dd03dd9b35891", + "https://deno.land/x/fresh@1.4.3/dev.ts": "720dd3a64b62b852db7b6ae471c246c5c605cf4a3091c4cbc802790f36d43e4c", + "https://deno.land/x/fresh@1.4.3/plugins/twind.ts": "b20ab6004318eb56538976c49b23c125560845650cf2b2d69b463c31b16da06f", + "https://deno.land/x/fresh@1.4.3/plugins/twind/shared.ts": "ad8ccde3874b305be13a996e6f1c774bb9f611505f98a0995f5f7be368c5949c", + "https://deno.land/x/fresh@1.4.3/runtime.ts": "b02ec1e2e32cf73a33d262b7c9dcab9468ce16cd89fd424196c71003698a4ab0", + "https://deno.land/x/fresh@1.4.3/server.ts": "f379c9aad24471a71e58fb887fa57e5cc27ad9df035987eb260541c78df38e84", + "https://deno.land/x/fresh@1.4.3/src/build/aot_snapshot.ts": "ab1215fe2cd0b2c3d38fdf353fb587808aa2265c1d95798f203888e6aa44b0c7", + "https://deno.land/x/fresh@1.4.3/src/build/deps.ts": "e6f52b4d8814cd40db62f98f78ad050b232d7fac79b4df586429408d14456f23", + "https://deno.land/x/fresh@1.4.3/src/build/esbuild.ts": "10518c16f639b44c61698aca97d95adbd19eb0e91eb1167d7c3022e18b032471", + "https://deno.land/x/fresh@1.4.3/src/build/mod.ts": "e442a1e0b4c96ea3445fe681c1b8c93e06d59298ef1e0a63aa7707c7792bc786", + "https://deno.land/x/fresh@1.4.3/src/dev/build.ts": "1b11b41ce0152e5652d28ba556459cc532ef41094613cddf0746c79ac54d9064", + "https://deno.land/x/fresh@1.4.3/src/dev/deps.ts": "204401f2657137ee3fa077de4ed1d6b9ab69c19602ad53a393d147be899e29ad", + "https://deno.land/x/fresh@1.4.3/src/dev/dev_command.ts": "b305b6044ca1f419b6d622c4af85a3479b0775e553bf28c2d3078f7600034606", + "https://deno.land/x/fresh@1.4.3/src/dev/error.ts": "21a38d240c00279662e6adde41367f1da0ae7e2836d993f818ea94aabab53e7b", + "https://deno.land/x/fresh@1.4.3/src/dev/mod.ts": "cf14e8ff8b2f70e88a592539ae4ab1fa875b5eba367b1b34a8058e6c6da282f2", + "https://deno.land/x/fresh@1.4.3/src/dev/update_check.ts": "d7c2c582ea101e880b947662199eef66ec8c3d8adbdfb7875bbbb7da2f8c338c", + "https://deno.land/x/fresh@1.4.3/src/runtime/build_id.ts": "8376e70e42ce456dfa6932c638409d2ef1bca4833b4ceba0bf74510080a7f976", + "https://deno.land/x/fresh@1.4.3/src/runtime/csp.ts": "9ee900e9b0b786057b1009da5976298c202d1b86d1f1e4d2510bde5f06530ac9", + "https://deno.land/x/fresh@1.4.3/src/runtime/deserializer.ts": "8f11e04f9671741442b9512cc0617bef3edf22a60620c78b05097143a83cfe6e", + "https://deno.land/x/fresh@1.4.3/src/runtime/head.ts": "0f9932874497ab6e57ed1ba01d549e843523df4a5d36ef97460e7a43e3132fdc", + "https://deno.land/x/fresh@1.4.3/src/runtime/utils.ts": "9f6ef9125891490b34ba3567c8ab43deaf378855b1ccc857c4626d1f6797a868", + "https://deno.land/x/fresh@1.4.3/src/server/boot.ts": "9fcd2ba069731ef4f084055732ed8f76bae8d5ee108f131fd907e0042d5d6035", + "https://deno.land/x/fresh@1.4.3/src/server/build_id.ts": "510a23598d228aa8cf04aec3a60fc75e6f8da8c45822cdbc11d1fc1b6ff4b757", + "https://deno.land/x/fresh@1.4.3/src/server/constants.ts": "498b1a0f001b6b56bb67524b764605d742a7450fd53edce0a6e04a0463b383b3", + "https://deno.land/x/fresh@1.4.3/src/server/context.ts": "4efb8e7c9473f7f364dd02a9ce6322870a6306239345883135e5b73f36ff8a0a", + "https://deno.land/x/fresh@1.4.3/src/server/default_error_page.ts": "c512f91c9b93540923f0ce0ee4a4af748066d3317e9d8077e5203727c4cb015f", + "https://deno.land/x/fresh@1.4.3/src/server/defines.ts": "8d0f223de01f49b87cf83c7a163a88f786584c0c851783c1ef1bb498bc09d661", + "https://deno.land/x/fresh@1.4.3/src/server/deps.ts": "9523494e164a9c71320550d90a6dbfa814e3562eb5034345b5ccdf4ab9e502ff", + "https://deno.land/x/fresh@1.4.3/src/server/htmlescape.ts": "834ac7d0caa9fc38dffd9b8613fb47aeecd4f22d5d70c51d4b20a310c085835c", + "https://deno.land/x/fresh@1.4.3/src/server/mod.ts": "000b7f8815cb253d734a8460edf194d99fcd062c1efb9e0c0ae640185c1c2f6e", + "https://deno.land/x/fresh@1.4.3/src/server/render.ts": "c67fbde8e17a57081114e5cd27e11f9034eacedda5ae1b8c59afe818a99aca80", + "https://deno.land/x/fresh@1.4.3/src/server/rendering/fresh_tags.tsx": "7f3952700acbf2cf24a632a104aa93825d24ba10b122e4cfa98971c9caec16c9", + "https://deno.land/x/fresh@1.4.3/src/server/rendering/preact_hooks.ts": "8cda91e587efc5831716ba4e50121b3fb4f9d24977298d9e65ab4190a6c97778", + "https://deno.land/x/fresh@1.4.3/src/server/rendering/state.ts": "1f8dc2abae8cd56be1cf8b8280f274fe9fcd72cb9ac465cc30187d1822daf5f7", + "https://deno.land/x/fresh@1.4.3/src/server/rendering/template.tsx": "26658d196d0a4226d2d449a0af71f0d1b16276818488f71a0b90407e0f4e6ac0", + "https://deno.land/x/fresh@1.4.3/src/server/router.ts": "7726ed6ebe602396a630bd5a3f0cd564c37a86d601ea86c34d6087bc0a047c2c", + "https://deno.land/x/fresh@1.4.3/src/server/serializer.ts": "f0cffb863bbdbac6ed53fefe181e415d6aefc2101f2dc92a562b364088809e44", + "https://deno.land/x/fresh@1.4.3/src/server/types.ts": "2a5575c6450df7a0f5026a2b22e8f07aa739e29eb42b4332e478e49b1505da5a", + "https://deno.land/x/fresh@1.4.3/versions.json": "5a7fe5344ef7ce94ae70baaf7cf7e6f00414f936905fa53774733605050c28ff", "https://deno.land/x/gfm@0.2.5/deps.ts": "e6ce060304c2ee2be60d4d89addc94ea7bed50d98e9709155ec7bf3af6d41082", "https://deno.land/x/gfm@0.2.5/mod.ts": "1406486c02bfb707746e449559dc81ed0c4a9eada9a92dbb0d68cffa12069c45", "https://deno.land/x/gfm@0.2.5/style.js": "86de9308f5d108ee0976e296260eb634c7477a11a9bebf44e6f863a5b8fb6d6d", @@ -363,6 +378,8 @@ "https://deno.land/x/kia@0.4.1b/mod.ts": "727b60e707c46429e40a2159ab73381245ef08a8e1e59e1e5a705745b99f4aec", "https://deno.land/x/kia@0.4.1b/spinners.ts": "26b63f964c745d6cc46e547d98352a4f64ae6d28400d35d9b77be7a5141db860", "https://deno.land/x/kia@0.4.1b/util.ts": "b7ac0962b5a39f666bad41c8b93efe1ea599fbac05ea9f65c0409926e8092618", + "https://deno.land/x/kv_toolbox@0.0.4/batchedAtomic.ts": "f0d3e23329a1eb06e331bd063606c7178bb92777bd38e204650ee3c64f0354ab", + "https://deno.land/x/kv_toolbox@0.0.4/keys.ts": "161bb4cfe9b7625a7b55d5f7e545ace34add39e58d2a0e5e67750f185789f3ac", "https://deno.land/x/og_edge@0.0.6/emoji.ts": "8571b6fcd5e425f58040e667f935c2fc7b8cf86f3570c81653be2c2ab8f6d046", "https://deno.land/x/og_edge@0.0.6/mod.ts": "a738261717d5d35e4270a9b22d9a4bb82cfb719a6d2325c75b2945d3d08f73d5", "https://deno.land/x/ts_morph@17.0.1/common/DenoRuntime.ts": "537800e840d0994f9055164e11bf33eadf96419246af0d3c453793c3ae67bdb3", @@ -631,5 +648,16 @@ "https://raw.githubusercontent.com/kitsonk/deno_std/fix_front_matter_extract/encoding/front_matter/yaml.ts": "c0293a9599dd5a8af53a1567c829eb23c35f364744ae7b19a3cd28c6e6b3c68d", "https://raw.githubusercontent.com/kitsonk/deno_std/fix_front_matter_extract/encoding/yaml.ts": "02571d1bbbcfd7c5647789cee872ecf9c1c470e1b1a40948ed219fb661e19d87", "https://raw.githubusercontent.com/kitsonk/deno_std/fix_front_matter_extract/io/buffer.ts": "e2b7564f684dad625cab08f5106f33572d325705d19a36822b3272fbdfb8f726" + }, + "npm": { + "specifiers": { + "@types/node": "@types/node@18.16.19" + }, + "packages": { + "@types/node@18.16.19": { + "integrity": "sha512-IXl7o+R9iti9eBW4Wg2hx1xQDig183jj7YLn8F7udNceyfkbn1ZxmzZXuak20gR40D7pIkIY1kYGx5VIGbaHKA==", + "dependencies": {} + } + } } } diff --git a/routes/api/v1/codes.tsx b/routes/api/v1/codes.tsx index c832024..d050983 100644 --- a/routes/api/v1/codes.tsx +++ b/routes/api/v1/codes.tsx @@ -1,14 +1,18 @@ import { type Handlers } from "$fresh/server.ts"; import type { DiagnosticData } from "$types"; +import { DIAGNOSTICS_KEY } from "$util/kv.ts"; export const handler: Handlers = { async GET(_req) { try { - const res = await fetch( - new URL("../../../db/_all.json", import.meta.url), - ); - if (res.status === 200) { - const data: DiagnosticData = await res.json(); + const kv = await Deno.openKv(); + const list = kv.list({ prefix: [DIAGNOSTICS_KEY] }); + const data: DiagnosticData[] = []; + for await (const { value } of list) { + data.push(value); + } + kv.close(); + if (data.length) { return Response.json(data); } } catch { diff --git a/routes/api/v1/codes/ts.tsx b/routes/api/v1/codes/ts.tsx index 463ffe3..29b5a70 100644 --- a/routes/api/v1/codes/ts.tsx +++ b/routes/api/v1/codes/ts.tsx @@ -1,14 +1,13 @@ import { type Handlers, type RouteConfig } from "$fresh/server.ts"; -import type { DiagnosticData } from "$types"; +import { getDiagnostic } from "$util/kv.ts"; export const handler: Handlers = { async GET(_req, { params: { code } }) { try { - const res = await fetch( - new URL(`../../../../db/${code}.json`, import.meta.url), - ); - if (res.status === 200) { - const data: DiagnosticData = await res.json(); + const kv = await Deno.openKv(); + const data = await getDiagnostic(kv, parseInt(code, 10)); + kv.close(); + if (data) { return Response.json(data); } } catch { diff --git a/routes/code.tsx b/routes/code.tsx index 02d4256..1b84389 100644 --- a/routes/code.tsx +++ b/routes/code.tsx @@ -4,6 +4,7 @@ import { type RouteConfig, } from "$fresh/server.ts"; import type { DiagnosticData } from "$types"; +import { getDiagnostic } from "$util/kv.ts"; import { interpolate } from "$util/strings.ts"; import { Diagnostic } from "../components/Diagnostic.tsx"; @@ -54,9 +55,10 @@ export const handler: Handlers = { async GET(req, { params: { code }, render, renderNotFound }) { try { const params = new Map(new URL(req.url).searchParams); - const res = await fetch(new URL(`../db/${code}.json`, import.meta.url)); - if (res.status === 200) { - const diagnosticData: DiagnosticData = await res.json(); + const kv = await Deno.openKv(); + const diagnosticData = await getDiagnostic(kv, parseInt(code, 10)); + kv.close(); + if (diagnosticData) { return render({ diagnosticData, params }); } } catch { @@ -70,9 +72,10 @@ export const handler: Handlers = { for (const [key, value] of await req.formData()) { params.set(key, String(value)); } - const res = await fetch(new URL(`../db/${code}.json`, import.meta.url)); - if (res.status === 200) { - const diagnosticData: DiagnosticData = await res.json(); + const kv = await Deno.openKv(); + const diagnosticData = await getDiagnostic(kv, parseInt(code, 10)); + kv.close(); + if (diagnosticData) { return render({ diagnosticData, params }); } } catch { diff --git a/routes/edit.tsx b/routes/edit.tsx index 3dc0486..cd6d539 100644 --- a/routes/edit.tsx +++ b/routes/edit.tsx @@ -1,4 +1,4 @@ -import type { DiagnosticData } from "$types"; +import { getDiagnostic } from "$util/kv.ts"; import { Footer } from "../components/Footer.tsx"; import { Header } from "../components/Header.tsx"; @@ -8,9 +8,10 @@ export default async function EditPage(req: Request) { const codeStr = new URL(req.url).searchParams.get("code"); if (codeStr) { const code = parseInt(codeStr, 10); - const res = await fetch(new URL(`../db/${code}.json`, import.meta.url)); - if (res.status === 200) { - const data: DiagnosticData = await res.json(); + const kv = await Deno.openKv(); + const data = await getDiagnostic(kv, code); + kv.close(); + if (data) { return ( <>
diff --git a/routes/og.tsx b/routes/og.tsx index 45cc677..b3d65ee 100644 --- a/routes/og.tsx +++ b/routes/og.tsx @@ -1,6 +1,7 @@ import { type Handlers, type RouteConfig } from "$fresh/server.ts"; import { ImageResponse } from "og-edge"; import type { DiagnosticData } from "$types"; +import { getDiagnostic } from "$util/kv.ts"; import { interpolate } from "$util/strings.ts"; const openSans = fetch( @@ -148,9 +149,10 @@ export const handler: Handlers = { } as const; try { - const res = await fetch(new URL(`../db/${code}.json`, import.meta.url)); - if (res.status === 200) { - const diagnosticData: DiagnosticData = await res.json(); + const kv = await Deno.openKv(); + const diagnosticData = await getDiagnostic(kv, parseInt(code, 10)); + kv.close(); + if (diagnosticData) { const params = new Map(new URL(req.url).searchParams); return new ImageResponse( diff --git a/routes/propose.tsx b/routes/propose.tsx index 9a43b95..015f511 100644 --- a/routes/propose.tsx +++ b/routes/propose.tsx @@ -6,7 +6,8 @@ import { diagnosticDataFixToMarkdown, diagnosticDataToMarkdown, } from "$util/diagnostics.ts"; -import { createPR, getUser, type GitPerson } from "$util/github.ts"; +import { createPR, getUser } from "$util/github.ts"; +import { getDiagnostic } from "$util/kv.ts"; import { log } from "$util/log.ts"; import { Diagnostic } from "../components/Diagnostic.tsx"; @@ -64,10 +65,11 @@ export const handler: Handlers = { try { const formData = await req.formData(); const code = parseInt(formData.get("code")?.toString() ?? "0", 10); - const res = await fetch(new URL(`../db/${code}.json`, import.meta.url)); - if (res.status === 200) { + const kv = await Deno.openKv(); + const data = await getDiagnostic(kv, code); + kv.close(); + if (data) { const changes: ComponentChildren[] = []; - const data: DiagnosticData = await res.json(); const docs: ProposedDocs = JSON.parse( formData.get("docs")?.toString() ?? "", ); diff --git a/routes/tag/[tag].tsx b/routes/tag/[tag].tsx index 61c6e8a..5bd4877 100644 --- a/routes/tag/[tag].tsx +++ b/routes/tag/[tag].tsx @@ -3,17 +3,11 @@ import { type Handlers, type PageProps } from "$fresh/server.ts"; import { DiagnosticResult } from "../../components/DiagnosticResult.tsx"; import { Footer } from "../../components/Footer.tsx"; import { Header } from "../../components/Header.tsx"; -import tagIndex from "../../db/_tags.json" assert { type: "json" }; import { DiagnosticData } from "$types"; - -type Tags = keyof typeof tagIndex; +import { getDiagnosticsByTag } from "$util/kv.ts"; type Data = { diagnostics: DiagnosticData[]; tag: string }; -function isTag(tag: string): tag is Tags { - return tag in tagIndex; -} - export default function TagList( { data: { diagnostics, tag } }: PageProps, ) { @@ -36,22 +30,12 @@ export default function TagList( } export const handler: Handlers = { - async GET(_req, { params, render, renderNotFound }) { + async GET(_req, { params: { tag }, render, renderNotFound }) { try { - const tag = params.tag; - if (isTag(tag)) { - const diagnostics: DiagnosticData[] = await Promise.all( - tagIndex[tag].sort().map((code) => - fetch(new URL(`../../db/${code}.json`, import.meta.url)).then( - (res) => { - if (res.status === 200) { - return res.json(); - } - throw new Error("Bad response."); - }, - ) - ), - ); + const kv = await Deno.openKv(); + const diagnostics = await getDiagnosticsByTag(kv, tag); + kv.close(); + if (diagnostics.length) { return render({ diagnostics, tag }); } } catch { diff --git a/util/kv.ts b/util/kv.ts new file mode 100644 index 0000000..a848c92 --- /dev/null +++ b/util/kv.ts @@ -0,0 +1,72 @@ +/** + * @module + */ + +import { batchedAtomic } from "kv_toolbox/batchedAtomic.ts"; +import { unique } from "kv_toolbox/keys.ts"; +import type { DiagnosticData } from "$types"; + +export const TSWHY_PROD_KV = + "https://api.deno.com/databases/af5a2f14-8248-400b-9c27-46ba22a2a66e/connect"; +export const DIAGNOSTICS_KEY = "diagnostics"; +const TAGS_KEY = "tags"; + +export async function clear(kv: Deno.Kv) { + let keys = await unique(kv, [DIAGNOSTICS_KEY]); + for (const key of keys) { + const subKeys = await unique(kv, key); + for (const subKey of subKeys) { + await kv.delete(subKey); + } + await kv.delete(key); + } + + keys = await unique(kv, [TAGS_KEY]); + for (const key of keys) { + const subKeys = await unique(kv, key); + for (const subKey of subKeys) { + await kv.delete(subKey); + } + await kv.delete(key); + } +} + +export async function getTags(kv: Deno.Kv): Promise { + return (await unique(kv, [TAGS_KEY])).map(([, k]) => k as string); +} + +export async function getDiagnostic( + kv: Deno.Kv, + code: number, +): Promise { + const res = await kv.get([DIAGNOSTICS_KEY, code]); + return res.value ?? undefined; +} + +export async function getDiagnosticsByTag( + kv: Deno.Kv, + tag: string, +): Promise { + const diagnostics: DiagnosticData[] = []; + const list = kv.list({ prefix: [TAGS_KEY, tag] }); + for await (const item of list) { + diagnostics.push(item.value); + } + return diagnostics; +} + +export function setDiagnostic( + kv: Deno.Kv, + diagnostic: DiagnosticData, +): Promise<(Deno.KvCommitResult | Deno.KvCommitError)[]> { + let operation = batchedAtomic(kv).set( + [DIAGNOSTICS_KEY, diagnostic.code], + diagnostic, + ); + if (diagnostic.tags) { + for (const tag of diagnostic.tags) { + operation = operation.set([TAGS_KEY, tag, diagnostic.code], diagnostic); + } + } + return operation.commit(); +}