Files
vue-flow/tsconfig.json
Braks 9307c9066a feat: script setup style
* Replace jsx with script setup syntax
* Simplify logic and make it more "composable"
    * Move Zoom functions to useZoom composable
* Update eslint config & tsconfig
2021-10-20 22:39:54 +02:00

37 lines
648 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "es2020",
"lib": [
"DOM",
"ESNext"
],
"strict": true,
"esModuleInterop": true,
"incremental": false,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"jsxFactory": "h",
"types": [
"vite/client",
"@types/node"
],
"paths": {
"~/*": [
"src/*"
]
}
},
"exclude": [
"node_modules",
"build",
"dist"
]
}