fix: ava config

This commit is contained in:
ThatGuySam 2025-02-10 20:16:48 -06:00
parent b769e33a88
commit 848770bc13

24
ava.config.mjs Normal file
View file

@ -0,0 +1,24 @@
/**
* @type {import('ava').AVAConfig}
*/
export default () => {
return {
require: [
'dotenv/config',
'esm',
'tsconfig-paths/register'
],
// https://github.com/avajs/ava/blob/main/docs/recipes/watch-mode.md
watchMode: {
ignoreChanges: [
'!**/*.{js,vue}',
'./build',
'./dist',
'./.output',
],
},
// tap: true,
// verbose: true,
color: true
}
}