diff --git a/scripts/package-lock.json b/scripts/package-lock.json index d8ca109b..6f136448 100644 --- a/scripts/package-lock.json +++ b/scripts/package-lock.json @@ -25,7 +25,7 @@ "prettier": "^3.5.0", "prettier-plugin-organize-imports": "^4.1.0", "tsx": "^4.19.4", - "typescript": "^5.7.3", + "typescript": "^6.0.0", "typescript-eslint": "^8.24.0" } }, @@ -851,6 +851,7 @@ "integrity": "sha512-rLoGZIf9afaRBYsPUMtvkDWykwXwUPL60HebR4JgTI8mxfFe2cQTu3AGitANp4b9B2QlVru6WzjgB2IzJKiCSA==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@typescript-eslint/scope-manager": "8.58.0", "@typescript-eslint/types": "8.58.0", @@ -1094,6 +1095,7 @@ "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", "dev": true, "license": "MIT", + "peer": true, "bin": { "acorn": "bin/acorn" }, @@ -1183,6 +1185,7 @@ } ], "license": "MIT", + "peer": true, "dependencies": { "baseline-browser-mapping": "^2.9.0", "caniuse-lite": "^1.0.30001759", @@ -1426,6 +1429,7 @@ "integrity": "sha512-S9jlY/ELKEUwwQnqWDO+f+m6sercqOPSqXM5Go94l7DOmxHVDgmSFGWEzeE/gwgTAr0W103BWt0QLe/7mabIvA==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.2", @@ -1482,6 +1486,7 @@ "integrity": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==", "dev": true, "license": "MIT", + "peer": true, "bin": { "eslint-config-prettier": "bin/cli.js" }, @@ -2236,6 +2241,7 @@ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", "dev": true, "license": "MIT", + "peer": true, "engines": { "node": ">=12" }, @@ -2269,6 +2275,7 @@ "integrity": "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==", "dev": true, "license": "MIT", + "peer": true, "bin": { "prettier": "bin/prettier.cjs" }, @@ -2504,11 +2511,12 @@ } }, "node_modules/typescript": { - "version": "5.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", - "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.2.tgz", + "integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==", "dev": true, "license": "Apache-2.0", + "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" diff --git a/scripts/package.json b/scripts/package.json index 6170a0fb..fbfc6b1b 100644 --- a/scripts/package.json +++ b/scripts/package.json @@ -33,7 +33,7 @@ "prettier": "^3.5.0", "prettier-plugin-organize-imports": "^4.1.0", "tsx": "^4.19.4", - "typescript": "^5.7.3", + "typescript": "^6.0.0", "typescript-eslint": "^8.24.0", "globals": "^17.1.0" } diff --git a/scripts/tsconfig.json b/scripts/tsconfig.json index 341d2ba1..3f5a1c21 100644 --- a/scripts/tsconfig.json +++ b/scripts/tsconfig.json @@ -15,8 +15,8 @@ "incremental": true, "skipLibCheck": true, "esModuleInterop": true, - "rootDirs": ["src"], - "baseUrl": "./" + "types": ["node"], + "rootDir": "./src", }, "include": ["src/**/*.ts"], "exclude": ["dist", "node_modules"]