mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
Merge pull request #16524 from overleaf/em-fix-typescript-backend
Fix typescript config in the backend GitOrigin-RevId: fb292968bc14da6d7c17bee1da00803a74901899
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
"version": "2.1.0",
|
||||
"description": "Redis wrapper for node which will either use cluster or single instance redis",
|
||||
"main": "index.js",
|
||||
"types": "types/index.d.ts",
|
||||
"files": [
|
||||
"index.js",
|
||||
"Errors.js",
|
||||
@@ -17,11 +18,12 @@
|
||||
"lint:fix": "eslint --fix --ext .js --ext .cjs .",
|
||||
"format": "prettier --list-different $PWD/'**/*.{js,cjs}'",
|
||||
"format:fix": "prettier --write $PWD/'**/*.{js,cjs}'",
|
||||
"test": "npm run lint && npm run format && npm run typecheck && npm run test:unit",
|
||||
"test": "npm run lint && npm run format && npm run types:check && npm run test:unit",
|
||||
"test:ci": "npm run test:unit",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"test:unit": "mocha --exit test/**/*.{js,cjs}",
|
||||
"update-types": "rm -rf types && tsc --emitDeclarationOnly"
|
||||
"types:build": "[ -d types ] || tsc --emitDeclarationOnly",
|
||||
"types:check": "tsc --noEmit",
|
||||
"types:rebuild": "rm -rf types && npm run types:build"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@overleaf/logger": "*",
|
||||
|
||||
Reference in New Issue
Block a user