Files
context-mod/tsconfig.json
FoxxMD 8991797d35 feat(testing): WIP added initial testing framework and some util tests
Using mocha, chai, and nyc

* tests for parsing string for numeric value comparison
* tests for parsing string for durations and duration comparisons
* tests for parsing reddit entity (subreddit/user) from string
* tests for parsing submission/comment id from reddit permalink string
* tests for initial config parsing/merging

Still can't get nyc to get coverage for everything in src using "all" -- causes reporting to show 0 for everything??
2022-03-09 10:59:43 -05:00

22 lines
365 B
JSON

{
"extends": "@tsconfig/node14/tsconfig.json",
"compilerOptions": {
"sourceMap": true,
"resolveJsonModule": true,
"typeRoots": [
"./node_modules/@types",
"./src/Web/types",
"./src/Common/typings"
]
},
"include": [
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules",
"coverage",
"tests/*.ts"
]
}