Skip to content

Commit 696b917

Browse files
committed
Bump version v0.5.3
1 parent addbb3a commit 696b917

File tree

2 files changed

+26
-22
lines changed

2 files changed

+26
-22
lines changed

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
{
22
"name": "pretty-ts-errors",
33
"displayName": "Pretty TypeScript Errors",
4-
"publisher": "yoavbls",
4+
"publisher": "YoavBls",
55
"description": "Make TypeScript errors prettier and more human-readable in VSCode",
6-
"version": "0.5.2",
6+
"version": "0.5.3",
77
"icon": "assets/icon.png",
88
"repository": {
99
"type": "git",
1010
"url": "https://github.com/yoavbls/pretty-ts-errors"
1111
},
1212
"homepage": "https://github.com/yoavbls/pretty-ts-errors",
13+
"sponsor": {
14+
"url": "https://github.com/sponsors/yoavbls"
15+
},
1316
"engines": {
1417
"vscode": "^1.77.0"
1518
},

src/components/consts/knownErrorNumbers.ts

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,25 @@ import { Diagnostic } from "vscode-languageserver-types";
1010
* ```
1111
*/
1212
export const KNOWN_ERROR_NUMBERS: Set<Diagnostic["code"]> = new Set([
13-
1002, 1005, 1006, 1015, 1016, 1029, 1036, 1038, 1039, 1046, 1055, 1056, 1064,
14-
1066, 1068, 1070, 1095, 1103, 1109, 1117, 1127, 1128, 1149, 1155, 1160, 1183,
15-
1192, 1196, 1202, 1208, 1218, 1219, 1225, 1228, 1232, 1243, 1244, 1254, 1259,
16-
1308, 1337, 1341, 1355, 1357, 1361, 1363, 1368, 1371, 1375, 1378, 1385, 1389,
17-
1431, 1432, 1434, 1471, 2300, 2304, 2305, 2306, 2307, 2314, 2315, 2322, 2335,
18-
2339, 2344, 2345, 2348, 2349, 2351, 2352, 2355, 2361, 2362, 2364, 2365, 2366,
19-
2367, 2368, 2369, 2370, 2371, 2372, 2377, 2378, 2390, 2391, 2393, 2394, 2395,
20-
2403, 2411, 2420, 2428, 2430, 2440, 2445, 2448, 2451, 2454, 2456, 2459, 2475,
21-
2476, 2488, 2497, 2498, 2503, 2507, 2511, 2512, 2515, 2528, 2531, 2532, 2533,
22-
2536, 2538, 2539, 2540, 2550, 2551, 2552, 2554, 2556, 2558, 2559, 2564, 2567,
23-
2571, 2574, 2577, 2580, 2582, 2583, 2584, 2588, 2595, 2611, 2613, 2614, 2616,
24-
2617, 2632, 2636, 2637, 2652, 2654, 2656, 2661, 2663, 2664, 2665, 2668, 2669,
25-
2677, 2678, 2680, 2683, 2684, 2686, 2687, 2689, 2691, 2693, 2694, 2695, 2706,
26-
2709, 2713, 2715, 2717, 2720, 2722, 2724, 2730, 2732, 2739, 2740, 2741, 2742,
27-
2749, 2769, 2774, 2779, 2786, 2790, 2792, 2794, 2802, 2813, 2814, 4020, 4025,
28-
4060, 4063, 4075, 4081, 4104, 4112, 4113, 4114, 5023, 5024, 5025, 5042, 5054,
29-
5055, 5058, 5069, 5070, 5083, 5087, 5101, 6053, 6059, 6133, 6138, 6192, 6196,
30-
6198, 6504, 7006, 7008, 7009, 7010, 7016, 7017, 7022, 7023, 7026, 7027, 7030,
31-
7031, 7034, 7041, 7044, 7053, 8020, 17000, 17004, 17009, 18004, 18016, 18046,
32-
18048, 80005,
13+
1002, 1005, 1006, 1015, 1016, 1029, 1035, 1036, 1038, 1039, 1046, 1055, 1056,
14+
1064, 1066, 1068, 1070, 1095, 1103, 1109, 1117, 1127, 1128, 1149, 1155, 1160,
15+
1183, 1192, 1196, 1202, 1208, 1218, 1219, 1225, 1228, 1232, 1243, 1244, 1247,
16+
1248, 1254, 1259, 1280, 1308, 1337, 1341, 1355, 1357, 1361, 1363, 1368, 1371,
17+
1375, 1378, 1385, 1389, 1431, 1432, 1434, 1471, 1484, 2300, 2304, 2305, 2306,
18+
2307, 2314, 2315, 2322, 2335, 2339, 2344, 2345, 2348, 2349, 2351, 2352, 2355,
19+
2361, 2362, 2364, 2365, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2377, 2378,
20+
2390, 2391, 2393, 2394, 2395, 2397, 2403, 2411, 2416, 2420, 2425, 2428, 2430,
21+
2440, 2445, 2448, 2451, 2454, 2456, 2459, 2475, 2476, 2488, 2497, 2498, 2503,
22+
2507, 2511, 2512, 2515, 2528, 2531, 2532, 2533, 2536, 2538, 2539, 2540, 2550,
23+
2551, 2552, 2554, 2556, 2558, 2559, 2564, 2567, 2571, 2574, 2577, 2580, 2582,
24+
2583, 2584, 2588, 2595, 2604, 2611, 2612, 2613, 2614, 2616, 2617, 2632, 2636,
25+
2637, 2638, 2652, 2654, 2656, 2661, 2663, 2664, 2665, 2668, 2669, 2677, 2678,
26+
2680, 2683, 2684, 2686, 2687, 2689, 2691, 2693, 2694, 2695, 2706, 2709, 2713,
27+
2715, 2717, 2720, 2722, 2724, 2730, 2732, 2739, 2740, 2741, 2742, 2749, 2769,
28+
2774, 2779, 2786, 2790, 2792, 2794, 2802, 2813, 2814, 2821, 2835, 4010, 4020,
29+
4025, 4031, 4060, 4063, 4075, 4081, 4104, 4112, 4113, 4114, 5023, 5024, 5025,
30+
5042, 5054, 5055, 5058, 5069, 5070, 5083, 5087, 5101, 6053, 6059, 6133, 6138,
31+
6192, 6196, 6198, 6387, 6504, 7006, 7008, 7009, 7010, 7016, 7017, 7022, 7023,
32+
7026, 7027, 7030, 7031, 7034, 7041, 7044, 7053, 8020, 17000, 17004, 17009,
33+
18004, 18016, 18046, 18048, 18052, 71002, 80005,
3334
]);

0 commit comments

Comments
 (0)