Skip to content

Commit f446c6f

Browse files
author
James
committed
initial commit
0 parents  commit f446c6f

9 files changed

+8191
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# dependencies
2+
node_modules/
3+
4+
dist/

.prettierrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"semi": false
3+
}

jest.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
testEnvironment: "node",
3+
preset: "ts-jest",
4+
roots: ["<rootDir>/src"],
5+
}

0 commit comments

Comments
 (0)