mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-21 02:40:08 +00:00
25 lines
556 B
JSON
25 lines
556 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)?$"
|
|
}
|
|
}
|