123456789101112131415161718192021222324252627282930 |
- {
- "extends": "./tsconfig-strict.json",
- "compilerOptions": {
- "outDir": "./lib/dist",
- "allowJs": false,
- "target": "esnext",
- "module": "commonjs",
- "jsx": "react-native",
- "declaration": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "types": [
- "jest",
- "lodash",
- "react",
- "react-native",
- "react-test-renderer"
- ],
- "baseUrl": ".",
- "paths": {
- "react-native-navigation": ["lib/src/"],
- "react-native-navigation/*": ["lib/src/*"]
- }
- },
- "include": [
- "./lib/src/**/*",
- "./playground/**/*"
- ]
- }
|