Skip to content

Commit ba98c61

Browse files
authored
Fix JS distribution (#410)
1 parent edc847b commit ba98c61

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

packages/mercury/src/assets-manager.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import type {
66
TreeViewItemModel
77
} from "@genexus/chameleon-controls-library";
88

9-
// @ts-expect-error: TODO: Fix this error
109
import type { RegistryGetImagePathCallback } from "@genexus/chameleon-controls-library/dist/types/index.d.ts";
1110
import type { TreeViewItemImageMultiState } from "@genexus/chameleon-controls-library/dist/types/components/tree-view/types.d.ts";
1211
import type { ActionListItemAdditionalBase } from "@genexus/chameleon-controls-library/dist/types/components/action-list/types.d.ts";

packages/mercury/tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
{
22
"compilerOptions": {
3-
"allowImportingTsExtensions": true,
43
"allowSyntheticDefaultImports": true,
5-
"emitDeclarationOnly": true,
64
"emitDecoratorMetadata": true,
75
"experimentalDecorators": true,
86
"lib": ["ESNext"],
9-
"module": "NodeNext",
7+
"moduleResolution": "node",
8+
"module": "esnext",
109
"target": "ESNext",
1110

1211
"declaration": true,

0 commit comments

Comments
 (0)