f95e9a7d37
- This will need to be separated and configured accordingly - This was a quick spin up, using jest as a library to implement some coverage - Further things to be refined - mocks, more coverage, better configuration, clean up methods, improve env vars
30 lines
565 B
JSON
30 lines
565 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"types": [
|
|
"jest",
|
|
"node",
|
|
]
|
|
},
|
|
"typedocOptions": {
|
|
"entryPoints": [
|
|
"src/index.ts"
|
|
],
|
|
"out": "docs"
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"examples",
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"tests",
|
|
"./tests/*/*.tsx",
|
|
"./tests/*/*.ts"
|
|
]
|
|
} |