Skip to content

Commit

Permalink
Updated packages and tuned jest, tsc configs
Browse files Browse the repository at this point in the history
  • Loading branch information
vpmedia committed Oct 19, 2023
1 parent 3e6702c commit 29eefd6
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 43 deletions.
105 changes: 66 additions & 39 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"type": "module",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.6",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
Expand All @@ -33,7 +34,7 @@
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.1",
"lint-staged": "^15.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
Expand All @@ -51,7 +52,7 @@
"not op_mini all"
],
"engines": {
"npm": ">=9.0.0",
"node": ">=19.0.0"
"npm": ">=8.0.0",
"node": ">=18.0.0"
}
}
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,5 +109,6 @@
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"include": ["./src/**/*", "./typedefs/**/*"]
"include": ["./src/**/*", "./typedefs/**/*"],
"exclude": ["./src/**/*.test.js"]
}

0 comments on commit 29eefd6

Please sign in to comment.