weechatRN

Weechat relay client for iOS using websockets https://github.com/mhoran/weechatRN
git clone http://git.hanabi.in/repos/weechatRN.git
Log | Files | Refs | README | LICENSE

jest.config.js (369B)


      1 const { defaults: tsjPreset } = require('ts-jest/presets');
      2 
      3 module.exports = {
      4   preset: 'jest-expo',
      5   transform: {
      6     ...tsjPreset.transform
      7   },
      8   moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
      9   globals: {
     10     'ts-jest': {
     11       babelConfig: true,
     12       tsconfig: {
     13         strict: false
     14       }
     15     }
     16   },
     17   setupFiles: ['./jest.setup.js']
     18 };