fix(core): update

This commit is contained in:
Philipp Kunz 2022-08-02 10:21:15 +02:00
parent 51e6c5cf0e
commit 1412a06f4c
5 changed files with 5325 additions and 8873 deletions

14151
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -13,20 +13,18 @@
"build": "(tsbuild --web --allowimplicitany)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.61",
"@gitzone/tsbundle": "^1.0.102",
"@gitzone/tstest": "^1.0.70",
"@pushrocks/smartenv": "^5.0.1",
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^17.0.23",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0"
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsbundle": "^2.0.6",
"@gitzone/tstest": "^1.0.72",
"@pushrocks/smartenv": "^5.0.2",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.3"
},
"dependencies": {
"@apiglobal/typedrequest": "^2.0.3",
"@apiglobal/typedrequest": "^2.0.8",
"@apiglobal/typedrequest-interfaces": "^1.0.15",
"@pushrocks/isohash": "^2.0.0",
"@pushrocks/smartsocket": "^2.0.6",
"@pushrocks/smartsocket": "^2.0.7",
"@pushrocks/smartstring": "^4.0.2"
},
"browserslist": [

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@apiglobal/typedsocket',
version: '2.0.4',
version: '2.0.5',
description: 'a typedrequest extension supporting websockets'
}

10
tsconfig.json Normal file
View File

@ -0,0 +1,10 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "nodenext",
"esModuleInterop": true
}
}

View File

@ -1,17 +0,0 @@
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"],
"no-console": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-ordering": {
"options":{
"order": [
"static-method"
]
}
}
},
"defaultSeverity": "warning"
}