nodeguy/tsconfig.json
Atul R 392aa3cd4c
Adds automatic docs for now (#308)
* adds basic typedoc

* backup

* Adds all docs to source code

* Adds autogenerated docs

* Fixes doc links

* Updates docs
2019-12-29 00:42:06 +05:30

29 lines
774 B
JSON

{
"compilerOptions": {
"target": "ES2015",
"module": "commonjs",
"declaration": true,
"sourceMap": false,
"outDir": "./dist",
"strict": true,
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true
},
"include": ["src"],
"typedocOptions": {
"mode": "file",
"out": "website/docs/api/generated",
"plugin": ["typedoc-plugin-markdown"],
"exclude": ["demo.ts"],
"excludeExternals": true,
"excludeNotExported": true,
"excludePrivate": true,
"excludeProtected": true,
"includeDeclarations": true,
"hideBreadcrumbs": true,
"hideSources": true,
"theme": "docusaurus2"
}
}