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

View File

@ -3,7 +3,7 @@ module.exports = {
parserOptions: {
ecmaVersion: "latest", // Allows the use of modern ECMAScript features
sourceType: "module", // Allows for the use of imports
project: "./tsconfig.json"
project: ["./tsconfig.json", "./tsconfig.test.json"]
},
extends: ["plugin:@typescript-eslint/recommended"], // Uses the linting rules from @typescript-eslint/eslint-plugin
env: {