From c91bf17cfd626784ea7127b19ed3f2f65cfe7a44 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Tue, 4 Feb 2025 12:03:16 +0100 Subject: [PATCH] fix typedoc --- package-lock.json | 39 +++++++++++++++++++++++++++++++-------- package.json | 4 ++-- tsconfig.json | 1 + 3 files changed, 34 insertions(+), 10 deletions(-) diff --git a/package-lock.json b/package-lock.json index f61dea1a..dfeb8d44 100644 --- a/package-lock.json +++ b/package-lock.json @@ -997,6 +997,18 @@ "version": "0.7.34", "license": "MIT" }, + "node_modules/@types/node": { + "version": "22.13.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.1.tgz", + "integrity": "sha512-jK8uzQlrvXqEU91UxiK5J7pKHyzgnI1Qnl0QDHIgVGuolJhRb9EEl28Cj9b3rGR8B2lhFCtvIm5os8lFnO/1Ew==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "undici-types": "~6.20.0" + } + }, "node_modules/@types/offscreencanvas": { "version": "2019.7.1", "license": "MIT" @@ -3789,14 +3801,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globby/node_modules/slash": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/gopd": { "version": "1.0.1", "dev": true, @@ -7166,6 +7170,16 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/source-map": { "version": "0.6.1", "dev": true, @@ -8017,6 +8031,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/undici-types": { + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", + "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true + }, "node_modules/unified": { "version": "11.0.4", "license": "MIT", diff --git a/package.json b/package.json index f0fac742..685cb2f4 100644 --- a/package.json +++ b/package.json @@ -33,8 +33,8 @@ "@types/react-dom": "^18.0.5", "@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/parser": "^5.62.0", - "@vitest/coverage-v8": "^3.0.5", "@vitejs/plugin-react": "^4.3.4", + "@vitest/coverage-v8": "^3.0.5", "autoprefixer": "^10.4.14", "daisyui": "^4.6.1", "eslint": "^8.24.0", @@ -60,8 +60,8 @@ "rollup-plugin-postcss": "^4.0.2", "rollup-plugin-typescript2": "^0.32.1", "tailwindcss": "^3.3.1", - "typescript": "^5.7.3", "typedoc": "^0.27.6", + "typescript": "^5.7.3", "vite": "^6.0.11", "vitest": "^3.0.5" }, diff --git a/tsconfig.json b/tsconfig.json index f9097b56..b0d11e50 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,6 +17,7 @@ "noUnusedLocals": false, "noUnusedParameters": true, "allowSyntheticDefaultImports": true, + "skipLibCheck": true, "paths": { "#components/*": ["./src/Components/*"], "#utils/*": ["./src/Utils/*"],