mirror of
https://gitee.com/antv/g6.git
synced 2024-11-30 10:48:24 +08:00
29 lines
653 B
JSON
29 lines
653 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "./",
|
|
"module": "esnext",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"target": "es5",
|
|
"outDir": "lib",
|
|
"jsx": "react",
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["esnext", "dom"],
|
|
"types": ["jest"]
|
|
},
|
|
"include": ["src"],
|
|
"typedocOptions": {
|
|
"mode": "modules",
|
|
"out": "docs/api-ts",
|
|
"excludePrivate": true,
|
|
"excludeProtected": true,
|
|
"excludeExternals": true,
|
|
"plugin": "typedoc-plugin-markdown",
|
|
"theme": "docusaurus2"
|
|
}
|
|
}
|