{
  "extends": "@tsconfig/node-lts/tsconfig.json",
  "compilerOptions": {
    // Generate d.ts files
    "declaration": true,
    // Types should go into this directory.
    // Removing this would place the .d.ts files
    // next to the .js files
    "outDir": "dist",
    // go to js file when using IDE functions like
    // "Go to Definition" in VSCode
    "declarationMap": true
  },
  "include": ["src"],
  "exclude": ["node_modules"]
}
