mirror of
https://github.com/selfxyz/self.git
synced 2026-01-09 14:48:06 -05:00
21 lines
803 B
JSON
21 lines
803 B
JSON
{
|
|
"extends": "@tsconfig/react-native/tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "ES2020",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["ES2020", "DOM"],
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@selfxyz/mobile-sdk-alpha": ["../../packages/mobile-sdk-alpha/dist/esm/index"],
|
|
"@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/*"]
|
|
},
|
|
"types": ["react-native", "vitest/globals"]
|
|
},
|
|
"include": ["src", "App.tsx", "index.js", "types/**/*", "__tests__/**/*", "tests/**/*"],
|
|
"exclude": ["node_modules", "../../packages/mobile-sdk-alpha/src"]
|
|
}
|