{
  "extends": "./tsconfig.json",
  "compilerOptions": {
    // Sets the root directory of input files. All other paths are relative to this.
    "rootDir": "./src",
    // Provides a base directory for non-relative module names. All paths will be resolved relative to this baseUrl.
    "baseUrl": "./",
    "plugins": [
      // Transform paths in output .js files
      { "transform": "typescript-transform-paths" },

      // Transform paths in output .d.ts files (Include this line if you output declarations files)
      { "transform": "typescript-transform-paths", "afterDeclarations": true }
    ]
  },
  "exclude": ["test", "./jest.config.ts"]
}
