Skip to content

Commit fcc7657

Browse files
rearrange the exports to match TSLint and VSCode's organization rules
1 parent d594e0f commit fcc7657

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

‎src/index.ts‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import{projectExportName}from"./project-package-name";
22

3-
// Export `projectExportName` as a named export and the default export
3+
export{Options}from"./settings";
4+
export{projectExportName};
5+
6+
// Export `projectExportName` as the default export
47
// tslint:disable: no-default-export
58
exportdefaultprojectExportName;
6-
export{projectExportName};
79

8-
// Other exports
9-
export{Options}from"./settings";
1010

1111
// CommonJS default export hack
1212
if(typeofmodule==="object"&&typeofmodule.exports==="object"){

0 commit comments

Comments
(0)