Update linting and testing process

This commit is contained in:
Nick Alteen
2023-09-15 12:31:10 -04:00
parent 2e880934ac
commit ff98cfe892
18 changed files with 8133 additions and 111 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"]
}