Merge pull request #2393 from wbkd/refactor/tsconfig

Refactor: tsconfigs
This commit is contained in:
Moritz Klack
2022-08-31 14:54:02 +02:00
committed by GitHub
18 changed files with 133 additions and 42 deletions
+2 -1
View File
@@ -49,6 +49,7 @@
"postcss-cli": "^10.0.0",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-import": "^14.1.0",
"postcss-nested": "^5.0.6"
"postcss-nested": "^5.0.6",
"tsconfig": "*"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"extends": "tsconfig/react.json",
"display": "@reactflow/core",
"compilerOptions": {
"composite": true
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["**/node_modules", "dist/*"]
}