Skip to content

Instantly share code, notes, and snippets.

@mp5maker
Created December 20, 2020 10:17
Show Gist options
  • Save mp5maker/0d6f9a6bd3f8da20b44590dfcbd4040c to your computer and use it in GitHub Desktop.
Save mp5maker/0d6f9a6bd3f8da20b44590dfcbd4040c to your computer and use it in GitHub Desktop.
Typescript for the sharing the web app to expo app
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"jsx": "react-native",
"lib": ["dom", "esnext"],
"moduleResolution": "node",
"noEmit": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"strict": true,
"paths": {
"@web/*": [
"../web-app/src/*"
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment