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

Commit 2bcf6cf

Browse files
committed
first implementation with only noop + update tooling
1 parent 3b03e8e commit 2bcf6cf

File tree

14 files changed

+1913
-154
lines changed

14 files changed

+1913
-154
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ typedoc/
55
dist/
66
lib/
77
.DS_Store
8+
.nyc_output

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ npm-debug.log
33
src/
44
typedoc/
55
coverage/
6+
.nyc_output

.nycrc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"lines": 0,
3+
"statements": 0,
4+
"functions": 0,
5+
"branches": 0,
6+
"extension": [
7+
".ts"
8+
],
9+
"include": [
10+
"src/**/*.ts"
11+
],
12+
"exclude": [
13+
"src/**/*.d.ts",
14+
"src/test/**/*.ts"
15+
],
16+
"reporter": [
17+
"lcov",
18+
"text"
19+
],
20+
"all": true
21+
}

0 commit comments

Comments
 (0)