Skip to content

Commit 6ef3cf1

Browse files
build(deps-dev): bump typescript from 5.9.3 to 6.0.2 in /src/test/nodejs/node-postgres (#4260)
* build(deps-dev): bump typescript in /src/test/nodejs/node-postgres Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 6.0.2. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](microsoft/TypeScript@v5.9.3...v6.0.2) --- updated-dependencies: - dependency-name: typescript dependency-version: 6.0.2 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * fix: move tsconfig.json to the root --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Knut Olav Løite <koloite@gmail.com>
1 parent 312681f commit 6ef3cf1

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ target/
22
/target
33
.DS_STORE
44
.idea/
5+
.vscode/
56
*.iml
67
*.class
78
*.lst

src/test/nodejs/node-postgres/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"devDependencies": {
77
"@types/node": "^25.0.2",
88
"ts-node": "10.9.2",
9-
"typescript": "5.9.3"
9+
"typescript": "6.0.2"
1010
},
1111
"dependencies": {
1212
"pg": "^8.9.0",

src/test/nodejs/node-postgres/src/tsconfig.json

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es2022",
4+
"module": "commonjs",
5+
"lib": [
6+
"es2022",
7+
"dom"
8+
],
9+
"strict": false,
10+
"noImplicitAny": false,
11+
"esModuleInterop": true,
12+
"skipLibCheck": true,
13+
"forceConsistentCasingInFileNames": true,
14+
"types": [
15+
"node"
16+
]
17+
}
18+
}

0 commit comments

Comments
 (0)