Skip to content

Commit 2ec61ab

Browse files
fix: fixed incorrect TS target for react
1 parent d1918db commit 2ec61ab

File tree

4 files changed

+10
-50
lines changed

4 files changed

+10
-50
lines changed

apps/api-harmonization/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
"@o2s/integrations.mocked": "*",
3030
"@o2s/configs.integrations": "*",
3131
"@o2s/telemetry": "*",
32-
"@dxp/utils.api-harmonization": "*",
32+
"@o2s/utils.api-harmonization": "*",
33+
"@o2s/utils.frontend": "*",
3334
"@o2s/utils.logger": "*",
3435
"compression": "^1.8.0",
3536
"cookie": "^1.0.2",

apps/frontend/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
"@o2s/framework": "*",
1717
"@o2s/ui": "*",
1818
"@o2s/integrations.mocked": "*",
19+
"@o2s/utils.api-harmonization": "*",
20+
"@o2s/utils.frontend": "*",
1921
"class-variance-authority": "^0.7.1",
2022
"date-fns": "^4.1.0",
2123
"dotenv-cli": "^8.0.0",

package-lock.json

Lines changed: 4 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/utils/frontend/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"extends": "@o2s/typescript-config/ui.json",
33
"compilerOptions": {
44
"outDir": "./dist",
5-
"baseUrl": "./"
5+
"baseUrl": "./",
6+
"jsx": "react"
67
},
78
"include": ["src"],
89
"exclude": ["node_modules", "dist"]

0 commit comments

Comments
 (0)