Skip to content

Commit

Permalink
fix(typedoc): fixed generation of documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
hakimio authored and willsoto committed Jan 11, 2019
1 parent e305299 commit e985153
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"build:lib": "ng build ng-chartist-lib",
"build": "yarn run build:lib && yarn run build:demo",
"test": "ng test ng-chartist-lib --watch=false --browsers=ChromeHeadless",
"typedoc": "typedoc --options typedoc.json projects/ng-chartist-lib/src/lib/*.ts",
"typedoc": "typedoc --exclude \"**/*+(.spec.ts|.json)\" projects/ng-chartist-lib/src/lib/",
"gh-pages": "git checkout gh-pages && git merge master && yarn run build && yarn run typedoc && git add . && git commit -m 'chore(*): build demo and docs' && git push && git checkout master",
"release": "standard-version --sign && git push --follow-tags origin master && yarn run build && yarn publish dist/ng-chartist-lib",
"postrelease": "yarn run gh-pages",
Expand Down
14 changes: 14 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,19 @@
"ng-chartist": ["dist/ng-chartist-lib"],
"ng-chartist/*": ["dist/ng-chartist-lib/*"]
}
},
"typedocOptions": {
"mode": "file",
"out": "docs",
"ignoreCompilerErrors": "true",
"experimentalDecorators": "true",
"emitDecoratorMetadata": "true",
"target": "ES5",
"moduleResolution": "node",
"preserveConstEnums": "true",
"stripInternal": "true",
"suppressExcessPropertyErrors": "true",
"suppressImplicitAnyIndexErrors": "true",
"module": "commonjs"
}
}
14 changes: 0 additions & 14 deletions typedoc.json

This file was deleted.

0 comments on commit e985153

Please sign in to comment.