mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
fix: ava config
This commit is contained in:
parent
b769e33a88
commit
848770bc13
1 changed files with 11 additions and 6 deletions
24
ava.config.mjs
Normal file
24
ava.config.mjs
Normal 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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue