-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove extraneous files; switch to yarn * remove more stuff * upgrade all dependencies * fix broken tests * various updates * deep tests for everything * fix actions * try to fix CI linting * try to fix CI linting * try to fix CI linting * add some more types * remove skipLibCheck * change TS include * try to fix CI linting * try to fix CI linting * remove node v12 as an option * reinstate node v12 * reinstate node v12, but properly this time * node v12 is too old for some dependency, so leave that out, but add v18 * cleanup codeQL yml
- Loading branch information
Showing
19 changed files
with
6,356 additions
and
20,428 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
/** @type {import('ts-jest').JestConfigWithTsJest} */ | ||
module.exports = { | ||
preset: 'ts-jest', | ||
testEnvironment: 'jest-environment-jsdom', | ||
testMatch: ['**/test/**/*.spec.ts'], | ||
collectCoverageFrom: ['<rootDir>/src/**/*.ts', '!<rootDir>/src/types/**/*.ts'], | ||
globals: { | ||
'ts-jest': { | ||
diagnostics: false, | ||
isolatedModules: true, | ||
transform: { | ||
'^.+\\.tsx?$': ['ts-jest', { diagnostics: false, isolatedModules: true }], | ||
}, | ||
}, | ||
} |
Oops, something went wrong.