Move ava config out of package.json

This commit is contained in:
Michael B. Gale
2026-03-12 18:43:14 +00:00
parent 1dbebad653
commit c183dca871
3 changed files with 9 additions and 8 deletions

8
ava.config.mjs Normal file
View File

@@ -0,0 +1,8 @@
export default {
typescript: {
rewritePaths: {
"src/": "build/",
},
compile: false,
},
};

View File

@@ -19,6 +19,7 @@ export default [
"src/testdata/**/*",
"tests/**/*",
"build.mjs",
"ava.config.mjs",
"eslint.config.mjs",
".github/**/*",
"pr-checks/**/*",

View File

@@ -14,14 +14,6 @@
"test-debug": "npm run test -- --timeout=20m",
"transpile": "tsc --build --verbose"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "build/"
},
"compile": false
}
},
"license": "MIT",
"dependencies": {
"@actions/artifact": "^5.0.3",