Skip to content

Commit cdbd395

Browse files
committed
Turned on noImplicitAny noImplicitThis noImplicitReturns noUnusedLocals noUnusedParameters & some linting fixes
1 parent 605b9c4 commit cdbd395

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1458
-1157
lines changed

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"ratelimit",
3232
"sourceloc",
3333
"tsproject",
34+
"unfound",
3435
"vite",
3536
"vitejs",
3637
"webcompat"

example/express/app.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ const server = app.listen(3000, async () => {
7575
var port = server.address().port;
7676

7777
var message = "Example app listening at http://" + host + port;
78-
console.log(message);
7978
await Exceptionless.submitLog("app", message, "Info");
8079
});
8180

example/react/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22
"name": "react-example",
33
"private": true,
44
"version": "2.0.0-dev",
5-
"devDependencies": {
6-
"@testing-library/jest-dom": "^5.11.4",
7-
"@testing-library/react": "^11.1.0",
8-
"@testing-library/user-event": "^13.1.3",
9-
"react-scripts": "4.0.3"
10-
},
115
"scripts": {
126
"start": "react-scripts start",
137
"build": "react-scripts build",
@@ -33,11 +27,17 @@
3327
"last 1 safari version"
3428
]
3529
},
30+
"devDependencies": {
31+
"@testing-library/jest-dom": "^5.13.0",
32+
"@testing-library/react": "^11.1.0",
33+
"@testing-library/user-event": "^13.1.3",
34+
"react-scripts": "4.0.3"
35+
},
3636
"dependencies": {
3737
"@exceptionless/react": "2.0.0-dev",
3838
"react": "^17.0.2",
3939
"react-dom": "^17.0.2",
40-
"web-vitals": "^1.0.1"
40+
"web-vitals": "^2.0.1"
4141
},
4242
"publishConfig": {
4343
"access": "restricted"

example/vue/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"@exceptionless/vue": "2.0.0-dev"
1515
},
1616
"devDependencies": {
17-
"@vitejs/plugin-vue": "^1.2.2",
17+
"@vitejs/plugin-vue": "^1.2.3",
1818
"@vue/compiler-sfc": "^3.0.5",
19-
"vite": "^2.2.4"
19+
"vite": "^2.3.6"
2020
},
2121
"publishConfig": {
2222
"access": "restricted"

0 commit comments

Comments
 (0)