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