UNPKG

@abux/builder

Version:

Quick scaffolding code base to build web apps and games

17 lines (15 loc) 340 B
const { resolve } = require('path') /** @type {import('ts-jest').JestConfigWithTsJest} */ module.exports = { rootDir: resolve(__dirname, '../..'), setupFilesAfterEnv: [ '<rootDir>/tests/spec/setup.js' ], testRegex: '.+/*\\.spec\\.(ts|tsx)$', preset: 'ts-jest', transform: { '^.+\\.tsx?$': [ 'ts-jest' ] } }