diff --git a/src/ChartInternal/ChartInternal.ts b/src/ChartInternal/ChartInternal.ts index ad40ddb23..885985701 100644 --- a/src/ChartInternal/ChartInternal.ts +++ b/src/ChartInternal/ChartInternal.ts @@ -44,7 +44,7 @@ import text from "./internals/text"; import title from "./internals/title"; import tooltip from "./internals/tooltip"; import transform from "./internals/transform"; -import type from "./internals/type"; +import typeInternals from "./internals/type"; /** * Internal chart class. @@ -807,5 +807,5 @@ extend(ChartInternal.prototype, [ title, tooltip, transform, - type + typeInternals ]); diff --git a/tsconfig.json b/tsconfig.json index 6fff60023..63fcf10e9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,7 +12,7 @@ ] }, "include": [ - "src/**/*.ts" + "src/**/index*.ts", ], "exclude": [ "test/**/*.ts"