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