fix(core): update

This commit is contained in:
Philipp Kunz 2023-10-20 18:01:12 +02:00
parent b43050ff0c
commit 5af1863264
4 changed files with 577 additions and 774 deletions

View File

@ -14,20 +14,20 @@
"buildDocs": "tsdoc" "buildDocs": "tsdoc"
}, },
"devDependencies": { "devDependencies": {
"@api.global/typedserver": "^3.0.4", "@api.global/typedserver": "^3.0.5",
"@git.zone/tsbuild": "^2.1.70", "@git.zone/tsbuild": "^2.1.70",
"@git.zone/tsbundle": "^2.0.8", "@git.zone/tsbundle": "^2.0.10",
"@git.zone/tsrun": "^1.2.46", "@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.80", "@git.zone/tstest": "^1.0.81",
"@push.rocks/tapbundle": "^5.0.15", "@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.5.6" "@types/node": "^20.8.7"
}, },
"dependencies": { "dependencies": {
"@push.rocks/smartdelay": "^3.0.5", "@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartenv": "^5.0.5", "@push.rocks/smartenv": "^5.0.10",
"@push.rocks/smartjson": "^5.0.10", "@push.rocks/smartjson": "^5.0.10",
"@push.rocks/smartpromise": "^4.0.3", "@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/webstore": "^2.0.9" "@push.rocks/webstore": "^2.0.13"
}, },
"files": [ "files": [
"ts/**/*", "ts/**/*",

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/webrequest', name: '@push.rocks/webrequest',
version: '3.0.33', version: '3.0.34',
description: 'securely request from browsers' description: 'securely request from browsers'
} }

View File

@ -3,9 +3,12 @@
"experimentalDecorators": true, "experimentalDecorators": true,
"useDefineForClassFields": false, "useDefineForClassFields": false,
"target": "ES2022", "target": "ES2022",
"module": "ES2022", "module": "NodeNext",
"moduleResolution": "nodenext", "moduleResolution": "NodeNext",
"esModuleInterop": true, "esModuleInterop": true,
"verbatimModuleSyntax": true, "verbatimModuleSyntax": true
} },
"exclude": [
"dist_*/**/*.d.ts"
]
} }