WrathChaos / react-native-typescript-boilerplate

🚀 All-in-one React Native Typescript Boilerplate, Ready to Start 🥳
https://freakycoder.com
400 stars 92 forks source link

Fix TS @theme path. #4

Closed jckw closed 2 years ago

jckw commented 3 years ago

I think this is the intention in this file, so that you could import the colours like @theme/colors.

Without the asterisk, TypeScript gets confused and can't resolve the import, or tries to import like:

import fonts from "@theme";

(this is with auto import on VS Code)