summaryrefslogtreecommitdiffstats
path: root/.nycrc
diff options
context:
space:
mode:
Diffstat (limited to '.nycrc')
-rw-r--r--.nycrc20
1 files changed, 20 insertions, 0 deletions
diff --git a/.nycrc b/.nycrc
index 3c9559c..554cb69 100644
--- a/.nycrc
+++ b/.nycrc
@@ -1,5 +1,25 @@
{
"extends": "@istanbuljs/nyc-config-typescript",
+ "cache": false,
+ "cwd": "./",
+ "exclude": [
+ "**/**.test.js"
+ ],
+ "extension": [
+ ".ts",
+ ".tsx"
+ ],
+ "hookRequire": true,
+ "hookRunInContext": true,
+ "hookRunInThisContext": true,
+ "instrument": true,
+ "reporter": ["json", "text"],
+ "recursive": true,
+ "require": [
+ "ts-node/register",
+ "source-map-support/register"
+ ],
+ "sourceMap": true,
"all": true,
"include": [ "src/Lang" ]
}