docs: update deps

This commit is contained in:
bcakmakoglu
2022-06-10 15:54:40 +02:00
committed by Braks
parent fb8356e15a
commit 650606ec76
3 changed files with 269 additions and 36 deletions
+18 -5
View File
@@ -3,7 +3,10 @@
"baseUrl": ".",
"module": "ESNext",
"target": "es2017",
"lib": ["DOM", "ESNext"],
"lib": [
"DOM",
"ESNext"
],
"noEmit": true,
"declaration": false,
"strict": true,
@@ -15,13 +18,23 @@
"noUnusedLocals": false,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"types": ["vite/client"],
"types": [
"vite/client"
],
"jsx": "preserve",
"paths": {
"~/*": ["../../packages/vue-flow/src/*"]
"~/*": [
"../../packages/vue-flow/src/*"
]
}
},
"exclude": [
"node_modules", "dist"],
"references": [{ "path": "./tsconfig.node.json"}]
"node_modules",
"dist"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}