docs: move typedoc to root deps

This commit is contained in:
braks
2022-10-08 23:25:34 +02:00
committed by Braks
parent acc0526fdb
commit 6aaef2743d
7 changed files with 25 additions and 17 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "es2017",
"lib": ["DOM", "ESNext"],
"strict": true,
"esModuleInterop": true,
"incremental": false,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": false,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"~/*": ["packages/vue-flow/src/*"]
}
},
"include": ["packages/vue-flow", "packages/additional-components"],
"exclude": ["node_modules"]
}