Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Commit

Permalink
first implementation with only noop + update tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
rochdev committed Dec 12, 2018
1 parent 3b03e8e commit 2bcf6cf
Show file tree
Hide file tree
Showing 14 changed files with 1,913 additions and 154 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ typedoc/
dist/
lib/
.DS_Store
.nyc_output
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ npm-debug.log
src/
typedoc/
coverage/
.nyc_output
21 changes: 21 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"lines": 0,
"statements": 0,
"functions": 0,
"branches": 0,
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.d.ts",
"src/test/**/*.ts"
],
"reporter": [
"lcov",
"text"
],
"all": true
}
Loading

0 comments on commit 2bcf6cf

Please sign in to comment.