Skip to content

Commit

Permalink
⚙️ chore: more fixes and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
zrosenbauer committed Feb 7, 2024
1 parent e13efa9 commit a4d66bc
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 11 deletions.
21 changes: 17 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ export {
EmojiAlias,
EmojiUnicode,
assertSupportedEmoji
} from './lib/markdown';
} from './lib/markdown/index';
27 changes: 21 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,29 @@
"moduleResolution": "node",
"sourceMap": true,
"declaration": true,
"lib": ["ES2022"],
"removeComments": false,
"lib": [
"ES2022"
],
"outDir": "./dist",
"baseUrl": ".",
"paths": {
"@launchpad/*": ["src/*"]
"@launchpad/*": [
"src/*"
]
}
},
"typeRoots": ["node_modules/@types", "types"],
"include": ["types/**/*", "src/**/*"],
"exclude": ["node_modules/**/*", "**/__tests__/**/*", "action.js"]
}
"typeRoots": [
"node_modules/@types",
"types"
],
"include": [
"types/**/*",
"src/**/*"
],
"exclude": [
"node_modules/**/*",
"**/__tests__/**/*",
"action.js"
]
}

0 comments on commit a4d66bc

Please sign in to comment.