1234567891011121314151617181920 |
- {
- "compilerOptions": {
- "allowSyntheticDefaultImports": true,
- "jsx": "react-native",
- "lib": ["es6"],
- "module": "esnext",
- "moduleResolution": "node",
- "noEmit": true,
- "noFallthroughCasesInSwitch": true,
- "noImplicitReturns": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "pretty": true,
- "skipLibCheck": true,
- "strict": true
- },
- "include": ["src", "index.ts"],
- "exclude": ["node_modules", "index.flow.js"]
- }
|