mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
24 lines
540 B
JavaScript
24 lines
540 B
JavaScript
/**
|
|
* @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
|
|
}
|
|
}
|