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 40a32e3 commit c4191feCopy full SHA for c4191fe
1 file changed
README.md
@@ -13,6 +13,7 @@ npm i -D @hypernym/bundler
13
- Powered by Rollup
14
- Allows advanced customization
15
- Provides a powerful hooking system
16
+- Supports all TS module resolutions
17
- Exports fully optimized code
18
- Follows modern practice
19
- Super easy to use
@@ -285,12 +286,12 @@ After that it can be imported as:
285
286
287
```ts
288
// Imports module from './src/utils/index.js'
-import { module } from '@/utils/index.js'
289
+import { module } from '@/utils'
290
291
// or
292
293
-import { module } from '~/utils/index.js'
294
+import { module } from '~/utils'
295
```
296
297
## CLI
0 commit comments