We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e3ddff commit a988665Copy full SHA for a988665
template/example/tsconfig.json
@@ -3,7 +3,7 @@
3
"compilerOptions": {
4
"strict": false,
5
"rootDirs": ["./", "../"],
6
- "types": ["./types.d.ts", "../types/index.d.ts"]
+ "types": ["./types.d.ts"]
7
},
8
"include": ["./**/*.ts", "./**/*.tsx"]
9
}
template/src/index.ts
@@ -1 +1,2 @@
1
export * from './MMapButtonExample/MMapButtonExample';
2
+export * from './types';
template/types/index.d.ts renamed to template/src/types.ts
@@ -1,6 +1,6 @@
declare module '@mappable-world/mappable-types/import' {
interface Import {
- (pkg: '%PACKAGE_NAME%'): Promise<typeof import('../src/index')>;
+ (pkg: '%PACKAGE_NAME%'): Promise<typeof import('./index')>;
0 commit comments