Skip to content

Commit c4191fe

Browse files
committed
docs: update info
1 parent 40a32e3 commit c4191fe

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ npm i -D @hypernym/bundler
1313
- Powered by Rollup
1414
- Allows advanced customization
1515
- Provides a powerful hooking system
16+
- Supports all TS module resolutions
1617
- Exports fully optimized code
1718
- Follows modern practice
1819
- Super easy to use
@@ -285,12 +286,12 @@ After that it can be imported as:
285286

286287
```ts
287288
// Imports module from './src/utils/index.js'
288-
import { module } from '@/utils/index.js'
289+
import { module } from '@/utils'
289290

290291
// or
291292

292293
// Imports module from './src/utils/index.js'
293-
import { module } from '~/utils/index.js'
294+
import { module } from '~/utils'
294295
```
295296

296297
## CLI

0 commit comments

Comments
 (0)