├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .husky ├── .npmignore ├── commit-msg └── pre-commit ├── .yarnrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── CMakeLists.txt ├── build.gradle ├── cpp-adapter.cpp └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── reactnativerandomvaluesjsihelper │ ├── RandomValuesJsiHelperModule.java │ └── RandomValuesJsiHelperPackage.java ├── babel.config.js ├── cpp ├── TypedArray.cpp ├── TypedArray.hpp ├── react-native-random-values-jsi-helper.cpp └── react-native-random-values-jsi-helper.h ├── example ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── reactnativerandomvaluesjsihelper │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── reactnativerandomvaluesjsihelper │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.tsx ├── ios │ ├── File.swift │ ├── Podfile │ ├── RandomValuesJsiHelperExample-Bridging-Header.h │ ├── RandomValuesJsiHelperExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── RandomValuesJsiHelperExample.xcscheme │ ├── RandomValuesJsiHelperExample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── RandomValuesJsiHelperExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m ├── metro.config.js ├── package.json └── src │ └── App.tsx ├── ios ├── RandomValuesJsiHelper.h ├── RandomValuesJsiHelper.mm └── RandomValuesJsiHelper.xcodeproj │ └── project.pbxproj ├── package.json ├── react-native-random-values-jsi-helper.podspec ├── scripts └── bootstrap.js ├── src ├── __tests__ │ └── index.test.tsx ├── global.d.ts └── index.tsx ├── tsconfig.build.json └── tsconfig.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.npmignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn commitlint -E HUSKY_GIT_PARAMS 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/.yarnrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/README.md -------------------------------------------------------------------------------- /android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/android/CMakeLists.txt -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/cpp-adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/android/cpp-adapter.cpp -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/reactnativerandomvaluesjsihelper/RandomValuesJsiHelperModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/android/src/main/java/com/reactnativerandomvaluesjsihelper/RandomValuesJsiHelperModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/reactnativerandomvaluesjsihelper/RandomValuesJsiHelperPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/android/src/main/java/com/reactnativerandomvaluesjsihelper/RandomValuesJsiHelperPackage.java -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/babel.config.js -------------------------------------------------------------------------------- /cpp/TypedArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/cpp/TypedArray.cpp -------------------------------------------------------------------------------- /cpp/TypedArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/cpp/TypedArray.hpp -------------------------------------------------------------------------------- /cpp/react-native-random-values-jsi-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/cpp/react-native-random-values-jsi-helper.cpp -------------------------------------------------------------------------------- /cpp/react-native-random-values-jsi-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/cpp/react-native-random-values-jsi-helper.h -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/debug/java/com/example/reactnativerandomvaluesjsihelper/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/debug/java/com/example/reactnativerandomvaluesjsihelper/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/reactnativerandomvaluesjsihelper/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/main/java/com/example/reactnativerandomvaluesjsihelper/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/reactnativerandomvaluesjsihelper/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/main/java/com/example/reactnativerandomvaluesjsihelper/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/RandomValuesJsiHelperExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/ios/RandomValuesJsiHelperExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/RandomValuesJsiHelperExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/ios/RandomValuesJsiHelperExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/RandomValuesJsiHelperExample.xcodeproj/xcshareddata/xcschemes/RandomValuesJsiHelperExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/ios/RandomValuesJsiHelperExample.xcodeproj/xcshareddata/xcschemes/RandomValuesJsiHelperExample.xcscheme -------------------------------------------------------------------------------- /example/ios/RandomValuesJsiHelperExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/ios/RandomValuesJsiHelperExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/RandomValuesJsiHelperExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/ios/RandomValuesJsiHelperExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/RandomValuesJsiHelperExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/ios/RandomValuesJsiHelperExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/RandomValuesJsiHelperExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/ios/RandomValuesJsiHelperExample/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/RandomValuesJsiHelperExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/ios/RandomValuesJsiHelperExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/RandomValuesJsiHelperExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/ios/RandomValuesJsiHelperExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/RandomValuesJsiHelperExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/ios/RandomValuesJsiHelperExample/Info.plist -------------------------------------------------------------------------------- /example/ios/RandomValuesJsiHelperExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/ios/RandomValuesJsiHelperExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/RandomValuesJsiHelperExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/ios/RandomValuesJsiHelperExample/main.m -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /ios/RandomValuesJsiHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/ios/RandomValuesJsiHelper.h -------------------------------------------------------------------------------- /ios/RandomValuesJsiHelper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/ios/RandomValuesJsiHelper.mm -------------------------------------------------------------------------------- /ios/RandomValuesJsiHelper.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/ios/RandomValuesJsiHelper.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/package.json -------------------------------------------------------------------------------- /react-native-random-values-jsi-helper.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/react-native-random-values-jsi-helper.podspec -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateioprea/react-native-random-values-jsi-helper/HEAD/tsconfig.json --------------------------------------------------------------------------------