Files
self/app/tsconfig.json
Aaron DeRuvo 25634e06dc create nice structure for the mobile sdk (#1177)
* create nice structure for the mobile sdk

* spv

* actually dont touch what we dont understand

* fix metro

* fix pretty

* fix types on app and imrpove names

* sneek in actually checking the types in the mobile app.

* not yet

* fix jest imports and name test better
2025-10-02 09:34:22 +02:00

62 lines
1.4 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"],
"@selfxyz/mobile-sdk-alpha": [
"../packages/mobile-sdk-alpha/src",
"../packages/mobile-sdk-alpha/dist"
],
"@selfxyz/mobile-sdk-alpha/onboarding/*": [
"../packages/mobile-sdk-alpha/dist/esm/flows/onboarding/*"
],
"@selfxyz/mobile-sdk-alpha/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/**/*"
]
}