Skip to content

Commit be5226a

Browse files
authored
chore: patch for downstream to fix tsc issues in analytics workspace (#1616)
chore: patches for downstream to fix tsc issues in analytics workspace Assisted-by: cursor Signed-off-by: Nick Boldt <[email protected]>
1 parent 12a67bc commit be5226a

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
diff --git a/workspaces/analytics/tsconfig.json b/workspaces/analytics/tsconfig.json
2+
index 1a80b35a7..f47231b9f 100644
3+
--- a/workspaces/analytics/tsconfig.json
4+
+++ b/workspaces/analytics/tsconfig.json
5+
@@ -1,13 +1,13 @@
6+
{
7+
"extends": "@backstage/cli/config/tsconfig.json",
8+
- "include": [
9+
- "packages/*/src",
10+
- "plugins/*/src",
11+
- "plugins/*/dev",
12+
- "plugins/*/migrations"
13+
+ "include": ["packages/*/src", "plugins/*/src", "plugins/*/migrations"],
14+
+ "exclude": [
15+
+ "node_modules",
16+
+ "**/*.test.ts",
17+
+ "**/*.test.tsx",
18+
+ "**/setupTests.ts",
19+
+ "**/dev/**"
20+
],
21+
- "files": ["node_modules/@backstage/cli/asset-types/asset-types.d.ts"],
22+
- "exclude": ["node_modules"],
23+
"compilerOptions": {
24+
"outDir": "dist-types",
25+
"rootDir": ".",
26+
@@ -15,6 +15,6 @@
27+
"target": "ES2022",
28+
"useUnknownInCatchVariables": false,
29+
"jsx": "react-jsx",
30+
- "types": ["node"]
31+
+ "types": []
32+
}
33+
}

0 commit comments

Comments
 (0)