From e3c379d069ffa9661561d25cdbf2f5894a2f8ee8 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Sat, 14 Feb 2026 08:58:38 -0800 Subject: Refactor: project structure, implement dependency injection, and align v2 UI with v1 --- frontend/tsconfig.app.json | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) (limited to 'frontend/tsconfig.app.json') diff --git a/frontend/tsconfig.app.json b/frontend/tsconfig.app.json index f03834c..3fcc60b 100644 --- a/frontend/tsconfig.app.json +++ b/frontend/tsconfig.app.json @@ -3,15 +3,9 @@ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", "target": "ES2022", "useDefineForClassFields": true, - "lib": [ - "ES2022", - "DOM", - "DOM.Iterable" - ], + "lib": ["ES2022", "DOM", "DOM.Iterable"], "module": "ESNext", - "types": [ - "vite/client" - ], + "types": ["vite/client"], "skipLibCheck": true, /* Bundler mode */ "moduleResolution": "bundler", @@ -28,11 +22,6 @@ "noFallthroughCasesInSwitch": true, "noUncheckedSideEffectImports": true }, - "include": [ - "src" - ], - "exclude": [ - "**/*.test.tsx", - "**/*.test.ts" - ] -} \ No newline at end of file + "include": ["src"], + "exclude": ["**/*.test.tsx", "**/*.test.ts"] +} -- cgit v1.2.3