Merge pull request #4353 from xyflow/fix/react-ts-dist

fix(react): add compiler options outDir
This commit is contained in:
Moritz Klack
2024-06-06 17:25:57 +02:00
committed by GitHub

View File

@@ -2,5 +2,8 @@
"extends": "@xyflow/tsconfig/react.json",
"display": "@xyflow/react",
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["node_modules", "dist"]
"exclude": ["node_modules", "dist"],
"compilerOptions": {
"outDir": "dist"
}
}