From 9f88284bdff6ef7002b56f786953eb1e999a5549 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=85=8B=E6=B4=9B=E4=BC=8A=E5=B0=94?= Date: Fri, 1 Nov 2024 14:31:23 +0800 Subject: [PATCH] feat: first commit --- tsconfig.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..dd1f50f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "ES2022", + "moduleResolution": "Bundler", + "esModuleInterop": true, + "noEmit": true, + "allowImportingTsExtensions": true, + "noImplicitAny": false + }, + "include": [ + "src/**/*.ts", + ], + "ts-node": { + "esm": true + } +} \ No newline at end of file