| 123456789101112131415161718192021222324252627282930313233 |
- {
- "extends": [
- "../../tsconfig.json",
- "../mobile/tsconfig.json",
- "../web/tsconfig.json"
- ],
- "compilerOptions": {
- "allowSyntheticDefaultImports": true,
- "moduleResolution": "bundler",
- "preserveSymlinks": true,
- "esModuleInterop": true,
- "jsx": "react-native",
- "target": "esnext"
- },
- "references": [
- {
- "path": "../../"
- },
- {
- "path": "../mobile"
- },
- {
- "path": "../web"
- }
- ],
- "include": [
- "**/*.ts",
- "**/*.tsx",
- "../../src/**/*",
- "../../src/types/index.ts",
- "**/*.json"
- ]
- }
|