Birkir Gudjonsson
Birkir Gudjonsson
Yessir ```json { "compilerOptions": { "target": "es2015", "jsx": "react", "baseUrl": "./src", "noEmit": true, "noImplicitAny": false, "strictNullChecks": false, "allowSyntheticDefaultImports": true, "moduleResolution": "node", "experimentalDecorators": true, "sourceMap": true }, "exclude": [ "node_modules" ]...
Thanks for the quick reply, setting the module property to es2015 didn't work for me. Also tried jsx from react to react-native without any luck. Also to be clear, in...
Thanks for the update, will try and reporter back.
There is typescript support shipped with RN 56/57, HMR works fine.
`pod repo update` maybe?
Awesome! Here is a blog post taking on the new (undocumented) createContext api. https://blog.kentcdodds.com/reacts-%EF%B8%8F-new-context-api-70c9fe01596b
Here are the changes I had to make to react-three-renderer-fiber just to make it compile/bundle for react-native. https://gist.github.com/birkir/c86b315df390fe485b76d96c0ffe4545 Here is a repo with it fully working, but it won't react...
Alright thanks for the update man
I will boot a windows machine and make the required changes. I don't want to be exclusive to unix 👍
Hey good idea! A good example field could be the color picker. The number field is always a great starting point. I may have to add documentation on how to...