Release package version 1.0.0
All checks were successful
CI / build (push) Successful in 33s

Added first files
This commit is contained in:
Andrey Kernichniy 2026-03-13 00:32:06 +07:00
parent 3be22f1023
commit aad2fe13e7
29 changed files with 5020 additions and 8 deletions

13
jest.config.js Normal file
View file

@ -0,0 +1,13 @@
/** @type {import('ts-jest').JestConfigWithTsJest} **/
// eslint-disable-next-line no-undef
module.exports = {
testEnvironment: "node",
transform: {
"^.+.ts?$": [
"ts-jest",
{
tsconfig: "tsconfig.test.json",
},
],
},
};