dependencies / tsconfig

This commit is contained in:
Florian Dold 2022-02-10 20:13:07 +01:00
parent 5ff3b44550
commit 8920ea9c54
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B
7 changed files with 4839 additions and 3986 deletions

View File

@ -3,11 +3,12 @@
"module": "commonjs", "module": "commonjs",
"target": "es5", "target": "es5",
"noImplicitAny": false, "noImplicitAny": false,
"sourceMap": false,
"outDir": "lib", "outDir": "lib",
"incremental": true "incremental": true,
"moduleResolution": "node",
"sourceMap": true,
"lib": ["es6"],
"types": ["node"]
}, },
"files": [ "files": ["pogen.ts"]
"pogen.ts"
]
} }

View File

@ -32,12 +32,12 @@
"pretty": "prettier --write src" "pretty": "prettier --write src"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^17.0.8", "@types/node": "^17.0.17",
"ava": "^4.0.0", "ava": "^4.0.1",
"esbuild": "^0.14.10", "esbuild": "^0.14.21",
"prettier": "^2.5.1", "prettier": "^2.5.1",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"typescript": "^4.5.4" "typescript": "^4.5.5"
}, },
"dependencies": { "dependencies": {
"big-integer": "^1.6.51", "big-integer": "^1.6.51",

View File

@ -44,6 +44,10 @@ interface URLSearchParams {
callbackfn: (value: string, key: string, parent: URLSearchParams) => void, callbackfn: (value: string, key: string, parent: URLSearchParams) => void,
thisArg?: any, thisArg?: any,
): void; ): void;
entries(): IterableIterator<[string, string]>;
keys(): IterableIterator<string>;
values(): IterableIterator<string>;
[Symbol.iterator](): IterableIterator<[string, string]>;
} }
export interface URLSearchParamsCtor { export interface URLSearchParamsCtor {

View File

@ -34,19 +34,19 @@
"@rollup/plugin-json": "^4.1.0", "@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3", "@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.0.1", "@rollup/plugin-replace": "^3.0.1",
"@types/node": "^17.0.8", "@types/node": "^17.0.17",
"prettier": "^2.2.1", "prettier": "^2.5.1",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"rollup": "^2.63.0", "rollup": "^2.67.2",
"rollup-plugin-sourcemaps": "^0.6.3", "rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2", "rollup-plugin-terser": "^7.0.2",
"typedoc": "^0.22.10", "typedoc": "^0.22.11",
"typescript": "^4.5.4" "typescript": "^4.5.5"
}, },
"dependencies": { "dependencies": {
"@gnu-taler/taler-util": "workspace:*", "@gnu-taler/taler-util": "workspace:*",
"@gnu-taler/taler-wallet-core": "workspace:*", "@gnu-taler/taler-wallet-core": "workspace:*",
"axios": "^0.24.0", "axios": "^0.25.0",
"cancellationtoken": "^2.2.0", "cancellationtoken": "^2.2.0",
"source-map-support": "^0.5.21", "source-map-support": "^0.5.21",
"tslib": "^2.3.1" "tslib": "^2.3.1"

View File

@ -40,11 +40,11 @@
"devDependencies": { "devDependencies": {
"@ava/typescript": "^3.0.1", "@ava/typescript": "^3.0.1",
"@gnu-taler/pogen": "workspace:*", "@gnu-taler/pogen": "workspace:*",
"@typescript-eslint/eslint-plugin": "^5.9.0", "@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.9.0", "@typescript-eslint/parser": "^5.11.0",
"ava": "^4.0.0", "ava": "^4.0.1",
"c8": "^7.11.0", "c8": "^7.11.0",
"eslint": "^8.6.0", "eslint": "^8.8.0",
"eslint-config-airbnb-typescript": "^16.1.0", "eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.4", "eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-jsx-a11y": "^6.5.1",
@ -54,19 +54,19 @@
"po2json": "^0.4.5", "po2json": "^0.4.5",
"prettier": "^2.5.1", "prettier": "^2.5.1",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"rollup": "^2.63.0", "rollup": "^2.67.2",
"rollup-plugin-sourcemaps": "^0.6.3", "rollup-plugin-sourcemaps": "^0.6.3",
"source-map-resolve": "^0.6.0", "source-map-resolve": "^0.6.0",
"typedoc": "^0.22.10", "typedoc": "^0.22.11",
"typescript": "^4.5.4" "typescript": "^4.5.5"
}, },
"dependencies": { "dependencies": {
"@gnu-taler/idb-bridge": "workspace:*", "@gnu-taler/idb-bridge": "workspace:*",
"@gnu-taler/taler-util": "workspace:*", "@gnu-taler/taler-util": "workspace:*",
"@types/node": "^17.0.8", "@types/node": "^17.0.17",
"axios": "^0.24.0", "axios": "^0.25.0",
"big-integer": "^1.6.51", "big-integer": "^1.6.51",
"fflate": "^0.7.2", "fflate": "^0.7.3",
"source-map-support": "^0.5.21", "source-map-support": "^0.5.21",
"tslib": "^2.3.1" "tslib": "^2.3.1"
}, },

View File

@ -31,13 +31,13 @@
"@rollup/plugin-json": "^4.1.0", "@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3", "@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.0.1", "@rollup/plugin-replace": "^3.0.1",
"@types/node": "^17.0.8", "@types/node": "^17.0.17",
"prettier": "^2.2.1", "prettier": "^2.5.1",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"rollup": "^2.63.0", "rollup": "^2.67.2",
"rollup-plugin-sourcemaps": "^0.6.3", "rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2", "rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.4" "typescript": "^4.5.5"
}, },
"dependencies": { "dependencies": {
"@gnu-taler/taler-util": "workspace:*", "@gnu-taler/taler-util": "workspace:*",

File diff suppressed because it is too large Load Diff