We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
@nuxt/scripts/registry
1 parent 1e3b0cf commit 8ad9eedCopy full SHA for 8ad9eed
build.config.ts
@@ -0,0 +1,7 @@
1
+import { defineBuildConfig } from 'unbuild'
2
+
3
+export default defineBuildConfig({
4
+ entries: [
5
+ './src/registry',
6
+ ],
7
+})
package.json
@@ -22,6 +22,10 @@
22
"types": "./dist/types.d.ts",
23
"import": "./dist/module.mjs",
24
"require": "./dist/module.cjs"
25
+ },
26
+ "./registry": {
27
+ "types": "./dist/registry.d.ts",
28
+ "import": "./dist/registry.mjs"
29
}
30
},
31
"main": "./dist/module.cjs",
0 commit comments