Skip to content

Commit

Permalink
fix basic example by adding index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
srmagura committed Sep 12, 2021
1 parent 8bb0332 commit c67d3be
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
15 changes: 15 additions & 0 deletions examples/basic/src/index.ts
@@ -0,0 +1,15 @@
export * from "./access";
export * from "./classes";
export * from "./default-export";
export * from "./enumerations";
export * from "./flattened";
export * from "./functions";
export * from "./generics";
export * from "./hidden";
export * from "./markdown";
export * from "./mixin";
export * from "./mod";
export * from "./mod2";
export * from "./modules";
export { default as SingleExportedClass } from "./single-export";
export * from "./weird-names";
3 changes: 2 additions & 1 deletion examples/basic/tsconfig.json
Expand Up @@ -5,7 +5,8 @@
"jsx": "react",
"experimentalDecorators": true,
"resolveJsonModule": true,
"rootDir": "."
"rootDir": ".",
"esModuleInterop": true
},
"include": ["."]
}

0 comments on commit c67d3be

Please sign in to comment.