tsconfig.json 405 Bytes
Newer Older
yogevbd's avatar
yogevbd committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
{
  "extends": "./tsconfig-strict.json",
  "compilerOptions": {
    "outDir": "./lib/dist",
    "allowJs": false,
    "target": "esnext",
    "module": "commonjs",
    "jsx": "react-native",
    "declaration": true,
    "skipLibCheck": true,
    "types": [
      "jest",
      "lodash",
      "react",
      "react-native",
      "react-test-renderer"
    ]
  },
  "include": [
    "./lib/src/**/*"
  ]
}