Skip to content

Commit bf51981

Browse files
authored
Update node and deps (#20)
1 parent 4e8ecc9 commit bf51981

15 files changed

Lines changed: 63205 additions & 7613 deletions

File tree

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
/node_modules/
1+
**/node_modules/
22

33
.idea/
4-
.vscode
4+
.vscode/
55

66
logs
77
*.log
@@ -14,4 +14,4 @@ yarn-error.log*
1414
*.tgz
1515
.env
1616

17-
lib/**/*
17+
*/lib/

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
engine-strict=true

jest.config.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/**
2+
* For a detailed explanation regarding each configuration property, visit:
3+
* https://jestjs.io/docs/configuration
4+
*/
5+
6+
/** @type {import('ts-jest').JestConfigWithTsJest} **/
7+
module.exports = {
8+
clearMocks: true,
9+
testEnvironment: "node",
10+
testMatch: [
11+
"**/*.test.ts"
12+
],
13+
transform: {
14+
"^.+.ts$": ["ts-jest", {}],
15+
},
16+
};

0 commit comments

Comments
 (0)