diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 942f6ad..deefd85 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -1,10 +1,16 @@ { - "extends": "../tsconfig.json", "compilerOptions": { + "target": "ESNext", + "module": "ESNext", + "moduleResolution": "bundler", + "strict": true, "jsx": "react-jsx", "lib": ["ES2020", "DOM", "DOM.Iterable"], - "types": ["vite/client"] + "types": ["vite/client"], + "noEmit": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true }, - "include": ["src"], - "references": [{ "path": "../tsconfig.json" }] + "include": ["src/**/*", "vite.config.ts"] }