UNPKG

pontem-types-bundle

Version:

Bundled types to instantiate the Polkadot JS api with a Pontem network

29 lines (28 loc) 620 B
module.exports = { collectCoverage: true, coverageDirectory: '../coverage', globals: { 'ts-jest': { diagnostics: true, tsconfig: 'tsconfig.json', }, }, moduleFileExtensions: ['ts', 'js'], moduleNameMapper: { '^@/(.*)$': '<rootDir>/src/$1', '^src/(.*)$': '<rootDir>/src/$1', '^~/(.*)$': '<rootDir>/src/$1', }, rootDir: './src', setupFiles: ['../jest.setup.js'], testMatch: [ '**/*.test.js', '**/*.test.ts', '!**/*.int.test.js', '!**/*.int.test.ts', ], testResultsProcessor: 'jest-sonar-reporter', transform: { '^.+\\.ts?$': 'ts-jest', }, };