forked from angular-ui/ui-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedoc.json
33 lines (33 loc) · 893 Bytes
/
typedoc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"compilerOptions": {
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"target": "es5",
"allowSyntheticDefaultImports": true,
"outDir": "build/es5",
"declaration": false,
"sourceMap": false,
"importHelpers": true
},
"typedoc": {
"publishDir": "_ng1_docs",
"include": [
{
"package": "@uirouter/core",
"repo": "https://github.com/ui-router/core.git",
"entry": "src/index.ts"
}
],
"generateOptions": {
"tsconfig": "typedoc.json",
"readme": "DOCS.md",
"name": "@uirouter/angularjs",
"theme": "node_modules/ui-router-typedoc-themes/bin/default",
"out": "_doc",
"internal-aliases": "internal,publicapi,publicapi",
"external-aliases": "external,internalapi",
"navigation-label-globals": "@uirouter/angularjs"
}
}
}