File tree 5 files changed +621
-20
lines changed
5 files changed +621
-20
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ export default ({ config }) => ({
5
5
name : 'astro-app' ,
6
6
slug : 'astro-app' ,
7
7
version : '1.0.0' ,
8
+ owner : 'danielbgc' ,
8
9
orientation : 'portrait' ,
9
10
icon : './assets/icon.png' ,
10
11
userInterfaceStyle : 'light' ,
@@ -17,6 +18,7 @@ export default ({ config }) => ({
17
18
supportsTablet : true ,
18
19
} ,
19
20
android : {
21
+ package : 'android.danielbgc.astroapp' ,
20
22
adaptiveIcon : {
21
23
foregroundImage : './assets/adaptive-icon.png' ,
22
24
backgroundColor : '#ffffff' ,
@@ -36,6 +38,9 @@ export default ({ config }) => ({
36
38
] ,
37
39
] ,
38
40
extra : {
41
+ eas : {
42
+ projectId : '59c62513-57e1-47c9-8ab6-1d9a38b0655f' ,
43
+ } ,
39
44
sentryOrg : process . env . SENTRY_ORG ,
40
45
sentryProject : process . env . SENTRY_PROJECT ,
41
46
sentryDsn : process . env . SENTRY_DSN ,
Original file line number Diff line number Diff line change
1
+ {
2
+ "cli" : {
3
+ "version" : " >= 12.3.0" ,
4
+ "appVersionSource" : " remote"
5
+ },
6
+ "build" : {
7
+ "development" : {
8
+ "developmentClient" : true ,
9
+ "distribution" : " internal"
10
+ },
11
+ "preview" : {
12
+ "distribution" : " internal"
13
+ },
14
+ "production" : {
15
+ "autoIncrement" : true
16
+ }
17
+ },
18
+ "submit" : {
19
+ "production" : {}
20
+ }
21
+ }
Original file line number Diff line number Diff line change 6
6
"start" : " expo start" ,
7
7
"android" : " expo start --android" ,
8
8
"ios" : " expo start --ios" ,
9
- "web" : " expo start --web"
9
+ "web" : " expo start --web" ,
10
+ "eas:apk:dev" : " eas build --platform android --profile development" ,
11
+ "eas:apk:prod" : " eas build --platform android --profile production"
10
12
},
11
13
"dependencies" : {
12
14
"@expo/vector-icons" : " expo/vector-icons" ,
21
23
"dotenv-cli" : " ^7.4.2" ,
22
24
"expo" : " ~51.0.28" ,
23
25
"expo-auth-session" : " ~5.5.2" ,
26
+ "expo-dev-client" : " ~4.0.27" ,
24
27
"expo-status-bar" : " ~1.12.1" ,
25
28
"nativewind" : " ^2.0.11" ,
26
29
"react" : " 18.2.0" ,
35
38
},
36
39
"devDependencies" : {
37
40
"@babel/core" : " ^7.20.0" ,
38
- "@types/react" : " ~18.2.45" ,
41
+ "@types/react" : " ~18.2.79" ,
42
+ "@types/react-native" : " ^0.73.0" ,
39
43
"tailwindcss" : " 3.3.2" ,
40
44
"typescript" : " ^5.1.3"
41
45
},
Original file line number Diff line number Diff line change 9
9
"@components/*" : [" src/components/*" ],
10
10
"@consts/*" : [" src/consts/*" ],
11
11
"@assets/*" : [" assets/*" ]
12
- }
13
- }
12
+ },
13
+ "jsx" : " react-native" , // Adiciona suporte adequado para JSX no React Native
14
+ "moduleResolution" : " node" , // Garante que os módulos sejam resolvidos corretamente
15
+ "skipLibCheck" : true , // Ignora verificações de tipos em bibliotecas para melhorar o tempo de compilação
16
+ "esModuleInterop" : true , // Habilita interoperabilidade com CommonJS
17
+ "allowSyntheticDefaultImports" : true , // Permite importações padrão mesmo que não haja um default export
18
+ "forceConsistentCasingInFileNames" : true , // Garante que nomes de arquivos sejam consistentes em termos de capitalização
19
+ "isolatedModules" : true // Requer que cada arquivo seja tratado como um módulo isolado
20
+ },
21
+ "exclude" : [" node_modules" ] // Exclui a pasta node_modules
14
22
}
You can’t perform that action at this time.
0 commit comments