From fdf9ac73b46de52b1a271f1646af3bfdc4692b16 Mon Sep 17 00:00:00 2001 From: dpilafian Date: Sat, 18 Mar 2023 00:12:02 -0700 Subject: [PATCH] TypeScript 5.0 --- package.json | 14 +++++++------- tsconfig.json | 3 +-- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index f11e099..dabc132 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,7 @@ }, "runScriptsConfig": { "build": [ - "rimraf build dist spec/fixtures/target **/.DS_Store", + "rimraf build dist spec/fixtures/target", "jshint . --exclude-path .gitignore", "eslint --max-warnings 0 . --ext .ts", "tsc", @@ -81,17 +81,17 @@ }, "devDependencies": { "@types/fancy-log": "~2.0", - "@types/node": "~18.14", - "@typescript-eslint/eslint-plugin": "~5.54", - "@typescript-eslint/parser": "~5.54", + "@types/node": "~18.15", + "@typescript-eslint/eslint-plugin": "~5.55", + "@typescript-eslint/parser": "~5.55", "add-dist-header": "~1.0", "assert-deep-strict-equal": "~1.0", "copy-file-util": "~1.0", - "eslint": "~8.35", + "eslint": "~8.36", "jshint": "~2.13", "mocha": "~10.2", - "rimraf": "3", + "rimraf": "~4.4", "run-scripts-util": "~1.0", - "typescript": "~4.9" + "typescript": "~5.0" } } diff --git a/tsconfig.json b/tsconfig.json index 616f0a1..c82617a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,7 +18,6 @@ "noImplicitThis": true, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, - "removeComments": true, - "suppressImplicitAnyIndexErrors": true + "removeComments": true } }