Remove comment from json file

This commit is contained in:
Bill Thornton 2020-12-30 15:19:54 -05:00
parent 11611ed75a
commit 6c07503737
2 changed files with 1 additions and 5 deletions

View File

@ -1,8 +1,3 @@
/**
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,

View File

@ -6,6 +6,7 @@
/**
* Extensions to the default react-native-elements types to allow for
* custom properties in themes.
* Refs: https://reactnativeelements.com/docs/customization#typescript-definitions-extending-the-default-theme
*/
type RecursivePartial<T> = { [P in keyof T]?: RecursivePartial<T[P]> };