mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-28 06:20:12 +00:00
* 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>
28 lines
574 B
JSON
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)?$"
|
|
}
|
|
}
|