mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
19 lines
444 B
JavaScript
19 lines
444 B
JavaScript
export default () => {
|
|
return {
|
|
require: [
|
|
'dotenv/config',
|
|
'esm',
|
|
'tsconfig-paths/register'
|
|
],
|
|
// https://github.com/avajs/ava/blob/main/docs/recipes/watch-mode.md
|
|
ignoredByWatcher: [
|
|
'!**/*.{js,vue}',
|
|
'./build',
|
|
'./dist',
|
|
'./.output',
|
|
],
|
|
// tap: true,
|
|
// verbose: true,
|
|
color: true
|
|
}
|
|
}
|