* feat: implements esbuild and removes babel * chore: implements esbuild-register * chore: tests passing * chore: implements @swc/jest for tests * feat: implements swc * chore: removes build and relies on swc/register only * chore: converts some exports * chore: flattens ts configs * chore: allows tsx in swc * chore: converts more exports into js * chore: restores payload module.exports * chore: removes unused dependency
18 lines
492 B
JavaScript
18 lines
492 B
JavaScript
module.exports = {
|
|
verbose: true,
|
|
testEnvironment: 'node',
|
|
testMatch: [
|
|
'**/src/**/*.spec.ts',
|
|
'**/test/**/*int.spec.ts',
|
|
],
|
|
transform: {
|
|
'^.+\\.(t|j)sx?$': ['@swc/jest'],
|
|
},
|
|
globalSetup: './test/jest.setup.ts',
|
|
testTimeout: 90000,
|
|
moduleNameMapper: {
|
|
'\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': '<rootDir>/src/webpack/mocks/fileMock.js',
|
|
'\\.(css|scss)$': '<rootDir>/src/webpack/mocks/emptyModule.js',
|
|
},
|
|
};
|