chore(docs): update typedocs config to use vueflow pkg as entry

This commit is contained in:
braks
2022-10-10 21:33:44 +02:00
committed by Braks
parent 4587540ef3
commit 028d79306c
5 changed files with 17 additions and 14 deletions
+10 -6
View File
@@ -3,7 +3,10 @@
"baseUrl": ".",
"module": "ESNext",
"target": "es2017",
"lib": ["DOM", "ESNext"],
"lib": [
"DOM",
"ESNext"
],
"strict": true,
"esModuleInterop": true,
"incremental": false,
@@ -13,10 +16,11 @@
"noUnusedLocals": false,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"~/*": ["../packages/vue-flow/src/*"]
}
},
"include": ["../packages/vue-flow", "../packages/additional-components"],
"exclude": ["node_modules"]
"include": [
"../packages/vue-flow"
],
"exclude": [
"node_modules"
]
}