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
+4 -1
View File
@@ -2,5 +2,8 @@
"extends": "@xyflow/tsconfig/react.json", "extends": "@xyflow/tsconfig/react.json",
"display": "@xyflow/react", "display": "@xyflow/react",
"include": ["**/*.ts", "**/*.tsx"], "include": ["**/*.ts", "**/*.tsx"],
"exclude": ["node_modules", "dist"] "exclude": ["node_modules", "dist"],
"compilerOptions": {
"outDir": "dist"
}
} }