{
  "compilerOptions": {
    // "module": "commonjs", // "nodenext",
    // "moduleResolution": "node", // "nodenext",
    "module": "Node16",
    "moduleResolution": "Node16",
    "resolvePackageJsonExports": true,
    "esModuleInterop": true,
    "isolatedModules": false, // "isolatedModules": true, (defini un archivo como independiente)
    "declaration": true,
    "removeComments": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "allowSyntheticDefaultImports": true,
    "target": "ES2023",
    "sourceMap": true,
    "outDir": "./dist",
    "paths": {
      "@/*": ["./src/*"]
    },
    // "paths": {
    //   "src/*": ["./src/*"]  // reemplaza el baseUrl: "./" V7.0 Typescript
    // },
    // "baseUrl": "./",
    "incremental": true,
    "skipLibCheck": true,
    "strictNullChecks": true,
    "forceConsistentCasingInFileNames": true,
    "noImplicitAny": false,
    "strictBindCallApply": false,
    "noFallthroughCasesInSwitch": false
  }
}
