From 37eeffd8b05d9dfa42d7ee4eb7467191cc93cb06 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sat, 7 Oct 2023 05:12:38 +0300 Subject: [PATCH] Create tsconfig.json --- tsconfig.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..24e7b3d5 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "strict": true, + "module": "commonjs", + "moduleResolution": "node", + "target": "es2020", + "esModuleInterop": true, + "declaration": true, + "typeRoots": [ + "./node_modules/@types", + "./src/types" + ], + "allowJs": true + }, + "ts-node": { + "esm": true, + "transpileOnly": true + } +} \ No newline at end of file