Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
build(deps-dev): bump typescript from 5.2.2 to 5.3.2 (#5871)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump typescript from 5.2.2 to 5.3.2

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.2.2 to 5.3.2.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.2.2...v5.3.2)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Remove tsconfig/recommended dependency

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jon Cinque <[email protected]>
  • Loading branch information
dependabot[bot] and joncinque authored Nov 21, 2023
1 parent 475f574 commit 8fc7ce1
Show file tree
Hide file tree
Showing 12 changed files with 137 additions and 143 deletions.
2 changes: 1 addition & 1 deletion libraries/type-length-value/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@
"prettier": "^3.1.0",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
"typescript": "^5.3.2"
}
}
2 changes: 1 addition & 1 deletion memo/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"typedoc": "^0.25.0",
"typescript": "^5.0.4"
"typescript": "^5.3.2"
}
}
3 changes: 1 addition & 2 deletions name-service/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"singleQuote": true
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/bn.js": "^5.1.1",
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.5",
Expand All @@ -55,7 +54,7 @@
"start-server-and-test": "^2.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.25.0",
"typescript": "^5.0.4"
"typescript": "^5.3.2"
},
"dependencies": {
"@solana/web3.js": "^1.87.6",
Expand Down
8 changes: 5 additions & 3 deletions name-service/js/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"extends": "@tsconfig/recommended/tsconfig.json",
"ts-node": {
"compilerOptions": {
"module": "commonjs",
Expand All @@ -10,7 +9,10 @@
}
},
"compilerOptions": {
"strict": true,
"module": "commonjs",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "es2019",
Expand All @@ -26,7 +28,7 @@
},
"resolveJsonModule": true
},
"$schema": "https://json.schemastore.org/tsconfig",
"include": ["src/*"],
"exclude": ["src/**/*.test.ts", "**/node_modules", "dist"]
}

}
Loading

0 comments on commit 8fc7ce1

Please sign in to comment.