mirror of
https://github.com/selfxyz/self.git
synced 2026-01-09 06:38:09 -05:00
* chore(app): tighten types across app workspace * fixes * save wip * save wip linting * fix any types * fix types * fix: import forwardRef directly from react - Changed from React.forwardRef to forwardRef import - Resolves linting warning about named exports * save typing and linting updates * cr feedback. final pass * more cr feedback * pipeline fixes
65 lines
1.6 KiB
JSON
65 lines
1.6 KiB
JSON
{
|
|
"extends": "@react-native/typescript-config/tsconfig.json",
|
|
"compilerOptions": {
|
|
"lib": ["dom", "esnext"],
|
|
"module": "esnext",
|
|
"baseUrl": ".",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": false,
|
|
"paths": {
|
|
"@env": ["./env.ts"],
|
|
"@/package.json": ["./package.json"],
|
|
"@selfxyz/mobile-sdk-alpha": [
|
|
"../packages/mobile-sdk-alpha/src",
|
|
"../packages/mobile-sdk-alpha/dist"
|
|
],
|
|
"@selfxyz/mobile-sdk-alpha/onboarding/*": [
|
|
"../packages/mobile-sdk-alpha/src/flows/onboarding/*",
|
|
"../packages/mobile-sdk-alpha/dist/esm/flows/onboarding/*"
|
|
],
|
|
"@selfxyz/mobile-sdk-alpha/disclosing/*": [
|
|
"../packages/mobile-sdk-alpha/src/flows/disclosing/*",
|
|
"../packages/mobile-sdk-alpha/dist/esm/flows/disclosing/*"
|
|
],
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"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/**/*"
|
|
]
|
|
}
|