1234567891011121314151617181920212223242526272829 |
- {
- "compilerOptions": {
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "jsx": "react-native",
- "module": "esnext",
- "moduleResolution": "node",
- "noEmit": true,
- "noFallthroughCasesInSwitch": true,
- "noImplicitAny": true,
- "noImplicitReturns": true,
- "noImplicitThis": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "pretty": true,
- "skipLibCheck": true,
- "strict": true,
- },
- "include": [
- "src",
- "./typings.d.ts",
- "types",
- "test"
- ],
- "exclude": [
- "node_modules",
- "dist"
- ]
- }
|