From b49a45dc2dc5f1ae6fbaaefc5dca59f9e324626f Mon Sep 17 00:00:00 2001 From: Mr Fidal <154952367+mr-fidal@users.noreply.github.com> Date: Tue, 9 Jan 2024 16:30:43 +0530 Subject: [PATCH] Create tsconfig.json --- tsconfig.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..e84e61f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "commonjs", + "strict": true, + "esModuleInterop": true + }, + "include": ["src/**/*.ts"], + "exclude": ["node_modules"] +}