Add tsconfig for tests and update eslint.

This commit is contained in:
2023-10-06 17:27:07 -04:00
parent a9b48a420f
commit 438ea90a46
3 changed files with 11 additions and 2 deletions

8
tsconfig.test.json Normal file
View File

@ -0,0 +1,8 @@
{
"extends": "@tsconfig/node-lts/tsconfig.json",
"compilerOptions": {
"outDir": "dist"
},
"include": ["test"],
"exclude": ["node_modules"]
}