Blame · Line-by-line history
tsconfig.json
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| 5c83ccc | 1 | { |
| 2 | "extends": "expo/tsconfig.base", | |
| 3 | "compilerOptions": { | |
| 4 | "strict": true, | |
| 5 | "baseUrl": ".", | |
| 6 | "paths": { | |
| 7 | "@/*": ["src/*"] | |
| 8 | }, | |
| 9 | "jsx": "react-native", | |
| 10 | "allowSyntheticDefaultImports": true, | |
| 11 | "esModuleInterop": true, | |
| 12 | "resolveJsonModule": true, | |
| 13 | "moduleResolution": "bundler", | |
| 14 | "target": "ES2020", | |
| 15 | "lib": ["ES2020"], | |
| 16 | "skipLibCheck": true | |
| 17 | }, | |
| 18 | "include": ["src", "*.ts", "*.tsx"] | |
| 19 | } |