feat(tooling): add tsconfig to tooling pkgs

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
braks
2023-02-22 20:20:11 +01:00
committed by Braks
parent 45cbdbfd27
commit 2a6077ed9f
30 changed files with 198 additions and 273 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"compilerOptions": {
"module": "ESNext",
"target": "es2017",
"lib": [
"DOM",
"ESNext"
],
"preserveSymlinks": true,
"strict": true,
"esModuleInterop": true,
"incremental": false,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": false,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"emitDeclarationOnly": true,
"jsx": "preserve",
"types": []
},
"exclude": [
"node_modules",
"dist"
]
}
+6
View File
@@ -0,0 +1,6 @@
{
"name": "@vue-flow/tsconfig",
"version": "0.0.0",
"private": true,
"license": "MIT"
}