diff --git a/example/tsconfig.json b/example/tsconfig.json index 28b0012..90b66ea 100644 --- a/example/tsconfig.json +++ b/example/tsconfig.json @@ -3,8 +3,7 @@ "compilerOptions": { "strict": false, "moduleResolution": "Node16", - "rootDirs": ["./", "../"], - "types": ["../types/index.d.ts"] + "rootDirs": ["./", "../"] }, "include": ["./**/*.ts", "./**/*.tsx"] } diff --git a/src/index.ts b/src/index.ts index b4b1dad..44cd4e2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,2 +1,3 @@ export * from './controls'; export * from './markers'; +export * from './types'; diff --git a/types/index.d.ts b/src/types.ts similarity index 82% rename from types/index.d.ts rename to src/types.ts index 92bbbdc..ca53b52 100644 --- a/types/index.d.ts +++ b/src/types.ts @@ -1,6 +1,6 @@ declare module '@mappable-world/mappable-types/import' { interface Import { - (pkg: '@mappable-world/mappable-default-ui-theme'): Promise; + (pkg: '@mappable-world/mappable-default-ui-theme'): Promise; } }