Skip to content

Commit 09a01bb

Browse files
committedMay 25, 2022
feat: upgrade deps version and fix mon-string value passed
1 parent be5f4e2 commit 09a01bb

File tree

2 files changed

+18
-15
lines changed

2 files changed

+18
-15
lines changed
 

‎package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -41,24 +41,24 @@
4141
"testEnvironment": "node"
4242
},
4343
"devDependencies": {
44-
"@commitlint/cli": "^12.1.4",
45-
"@commitlint/config-conventional": "^12.1.4",
46-
"@types/jest": "^26.0.23",
47-
"@types/node": "^15.3.0",
44+
"@commitlint/cli": "^17.0.1",
45+
"@commitlint/config-conventional": "^17.0.0",
46+
"@types/jest": "^27.5.1",
47+
"@types/node": "^17.0.35",
4848
"@types/supertest": "^2.0.11",
49-
"@typescript-eslint/eslint-plugin": "^4.23.0",
50-
"@typescript-eslint/parser": "^4.23.0",
51-
"eslint": "^7.26.0",
49+
"@typescript-eslint/eslint-plugin": "^5.26.0",
50+
"@typescript-eslint/parser": "^5.26.0",
51+
"eslint": "^8.16.0",
5252
"eslint-config-prettier": "^8.3.0",
53-
"eslint-plugin-prettier": "^3.4.0",
54-
"husky": "^6.0.0",
55-
"jest": "^26.6.3",
56-
"lint-staged": "^11.0.0",
53+
"eslint-plugin-prettier": "^4.0.0",
54+
"husky": "^8.0.1",
55+
"jest": "^28.1.0",
56+
"lint-staged": "^12.4.2",
5757
"prettier": "^2.3.0",
5858
"supertest": "^6.1.3",
59-
"ts-jest": "^26.5.6",
60-
"ts-node": "^9.1.1",
59+
"ts-jest": "^28.0.3",
60+
"ts-node": "^10.8.0",
6161
"ts-node-dev": "^1.1.6",
62-
"typescript": "^4.2.4"
62+
"typescript": "^4.7.2"
6363
}
6464
}

‎tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4+
"lib": [
5+
"ESNext"
6+
],
47
"declaration": true,
58
"removeComments": true,
69
"emitDecoratorMetadata": true,
710
"experimentalDecorators": true,
811
"allowSyntheticDefaultImports": true,
9-
"target": "es2017",
12+
"target": "ESNext",
1013
"sourceMap": true,
1114
"outDir": "./dist",
1215
"baseUrl": "./src",

0 commit comments

Comments
 (0)
Please sign in to comment.