test: add testing framework

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

View file

@ -1,18 +1,7 @@
{
"extends": "./tsconfig-base.json",
"compilerOptions": {
"sourceMap": true,
"declaration": true,
"esModuleInterop": true,
"module": "CommonJS",
"moduleResolution": "node",
"target": "ES2019",
"lib": ["ES2019"],
"outDir": "./dist",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true
"outDir": "./dist"
},
"include": ["src/**/*.ts"]
}