Files
discordeno/jsdoc2md.json
deepsarda fd94ad6847 Discordeno Documentation (#2673)
* Add git hooks

* Add documentation generatation

* Change Documentation Engine

* Add documentation

* Remove autogenerated docs

* combine lint staged action into one

* style: fix

Co-authored-by: H01001000 <heiheiho000@gmail.com>
2022-12-02 23:40:38 +08:00

28 lines
574 B
JSON

{
"babel": {
"babelrc": false,
"extensions": ["ts", "tsx"],
"ignore": ["**/*.(test|spec).ts"],
"plugins": [
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": true
}
}
],
"@babel/preset-typescript"
]
},
"plugins": ["plugins/markdown", "node_modules/jsdoc-babel"],
"source": {
"excludePattern": ".+\\.(test|spec).ts",
"includePattern": ".+\\.ts(doc|x)?$"
}
}