Skip to content

Commit 23f6d3c

Browse files
author
haytherecharlie
committed
Revert "feat(tde-00): expo 52 + nativewind/tailwind"
This reverts commit 0a17988.
1 parent 0a17988 commit 23f6d3c

22 files changed

+9396
-5196
lines changed

.eslintrc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"env": { "browser": true, "es2022": true, "node": true },
3+
"ignorePatterns": ["www"],
4+
"extends": ["eslint:recommended", "plugin:react/recommended", "plugin:@typescript-eslint/recommended", "prettier"],
5+
"overrides": [],
6+
"parser": "@typescript-eslint/parser",
7+
"parserOptions": { "ecmaVersion": "latest", "sourceType": "module" },
8+
"settings": { "react": { "version": "detect" } },
9+
"plugins": ["react", "@typescript-eslint"],
10+
11+
"rules": {
12+
"react/react-in-jsx-scope": 0,
13+
"@typescript-eslint/no-empty-interface": 0
14+
}
15+
}

.prettierrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"bracketSpacing": true,
55
"endOfLine": "lf",
66
"jsxSingleQuote": false,
7-
"printWidth": 200,
7+
"printWidth": 150,
88
"semi": false,
99
"singleQuote": true,
1010
"tabWidth": 2,

app.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,13 @@
66
"version": "1.0.0",
77
"orientation": "portrait",
88
"icon": "./src/assets/images/app-icon.png",
9-
"userInterfaceStyle": "automatic",
10-
"newArchEnabled": true,
119
"splash": {
1210
"image": "./src/assets/images/splash.png",
1311
"backgroundColor": "#222"
1412
},
15-
"experiments": {
16-
"reactServerFunctions": false
17-
},
18-
"assetBundlePatterns": ["**/*"],
13+
"assetBundlePatterns": [
14+
"**/*"
15+
],
1916
"ios": {
2017
"supportsTablet": false
2118
},
@@ -28,10 +25,12 @@
2825
},
2926
"web": {
3027
"favicon": "./src/assets/images/app-icon.png",
31-
"output": "static",
3228
"bundler": "metro"
3329
},
34-
"plugins": ["expo-router", "expo-font"],
30+
"plugins": [
31+
"expo-router",
32+
"expo-font"
33+
],
3534
"extra": {
3635
"router": {
3736
"origin": false

babel.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
module.exports = function (api) {
22
api.cache(true)
33
return {
4-
presets: [['babel-preset-expo', { jsxImportSource: 'nativewind' }], 'nativewind/babel'],
4+
presets: ['babel-preset-expo'],
55
plugins: [
6+
// Compile Exported Namespaces
67
'@babel/plugin-proposal-export-namespace-from',
8+
// React Native Reanimated
79
'react-native-reanimated/plugin',
10+
// Use Absolute Imports
811
['module-resolver', { alias: { src: './src' } }]
912
]
1013
}

eslint.config.mjs

Lines changed: 0 additions & 20 deletions
This file was deleted.

metro.config.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

nativewind-env.d.ts

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)