Skip to content

Commit

Permalink
Update devDependencies to latest versions
Browse files Browse the repository at this point in the history
Most significantly picks up changes from Prettier 3.2.3, which causes
`tsconfig.json` files to be formatted as JSONC (which can have trailing
commas) versus JSON (which cannot).
  • Loading branch information
EvanHahn committed Jan 22, 2024
1 parent 14af0ae commit 9758462
Show file tree
Hide file tree
Showing 8 changed files with 476 additions and 327 deletions.
765 changes: 457 additions & 308 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
"private": true,
"version": "7.1.0",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@rollup/plugin-typescript": "^11.1.6",
"@types/connect": "^3.4.38",
"@types/jest": "^29.5.11",
"@types/node-zopfli": "^2.0.5",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"connect": "^3.7.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"node-zopfli": "^2.1.4",
"prettier": "^3.1.1",
"rollup": "^4.9.1",
"prettier": "^3.2.4",
"rollup": "^4.9.6",
"rollup-plugin-dts": "^6.1.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "nodenext",
"esModuleInterop": true
}
"esModuleInterop": true,
},
}
4 changes: 2 additions & 2 deletions test/project-setups/typescript-commonjs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true
}
"esModuleInterop": true,
},
}
4 changes: 2 additions & 2 deletions test/project-setups/typescript-esnext/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node"
}
"moduleResolution": "node",
},
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"module": "nodenext",
"moduleResolution": "nodenext"
}
"moduleResolution": "nodenext",
},
}
4 changes: 2 additions & 2 deletions test/project-setups/typescript-nodenext-esm/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"module": "nodenext",
"moduleResolution": "nodenext"
}
"moduleResolution": "nodenext",
},
}
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"noUncheckedIndexedAccess": true,
"strict": true,
"target": "es6",
"outDir": "."
"outDir": ".",
},
"exclude": ["node_modules"]
"exclude": ["node_modules"],
}

0 comments on commit 9758462

Please sign in to comment.