diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000..9c9a12a --- /dev/null +++ b/jest.config.js @@ -0,0 +1,7 @@ +// jest.config.js + +module.exports = { + preset: 'ts-jest', + testEnvironment: 'node', + }; + \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..1e70a26 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "commonjs", + "strict": true, + "esModuleInterop": true + } + } + \ No newline at end of file