-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Warnings, Underlines, & Hover Information for Issues (#222)
* add warnings * missed fix for warnings with no errors display * polish up the UI for warnings/suggestions * hover info for warnings, errors, suggestions * remove prod compiler issue * change infer target on TsServerSuggestionType
- Loading branch information
Showing
13 changed files
with
261 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
import z from 'zod'; | ||
|
||
import { TsServerLocationSchema, TsServerDiagnosticSchema } from '../schemas/tsserver.js'; | ||
import { | ||
TsServerLocationSchema, | ||
TsServerDiagnosticSchema, | ||
TsServerSuggestionSchema, | ||
} from '../schemas/tsserver.js'; | ||
|
||
export type TsServerLocationType = z.infer<typeof TsServerLocationSchema>; | ||
export type TsServerDiagnosticType = z.infer<typeof TsServerDiagnosticSchema>; | ||
export type TsServerSuggestionType = z.infer<typeof TsServerSuggestionSchema>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.