chore: upgrade typescript

This commit is contained in:
Kamil Myśliwiec
2023-04-05 11:09:22 +02:00
parent aa2717be24
commit 718e70476b
4 changed files with 7 additions and 8 deletions

8
package-lock.json generated
View File

@@ -16419,7 +16419,7 @@
"lodash.get": {
"version": "4.4.2",
"resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz",
"integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==",
"integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=",
"dev": true
},
"lodash.isarguments": {
@@ -23226,9 +23226,9 @@
}
},
"typescript": {
"version": "4.9.5",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz",
"integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==",
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.3.tgz",
"integrity": "sha512-xv8mOEDnigb/tN9PSMTwSEqAnUvkoXMQlicOb0IUVDBSQCgBSaAAROUZYy2IcUy5qU6XajK5jjjO7TMWqBTKZA==",
"dev": true
},
"uglify-js": {

View File

@@ -171,7 +171,7 @@
"ts-morph": "18.0.0",
"ts-node": "10.9.1",
"typeorm": "0.3.12",
"typescript": "4.9.5",
"typescript": "5.0.3",
"wrk": "1.2.1",
"ws": "8.13.0"
},
@@ -243,4 +243,4 @@
],
"exit": true
}
}
}

View File

@@ -37,7 +37,7 @@ export class RoutesMapper {
return [
{
path: addLeadingSlash(routePath),
method: defaultRequestMethod,
method: defaultRequestMethod as any,
},
];
}

View File

@@ -5,7 +5,6 @@
"declaration": true,
"noImplicitAny": false,
"skipLibCheck": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"importHelpers": true,
"removeComments": false,