30 lines
809 B
JSON
30 lines
809 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2015",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"sourceMap": false,
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"strictNullChecks": false,
|
|
"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"
|
|
}
|
|
}
|