fix theme selector not working, add input styling

This commit is contained in:
Jorrin
2024-03-24 20:41:09 +01:00
parent c24b2e01c1
commit ceffab182d
11 changed files with 124 additions and 45 deletions

View File

@@ -2,6 +2,7 @@
"extends": ["@movie-web/tsconfig/base.json"],
"compilerOptions": {
"incremental": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"],
@@ -10,6 +11,6 @@
"jsx": "react-native",
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json",
},
"include": ["src", "*.ts", "*.js", ".expo/types/**/*.ts", "expo-env.d.ts"],
"include": ["src", "*.ts", "*.js", ".expo/types/**/*.ts", "expo-env.d.ts", "config-plugins/*"],
"exclude": ["node_modules"],
}