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