Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"@react-native/metro-config": "0.87.0-main",
"@tsconfig/node22": "22.0.2",
"@types/react": "^19.1.0",
"@typescript-eslint/parser": "^8.36.0",
"@typescript-eslint/parser": "^8.59.2",
"ansi-regex": "^5.0.0",
"ansi-styles": "^4.2.1",
"babel-plugin-minify-dead-code-elimination": "^0.5.2",
Expand Down Expand Up @@ -116,7 +116,7 @@
"temp-dir": "^2.0.0",
"tinybench": "^4.1.0",
"tinyglobby": "^0.2.15",
"typescript": "5.8.3",
"typescript": "^6.0.3",
"ws": "^7.5.10"
},
"resolutions": {
Expand Down
4 changes: 2 additions & 2 deletions packages/eslint-config-react-native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@react-native/eslint-plugin": "0.87.0-main",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-ft-flow": "^2.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"strictFunctionTypes": false
"strict": false
},
"include": ["ReactNativeApi.d.ts"]
}
1 change: 1 addition & 0 deletions packages/react-native/types/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"compilerOptions": {
"module": "commonjs",
"lib": ["es6"],
"strict": false,
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
Expand Down
7 changes: 4 additions & 3 deletions private/react-native-codegen-typescript-test/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
"lib": [
"es6"
],
"module": "commonjs",
"moduleResolution": "node",
"target": "es5",
"module": "node16",
"moduleResolution": "node16",
"target": "es2015",
"types": ["jest", "node"],
"declaration": false,
"sourceMap": false,
"outDir": "./lib",
Expand Down
2 changes: 1 addition & 1 deletion scripts/build/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function getTypeScriptCompilerOptions(
case 'node':
return {
...require('@tsconfig/node22/tsconfig.json').compilerOptions,
moduleResolution: ModuleResolutionKind.NodeJs,
moduleResolution: ModuleResolutionKind.Node16,
};
}
}
Expand Down
1 change: 1 addition & 0 deletions scripts/js-api/build-types/templates/tsconfig.test.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"compilerOptions": {
"module": "esnext",
"lib": ["es2020"],
"strict": false,
"noImplicitAny": true,
"noImplicitThis": true,
"types": [],
Expand Down
237 changes: 150 additions & 87 deletions yarn.lock

Large diffs are not rendered by default.

Loading