Skip to content

Commit

Permalink
chore: configure initial settings
Browse files Browse the repository at this point in the history
  • Loading branch information
heitorgandolfi committed Dec 4, 2023
1 parent 14117a9 commit 7781568
Show file tree
Hide file tree
Showing 7 changed files with 520 additions and 15 deletions.
9 changes: 9 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100
}
8 changes: 3 additions & 5 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"expo": {
"name": "Bjj Journey",
"slug": "personal-track-bjj",
"name": "bjj-personal-track",
"slug": "bjj-personal-track",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
Expand All @@ -11,9 +11,7 @@
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true
},
Expand Down
4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { registerRootComponent } from "expo";
import App from "./App";

registerRootComponent(App);
7 changes: 7 additions & 0 deletions metro.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Learn more https://docs.expo.io/guides/customizing-metro
const { getDefaultConfig } = require("expo/metro-config");

const config = getDefaultConfig(__dirname);
config.resolver.sourceExts.push("mjs");

module.exports = config;
Loading

0 comments on commit 7781568

Please sign in to comment.