'Sass doc is giving me duplicate results

My output tree is showing duplicates and I can't figure out why. This is prototype angular project with this file tree. I can't figure out why.

src

  • app
    • components
  • scss styles.scss

Here's my out put tree enter image description here

My sassdoc.json config

{
  "basePath": "https://mjhandy.github.io/AngularBoilerPlate/docs/sass/",
  "package": {
    "title": "Angular Boilerplate",
    "name": "ngBoilerplate",    
    "description": "My boilerplate for basic, resuable, Angular components"
  },  
  "dest": "./docs/sassdoc",
  "excliude": [
    "./src/scss/_mixins.scss"
  ],
  "groups" : {
    "structure" :       "Structure",
    "component" :       "Component",
    "helpers" :         "Helpers",
    "global" :          "Global Items",
    "mixins" :          "Mixins"
  },
  "options": {
    "display": {
      "watermark":  false
    }
  }

}

My run commands :

sassdoc ./src/**/* -c sassdoc.json


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source