belgattitude/httpx

View on GitHub
examples/nextjs-app/tsconfig.no-paths.json

Summary

Maintainability
Test Coverage
{
  "$schema": "https://json.schemastore.org/tsconfig",
  "extends": "./tsconfig.json",
  "compilerOptions": {
    "paths": {
      "@/server": ["./server/index"],
      "@/lib": ["./lib/index"]
    },
    "allowJs": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true,
    "noEmit": true,
    "esModuleInterop": true,
    "resolveJsonModule": true,
    "isolatedModules": true
  }
}