Skip to content

Commit

Permalink
chore: nyc + mochaExplorer
Browse files Browse the repository at this point in the history
  • Loading branch information
jjeff committed Aug 25, 2024
1 parent 0cd85a5 commit d33f3af
Show file tree
Hide file tree
Showing 6 changed files with 3,433 additions and 110 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
node_modules
dist
env.*
env.*
.nyc_output
/coverage
17 changes: 17 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"include": [
"src/**/*.ts"
],
"exclude": [
"test/**/*.test.ts"
],
"reporter": [
"html",
"text",
"text-summary"
],
"sourceMap": true,
"instrument": true
}
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
"eslint.format.enable": true,
"eslint.codeActionsOnSave.mode": "all",
"typescript.preferences.importModuleSpecifier": "relative",
"mochaExplorer.files": "test/**/*.test.?s",
"mochaExplorer.require": "ts-node/register",
"cSpell.words": [
"fullscreenable",
"maximizable",
Expand Down
Loading

0 comments on commit d33f3af

Please sign in to comment.