{ "compilerOptions": { // File Layout // "rootDir": "./src", // "outDir": "./dist", // Environment Settings "module": "nodenext", "target": "esnext", "moduleResolution": "nodenext", // <-- add this "types": ["node"], // Node types "lib": ["esnext"], // Modern JS libs "esModuleInterop": true, // <-- add this for axios & other CJS imports // Other Outputs "sourceMap": true, "declaration": true, "declarationMap": true, // Stricter Typechecking Options "noUncheckedIndexedAccess": true, "exactOptionalPropertyTypes": true, // Recommended Options "strict": true, "jsx": "react-jsx", "verbatimModuleSyntax": true, "isolatedModules": true, "noUncheckedSideEffectImports": true, "moduleDetection": "force", "skipLibCheck": true }, "include": ["**/*.ts", "**/*.tsx"] }