Reconfigure tsconfig and eslint

This commit is contained in:
Nick Alteen
2023-08-23 13:57:44 -04:00
parent 497bed758e
commit bd79503369
12 changed files with 195 additions and 521 deletions

9
.github/linters/tsconfig.json vendored Normal file
View File

@ -0,0 +1,9 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "../../tsconfig.json",
"compilerOptions": {
"noEmit": true
},
"include": ["../../__tests__/**/*", "../../src/**/*"],
"exclude": ["../../dist", "../../node_modules", "../../coverage", "*.json"]
}