Files
self/app/tsconfig.json
Justin Hernandez bf3ef98c9d SEL-269: Update ESLint rules & lock prettier config (#781)
* Update ESLint config and lock prettier config

* Refine ESLint config and fix lint issues

* Apply eslint fixes

* Use socketIo alias (#782)

* move gesture handler

* save wip updates

* fix svg imports

* update tsconfig

* eslint updates

* eslint fixes

* improve ignore folders

* coderabbit feedback

* Fix style prop shorthands (#787)

* Expand view style props

* Expand remaining style props

* update types

* fix pipeline

* fix test env check

* nicer casting

* fix booleans

* update deeplink url handling and make it more robust

* add socket error handler
2025-07-24 21:17:54 -07:00

47 lines
916 B
JSON

{
"extends": "@react-native/typescript-config/tsconfig.json",
"compilerOptions": {
"lib": ["dom", "esnext"],
"resolveJsonModule": true,
"esModuleInterop": true,
"paths": {
"@env": ["./env.ts"]
}
},
"include": ["src/**/*"],
"exclude": [
"*.config.cjs",
"*.config.js",
"*.config.ts",
".babelrc",
".bundle/**/*",
".codecov.yml",
".eslintrc.cjs",
".gitattributes",
".gitignore",
".prettierignore",
".prettierrc",
".ruby-version",
".tamagui/*",
".tool-versions",
".yarn/**/*",
"android/**/*",
"app.json",
"babel.config.cjs",
"build/**/*",
"deployments/**/*",
"fastlane/**/*",
"firebase.json",
"ios/**/*",
"jest.config.cjs",
"jest.setup.js",
"metro.config.cjs",
"node_modules",
"scripts/**/*",
"tests/**/*",
"vendor/**/*",
"vite.config.ts",
"web/**/*"
]
}