From e82743cf66c6ee177aab4c14d820bb2d06e09e7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20Kwa=C5=9Bniewski?= Date: Tue, 17 Sep 2024 04:22:28 -0700 Subject: [PATCH] fix(internal): formatting of tsconfig.json (#46529) Summary: This PR is a small fix for the indentation of `tsconfig.json` ## Changelog: [INTERNAL] [FIXED] - fix for the indentation of `tsconfig.json` Pull Request resolved: https://github.com/facebook/react-native/pull/46529 Test Plan: N/A Reviewed By: cortinico Differential Revision: D62845892 Pulled By: cipolleschi fbshipit-source-id: 52a0309027350cd9bba8c2c158887b23ea093876 --- packages/react-native/types/tsconfig.json | 26 +++++++++++------------ 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/packages/react-native/types/tsconfig.json b/packages/react-native/types/tsconfig.json index 7cabbef3179..c6823b49bbf 100644 --- a/packages/react-native/types/tsconfig.json +++ b/packages/react-native/types/tsconfig.json @@ -1,15 +1,15 @@ { - "compilerOptions": { - "module": "commonjs", - "lib": ["es6"], - "noImplicitAny": true, - "noImplicitThis": true, - "strictFunctionTypes": true, - "strictNullChecks": true, - "types": [], - "jsx": "react", - "noEmit": true, - "forceConsistentCasingInFileNames": true, - "paths": {"react-native": ["."]} - } + "compilerOptions": { + "module": "commonjs", + "lib": ["es6"], + "noImplicitAny": true, + "noImplicitThis": true, + "strictFunctionTypes": true, + "strictNullChecks": true, + "types": [], + "jsx": "react", + "noEmit": true, + "forceConsistentCasingInFileNames": true, + "paths": {"react-native": ["."]} } +}