From 778597c4fbfdbde0ed958a639b0e66e4681e47fc Mon Sep 17 00:00:00 2001 From: GigiaJ Date: Mon, 24 Nov 2025 02:33:29 -0600 Subject: [PATCH] Add tsconfig --- 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 0000000..32b43bc --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "strict": true, + "outDir": "bin", + "target": "es2020", + "module": "commonjs", + "moduleResolution": "node", + "sourceMap": true, + "experimentalDecorators": true, + "pretty": true, + "noFallthroughCasesInSwitch": true, + "noImplicitReturns": true, + "forceConsistentCasingInFileNames": true, + "skipLibCheck": true + }, + "files": [ + "index.ts" + ] +} \ No newline at end of file