Files
pwap/mobile/tsconfig.json
T

19 lines
654 B
JSON

{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"baseUrl": ".",
"paths": {
"@pezkuwi/lib/*": ["../shared/lib/*"],
"@pezkuwi/utils/*": ["../shared/utils/*"],
"@pezkuwi/theme/*": ["../shared/theme/*"],
"@pezkuwi/types/*": ["../shared/types/*"],
"@pezkuwi/i18n": ["../shared/i18n"],
"@/*": ["src/*"]
},
"typeRoots": ["./src/types", "./node_modules/@types"]
},
"include": ["src/**/*.ts", "src/**/*.tsx", "shared/**/*.ts", "App.tsx", "index.ts"],
"exclude": ["**/__tests__/**/*", "**/__mocks__/**/*", "**/*.test.ts", "**/*.test.tsx", "**/*.spec.ts", "**/*.spec.tsx"]
}