Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.

This commit is contained in:
becarta
2025-05-23 12:43:00 +02:00
parent f40db0f5c9
commit a544759a3b
11127 changed files with 1647032 additions and 0 deletions

71
node_modules/tsconfck/package.json generated vendored Normal file
View File

@@ -0,0 +1,71 @@
{
"name": "tsconfck",
"version": "3.1.6",
"description": "A utility to work with tsconfig.json without typescript",
"license": "MIT",
"author": "dominikg",
"files": [
"bin",
"src",
"types",
"README.md",
"LICENSE",
"package.json"
],
"type": "module",
"bin": "bin/tsconfck.js",
"types": "types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/dominikg/tsconfck.git",
"directory": "packages/tsconfck"
},
"keywords": [
"typescript",
"tsconfig",
"tsconfig.json",
"jsconfig",
"jsconfig.json"
],
"bugs": {
"url": "https://github.com/dominikg/tsconfck/issues"
},
"homepage": "https://github.com/dominikg/tsconfck/tree/main/packages/tsconfck#readme",
"peerDependencies": {
"typescript": "^5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.5",
"@vitest/coverage-v8": "^3.0.9",
"esbuild": "^0.25.1",
"isaacscript-tsconfig": "^7.0.1",
"tiny-glob": "^0.2.9",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
},
"engines": {
"node": "^18 || >=20"
},
"scripts": {
"check:publint": "publint --strict",
"check:types": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"dts-buddy": "dts-buddy -m \"tsconfck:src/index.js\""
}
}