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
+2 -1
View File
@@ -43,6 +43,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": "*"
}
}
+12
View File
@@ -0,0 +1,12 @@
{
"extends": "tsconfig/react.json",
"display": "reactflow",
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["**/node_modules", "dist/*"],
"references": [
{ "path": "../background/tsconfig.json" },
{ "path": "../controls/tsconfig.json" },
{ "path": "../core/tsconfig.json" },
{ "path": "../minimap/tsconfig.json" }
]
}