Skip to content

Commit 2f2fee3

Browse files
committedFeb 17, 2024·
Update devDependencies to latest versions
1 parent 9758462 commit 2f2fee3

File tree

8 files changed

+256
-256
lines changed

8 files changed

+256
-256
lines changed
 

‎package-lock.json

+238-238
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
"devDependencies": {
55
"@rollup/plugin-typescript": "^11.1.6",
66
"@types/connect": "^3.4.38",
7-
"@types/jest": "^29.5.11",
7+
"@types/jest": "^29.5.12",
88
"@types/node-zopfli": "^2.0.5",
99
"@types/supertest": "^6.0.2",
10-
"@typescript-eslint/eslint-plugin": "^6.19.0",
11-
"@typescript-eslint/parser": "^6.19.0",
10+
"@typescript-eslint/eslint-plugin": "^7.0.1",
11+
"@typescript-eslint/parser": "^7.0.1",
1212
"connect": "^3.7.0",
1313
"eslint": "^8.56.0",
1414
"jest": "^29.7.0",
1515
"node-zopfli": "^2.1.4",
16-
"prettier": "^3.2.4",
17-
"rollup": "^4.9.6",
16+
"prettier": "^3.2.5",
17+
"rollup": "^4.12.0",
1818
"rollup-plugin-dts": "^6.1.0",
1919
"supertest": "^6.3.4",
2020
"ts-jest": "^29.1.2",
21-
"tsx": "^4.7.0",
21+
"tsx": "^4.7.1",
2222
"typescript": "^5.3.3"
2323
},
2424
"scripts": {

‎test/project-setups/typescript-commonjs-nodenext-moduleResolution/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"compilerOptions": {
33
"module": "commonjs",
44
"moduleResolution": "nodenext",
5-
"esModuleInterop": true,
6-
},
5+
"esModuleInterop": true
6+
}
77
}

‎test/project-setups/typescript-commonjs/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"compilerOptions": {
33
"module": "commonjs",
44
"moduleResolution": "node",
5-
"esModuleInterop": true,
6-
},
5+
"esModuleInterop": true
6+
}
77
}
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
33
"module": "esnext",
4-
"moduleResolution": "node",
5-
},
4+
"moduleResolution": "node"
5+
}
66
}
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
33
"module": "nodenext",
4-
"moduleResolution": "nodenext",
5-
},
4+
"moduleResolution": "nodenext"
5+
}
66
}
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
33
"module": "nodenext",
4-
"moduleResolution": "nodenext",
5-
},
4+
"moduleResolution": "nodenext"
5+
}
66
}

‎tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"noUncheckedIndexedAccess": true,
1111
"strict": true,
1212
"target": "es6",
13-
"outDir": ".",
13+
"outDir": "."
1414
},
15-
"exclude": ["node_modules"],
15+
"exclude": ["node_modules"]
1616
}

0 commit comments

Comments
 (0)
Please sign in to comment.