refactor(tsconfigs): extend fomr base tsconfig, add tsconfig for ervery package

This commit is contained in:
moklick
2022-08-30 23:06:36 +02:00
parent 43e4842cd6
commit 82566e0b69
18 changed files with 133 additions and 42 deletions
+3
View File
@@ -31,6 +31,9 @@
"@reactflow/core": "workspace:*",
"classcat": "^5.0.3"
},
"devDependencies": {
"tsconfig": "*"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
+10
View File
@@ -0,0 +1,10 @@
{
"extends": "tsconfig/react.json",
"display": "@reactflow/background",
"compilerOptions": {
"composite": true
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["**/node_modules", "dist/*"],
"references": [{ "path": "../core/tsconfig.json" }]
}