{
  "compilerOptions": {
    "target": "es2020",
    "rootDir": "./",
    "outDir": "./dist",
    "moduleResolution": "node",  
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "skipLibCheck": true,
    "allowJs": true,
    "strict": true, 
    "paths": {
      "#config/*": [
        "./config/*"
      ],
      "#constants/*": [
        "./constants/*"
      ],
      "#controllers/*": [
        "./controllers/*"
      ],
      "#middlewares/*": [
        "./middlewares/*"
      ],
      "#models/*": [
        "./models/*"
      ],
      "#routes/*": [
        "./routes/*"
      ],
      "#utils/*": [
        "./utils/*"
      ],
      "#constant/*": [
        "./constant/*"
      ],
      "#home/*": [
        "./*"
      ]
    },

  }
}