From 1c64996a783836dbf7f745b2da29840816111637 Mon Sep 17 00:00:00 2001 From: gitadmin Date: Sat, 2 May 2026 13:07:42 +0000 Subject: [PATCH] feat: add tsconfig.json --- tsconfig.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..1b6ec0c --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "ESNext", + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "noEmit": true, + "strict": false, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true + }, + "include": ["./**/*.ts"], + "exclude": ["node_modules"] +}