Skip to content

Commit

Permalink
Declare import path field in ssg-router
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinyaigeek committed Apr 19, 2024
1 parent d597d1e commit 4ec3845
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions packages/modules/ssg-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,24 @@
"author": "",
"license": "ISC",
"type": "module",
"files": ["./src"],
"types": "./src/index.ts",
"main": "./src/index.ts",
"dependencies": {
"option-t": "^39.0.3"
},
"exports": {
".": {
"default": "./src/index.ts",
"types": "./src/index.ts"
},
"./router": {
"default": "./router/router.ts",
"types": "./router/router.ts"
"default": "./src/router/router.ts",
"types": "./src/router/router.ts"
},
"./plugin": {
"default": "./plugin/basic.ts",
"types": "./plugin/basic.ts"
"default": "./src/plugin/basic.ts",
"types": "./src/plugin/basic.ts"
}
}
}

0 comments on commit 4ec3845

Please sign in to comment.