From a819f993860ac04b82866b26173e102203589f9d Mon Sep 17 00:00:00 2001 From: toir-bot Date: Tue, 14 Apr 2026 07:01:03 +0000 Subject: [PATCH] chore: initial project scaffold: frontend/tsconfig.json --- frontend/tsconfig.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 frontend/tsconfig.json diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json new file mode 100644 index 0000000..23a719f --- /dev/null +++ b/frontend/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "target": "ES2023", + "lib": ["ES2023", "DOM", "DOM.Iterable"], + "module": "ESNext", + "moduleResolution": "bundler", + "jsx": "react-jsx", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true + }, + "include": ["src"] +}