Skip to content

Commit

Permalink
Fix rollup deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
puckey committed Aug 15, 2023
1 parent d7cca5c commit 636eb88
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,22 +77,24 @@
"typescript": "^5.1.6"
},
"jest": {
"testURL": "http://localhost",
"testEnvironmentOptions": {
"url": "http://localhost"
},
"moduleFileExtensions": [
"js",
"ts"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/test/**/*.test.ts"
],
"testPathIgnorePatterns": [
"<rootDir>/test/data.ts"
],
"preset": "ts-jest"
"preset": "ts-jest",
"transform": {
"^.+\\.tsx?$": ["ts-jest", {
"tsconfig": "tsconfig.json"
}]
}
}
}

0 comments on commit 636eb88

Please sign in to comment.