@@ -33,11 +33,11 @@ Errors that occur during type checking and type inference.
3333
3434#### Issues
3535
36- | Severity | Message | Source file | Line(s) |
37- | :--------: | :----------------------------------------------------------------------------------- | :------------------------------------------------------------------------ | :-----: |
38- | 🚨 _ error_ | TS2307: Cannot find module './non-existent' or its corresponding type declarations. | [ ` path/to/module-resolution.ts ` ] ( ../path/to/module-resolution.ts ) | 2 |
39- | 🚨 _ error_ | TS2349: This expression is not callable.<br /> Type 'Number' has no call signatures. | [ ` path/to/strict-function-types.ts ` ] ( ../path/to/strict-function-types.ts ) | 3 |
40- | 🚨 _ error_ | TS2304: Cannot find name 'NonExistentType'. | [ ` path/to/cannot-find-module.ts ` ] ( ../path/to/cannot-find-module.ts ) | 1 |
36+ | Severity | Message | Source | Location |
37+ | :--------: | :----------------------------------------------------------------------------------- | :------------------------------------------------------------------------ | :------ : |
38+ | 🚨 _ error_ | TS2307: Cannot find module './non-existent' or its corresponding type declarations. | [ ` path/to/module-resolution.ts ` ] ( ../path/to/module-resolution.ts ) | 2 |
39+ | 🚨 _ error_ | TS2349: This expression is not callable.<br /> Type 'Number' has no call signatures. | [ ` path/to/strict-function-types.ts ` ] ( ../path/to/strict-function-types.ts ) | 3 |
40+ | 🚨 _ error_ | TS2304: Cannot find name 'NonExistentType'. | [ ` path/to/cannot-find-module.ts ` ] ( ../path/to/cannot-find-module.ts ) | 1 |
4141
4242---
4343
@@ -54,9 +54,9 @@ Errors that occur during parsing and lexing of TypeScript source code.
5454
5555#### Issues
5656
57- | Severity | Message | Source file | Line(s) |
58- | :--------: | :------------------------------------ | :------------------------------------------------------ | :-----: |
59- | 🚨 _ error_ | TS1136: Property assignment expected. | [ ` path/to/syntax-error.ts ` ] ( ../path/to/syntax-error.ts ) | 1 |
57+ | Severity | Message | Source | Location |
58+ | :--------: | :------------------------------------ | :------------------------------------------------------ | :------ : |
59+ | 🚨 _ error_ | TS1136: Property assignment expected. | [ ` path/to/syntax-error.ts ` ] ( ../path/to/syntax-error.ts ) | 1 |
6060
6161---
6262
@@ -73,9 +73,9 @@ Errors that occur when parsing TypeScript configuration files.
7373
7474#### Issues
7575
76- | Severity | Message | Source file | Line(s) |
77- | :--------: | :----------------------------------------- | :-------------------------------------------------- | :-----: |
78- | 🚨 _ error_ | TS5023: Unknown compiler option 'invalid'. | [ ` path/to/tsconfig.json ` ] ( ../path/to/tsconfig.json ) | 1 |
76+ | Severity | Message | Source | Location |
77+ | :--------: | :----------------------------------------- | :-------------------------------------------------- | :------ : |
78+ | 🚨 _ error_ | TS5023: Unknown compiler option 'invalid'. | [ ` path/to/tsconfig.json ` ] ( ../path/to/tsconfig.json ) | 1 |
7979
8080---
8181
@@ -92,9 +92,9 @@ Errors that occur during TypeScript language service operations.
9292
9393#### Issues
9494
95- | Severity | Message | Source file | Line(s) |
96- | :--------: | :------------------------------------------------------------------------------------------------------------------------------ | :------------------------------------------------------------------ | :-----: |
97- | 🚨 _ error_ | TS4112: This member cannot have an 'override' modifier because its containing class 'Standalone' does not extend another class. | [ ` path/to/incorrect-modifier.ts ` ] ( ../path/to/incorrect-modifier.ts ) | 2 |
95+ | Severity | Message | Source | Location |
96+ | :--------: | :------------------------------------------------------------------------------------------------------------------------------ | :------------------------------------------------------------------ | :------ : |
97+ | 🚨 _ error_ | TS4112: This member cannot have an 'override' modifier because its containing class 'Standalone' does not extend another class. | [ ` path/to/incorrect-modifier.ts ` ] ( ../path/to/incorrect-modifier.ts ) | 2 |
9898
9999---
100100
@@ -111,9 +111,9 @@ Errors that occur during TypeScript internal operations.
111111
112112#### Issues
113113
114- | Severity | Message | Source file | Line(s) |
115- | :--------: | :------------------------------- | :---------------------------------------------------------- | :-----: |
116- | 🚨 _ error_ | TS9001: Internal compiler error. | [ ` path/to/internal-error.ts ` ] ( ../path/to/internal-error.ts ) | 4 |
114+ | Severity | Message | Source | Location |
115+ | :--------: | :------------------------------- | :---------------------------------------------------------- | :------ : |
116+ | 🚨 _ error_ | TS9001: Internal compiler error. | [ ` path/to/internal-error.ts ` ] ( ../path/to/internal-error.ts ) | 4 |
117117
118118---
119119
@@ -130,9 +130,9 @@ Errors related to no implicit any compiler option.
130130
131131#### Issues
132132
133- | Severity | Message | Source file | Line(s) |
134- | :--------: | :-------------------------------------------------- | :------------------------------------------------------ | :-----: |
135- | 🚨 _ error_ | TS7006: Parameter 'x' implicitly has an 'any' type. | [ ` path/to/implicit-any.ts ` ] ( ../path/to/implicit-any.ts ) | 5 |
133+ | Severity | Message | Source | Location |
134+ | :--------: | :-------------------------------------------------- | :------------------------------------------------------ | :------ : |
135+ | 🚨 _ error_ | TS7006: Parameter 'x' implicitly has an 'any' type. | [ ` path/to/implicit-any.ts ` ] ( ../path/to/implicit-any.ts ) | 5 |
136136
137137---
138138
@@ -149,9 +149,9 @@ Errors that do not match any known TypeScript error code.
149149
150150#### Issues
151151
152- | Severity | Message | Source file | Line(s) |
153- | :--------: | :-------------------------------------- | :-------------------------------------------------------- | :-----: |
154- | 🚨 _ error_ | TS9999: Unknown error code encountered. | [ ` path/to/unknown-error.ts ` ] ( ../path/to/unknown-error.ts ) | 6 |
152+ | Severity | Message | Source | Location |
153+ | :--------: | :-------------------------------------- | :-------------------------------------------------------- | :------ : |
154+ | 🚨 _ error_ | TS9999: Unknown error code encountered. | [ ` path/to/unknown-error.ts ` ] ( ../path/to/unknown-error.ts ) | 6 |
155155
156156---
157157
0 commit comments