{ "compilerOptions": { "baseUrl": ".", "paths": { "components/*": ["./src/components/*"], // OPTIONAL: config for resolving absolute paths "context/*": ["./src/context/*"] // OPTIONAL: config for resolving absolute paths }, "outDir": "dist", "module": "esnext", "lib": ["dom", "esnext"], "moduleResolution": "node", "jsx": "react", "sourceMap": true, "declaration": true, "esModuleInterop": true, "noImplicitReturns": true, "noImplicitThis": true, "noImplicitAny": true, "strictNullChecks": true, "suppressImplicitAnyIndexErrors": true, "allowSyntheticDefaultImports": true }, "include": ["src"], "exclude": ["node_modules", "dist", "example"] }