test: add testing framework

This commit is contained in:
M. George Hansen 2020-05-30 11:41:23 -07:00
parent 36536fef33
commit 7e9bed9d56
12 changed files with 563 additions and 24 deletions

14
tsconfig-base.json Normal file
View file

@ -0,0 +1,14 @@
{
"compilerOptions": {
"esModuleInterop": true,
"module": "CommonJS",
"moduleResolution": "node",
"target": "ES2019",
"lib": ["ES2019"],
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true
}
}