From 165e5fb1ac2154eb96a610d2a20b3efadec1f543 Mon Sep 17 00:00:00 2001 From: One Dionys <161098412+onedionys@users.noreply.github.com> Date: Mon, 25 Mar 2024 10:34:23 +0700 Subject: [PATCH] chore: built-in configuration default this package --- jest.config.js | 7 +++++++ tsconfig.json | 9 +++++++++ 2 files changed, 16 insertions(+) create mode 100644 jest.config.js create mode 100644 tsconfig.json 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