mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
fix: ava config
This commit is contained in:
parent
b769e33a88
commit
848770bc13
1 changed files with 11 additions and 6 deletions
|
|
@ -1,3 +1,6 @@
|
||||||
|
/**
|
||||||
|
* @type {import('ava').AVAConfig}
|
||||||
|
*/
|
||||||
export default () => {
|
export default () => {
|
||||||
return {
|
return {
|
||||||
require: [
|
require: [
|
||||||
|
|
@ -6,12 +9,14 @@ export default () => {
|
||||||
'tsconfig-paths/register'
|
'tsconfig-paths/register'
|
||||||
],
|
],
|
||||||
// https://github.com/avajs/ava/blob/main/docs/recipes/watch-mode.md
|
// https://github.com/avajs/ava/blob/main/docs/recipes/watch-mode.md
|
||||||
ignoredByWatcher: [
|
watchMode: {
|
||||||
'!**/*.{js,vue}',
|
ignoreChanges: [
|
||||||
'./build',
|
'!**/*.{js,vue}',
|
||||||
'./dist',
|
'./build',
|
||||||
'./.output',
|
'./dist',
|
||||||
],
|
'./.output',
|
||||||
|
],
|
||||||
|
},
|
||||||
// tap: true,
|
// tap: true,
|
||||||
// verbose: true,
|
// verbose: true,
|
||||||
color: true
|
color: true
|
||||||
Loading…
Add table
Add a link
Reference in a new issue