2019-12-02 19:58:02 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-01-02 21:04:40 +08:00
|
|
|
"rootDir": "./",
|
2019-12-19 20:13:08 +08:00
|
|
|
"module": "esnext",
|
2019-12-02 19:58:02 +08:00
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"target": "es5",
|
2019-12-31 12:01:43 +08:00
|
|
|
"outDir": "lib",
|
2020-01-03 17:46:29 +08:00
|
|
|
"jsx": "react",
|
2019-12-02 19:58:02 +08:00
|
|
|
"importHelpers": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2019-12-05 19:49:11 +08:00
|
|
|
"resolveJsonModule": true,
|
2019-12-02 19:58:02 +08:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": ["esnext", "dom"],
|
2020-02-06 22:27:41 +08:00
|
|
|
"types": ["jest"]
|
2019-12-02 19:58:02 +08:00
|
|
|
},
|
2020-02-14 10:10:54 +08:00
|
|
|
"include": ["src"],
|
2019-12-02 19:58:02 +08:00
|
|
|
"typedocOptions": {
|
|
|
|
"mode": "modules",
|
2019-12-17 14:02:09 +08:00
|
|
|
"out": "docs/api-ts",
|
2019-12-02 19:58:02 +08:00
|
|
|
"excludePrivate": true,
|
|
|
|
"excludeProtected": true,
|
|
|
|
"excludeExternals": true,
|
|
|
|
"plugin": "typedoc-plugin-markdown",
|
|
|
|
"theme": "docusaurus2"
|
|
|
|
}
|
|
|
|
}
|