Files
react/compiler/packages/make-read-only-util/package.json
T
Lauren Tan 4e6aa42773 Upgrade to typescript 5.4.3
This PR makes all packages share the same typescript version and updates us to 
latest versions of typescript, ts-node, typescript-eslint/eslint-plugin and 
typescript-eslint/parser. 

I also noticed that the tsconfig we were extending (node18-strictest) was 
deprecated, so I switched us over to one that's more up to date. 

Also had to make a couple of small changes to the playground so that continues 
to build correctly.
2024-04-02 10:32:23 -04:00

25 lines
450 B
JSON

{
"name": "make-read-only-util",
"version": "0.0.1",
"files": [
"src"
],
"scripts": {
"build": "tsc",
"test": "jest src"
},
"dependencies": {
"invariant": "^2.2.4",
"pretty-format": "^24"
},
"devDependencies": {
"@types/invariant": "^2.2.35",
"@types/jest": "^28.1.6",
"@types/node": "^20.2.5",
"jest": "^28.1.3",
"prettier": "2.8.8",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.2"
}
}