From f8d8795bbba2f5b459cde49fbd73759c1f231a24 Mon Sep 17 00:00:00 2001 From: notshop Date: Sun, 26 Apr 2026 16:36:22 +0000 Subject: [PATCH] chore: add tsconfig.json --- tsconfig.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..5e44158 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "target": "ES2022", + "lib": ["ES2022", "DOM", "DOM.Iterable"], + "module": "ESNext", + "moduleResolution": "Bundler", + "jsx": "react-jsx", + "strict": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowImportingTsExtensions": true, + "noEmit": true, + "baseUrl": ".", + "paths": { + "@/*": ["client/src/*"], + "@shared/*": ["shared/*"] + } + }, + "include": ["client/src", "shared"], + "exclude": ["node_modules", "dist"] +}