mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-21 15:36:50 -05:00
21 lines
458 B
JavaScript
21 lines
458 B
JavaScript
module.exports = {
|
|
moduleFileExtensions: [
|
|
'web.js',
|
|
'web.ts',
|
|
'web.tsx',
|
|
'mjs',
|
|
'js',
|
|
'ts',
|
|
'tsx',
|
|
'json',
|
|
],
|
|
testEnvironment: 'jsdom',
|
|
testPathIgnorePatterns: ['/node_modules/', '/lib/'].filter(Boolean),
|
|
testMatch: ['**/*.web.test.(js|ts|tsx)'],
|
|
transformIgnorePatterns: ['/node_modules/(?!absurd-sql)'],
|
|
transform: {
|
|
'\\.pegjs$': '<rootDir>/peg-transform.mjs',
|
|
'^.+\\.(t|j)sx?$': '@swc/jest',
|
|
},
|
|
};
|