mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 12:43:09 -05:00
16 lines
300 B
TypeScript
16 lines
300 B
TypeScript
export default {
|
|
test: {
|
|
globals: true,
|
|
onConsoleLog(log: string, type: 'stdout' | 'stderr'): boolean | void {
|
|
// print only console.error
|
|
return type === 'stderr';
|
|
},
|
|
poolOptions: {
|
|
threads: {
|
|
maxThreads: 2,
|
|
minThreads: 1,
|
|
},
|
|
},
|
|
},
|
|
};
|