g6/tsconfig.json

37 lines
816 B
JSON
Raw Normal View History

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",
"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"],
2019-12-10 17:54:47 +08:00
"baseUrl": ".",
"paths": {
"@g6/*": ["./src/*"],
"@g6/types": ["./types"]
},
"plugins": [
{
"transform": "typescript-transform-paths",
"afterDeclarations": true
}
]
2019-12-02 19:58:02 +08:00
},
2020-01-03 17:31:09 +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"
}
}