mirror of
https://github.com/denoland/deno.git
synced 2025-10-02 15:14:33 +00:00
refactor: improve tsc diagnostics (#7420)
This commit is contained in:
parent
5276cc8592
commit
10fbfcbc79
8 changed files with 684 additions and 715 deletions
|
@ -6,19 +6,15 @@
|
|||
|
||||
((window) => {
|
||||
const DiagnosticCategory = {
|
||||
0: "Log",
|
||||
1: "Debug",
|
||||
2: "Info",
|
||||
3: "Error",
|
||||
4: "Warning",
|
||||
5: "Suggestion",
|
||||
0: "Warning",
|
||||
1: "Error",
|
||||
2: "Suggestion",
|
||||
3: "Message",
|
||||
|
||||
Log: 0,
|
||||
Debug: 1,
|
||||
Info: 2,
|
||||
Error: 3,
|
||||
Warning: 4,
|
||||
Suggestion: 5,
|
||||
Warning: 0,
|
||||
Error: 1,
|
||||
Suggestion: 2,
|
||||
Message: 3,
|
||||
};
|
||||
|
||||
window.__bootstrap.diagnostics = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue