Merge pull request #13223 from overleaf/ae-typescript-upgrade

Upgrade TypeScript to v5

GitOrigin-RevId: 55d98c0e8fdeb39c1297b4472f0d604e25af995b
This commit is contained in:
Alf Eaton
2023-06-08 09:38:16 +01:00
committed by Copybot
parent 4b968017a0
commit 5382178309
8 changed files with 92 additions and 28 deletions

View File

@@ -26,7 +26,7 @@
"prepublishOnly": "npm run --silent declaration:build && npm run --silent declaration:check",
"test": "mocha",
"test:coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"typecheck": "tsc --allowJs --checkJs --noEmit --moduleResolution node --strict --target ES6 *.cjs test/**/*.js",
"typecheck": "tsc --allowJs --checkJs --noEmit --skipLibCheck --moduleResolution node --strict --target ES6 *.cjs test/**/*.js",
"update-readme": "doc/update-readme.js",
"format": "prettier --list-different $PWD/'**/*.js'",
"format:fix": "prettier --write $PWD/'**/*.js'",
@@ -43,6 +43,6 @@
"markdown-toc": "^1.2.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"typescript": "^4.5.4"
"typescript": "^5.0.4"
}
}