From 0ea31947adcdf599f10dfb82a57b0e7fd9164295 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Wed, 3 Jun 2026 14:56:18 -0700 Subject: migrate project from CRA to vite --- tsconfig.json | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json index 67c0712..6bf7cdb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,26 +1,20 @@ { "compilerOptions": { - "target": "es5", - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], "allowJs": true, - "skipLibCheck": true, - "esModuleInterop": true, "allowSyntheticDefaultImports": true, - "strict": true, + "esModuleInterop": true, "forceConsistentCasingInFileNames": true, - "noFallthroughCasesInSwitch": true, + "isolatedModules": true, + "jsx": "react-jsx", + "lib": ["dom", "dom.iterable", "esnext"], "module": "esnext", "moduleResolution": "node", - "resolveJsonModule": true, - "isolatedModules": true, "noEmit": true, - "jsx": "react-jsx" + "noFallthroughCasesInSwitch": true, + "resolveJsonModule": true, + "skipLibCheck": true, + "strict": true, + "target": "esnext" }, - "include": [ - "src" -, "server/data", "server/songs.ts" ] + "include": ["src", "server/data", "server/songs.ts"] } -- cgit v1.2.3