8000 chore: improve server types by Barbapapazes · Pull Request #160 · nuxt-hub/core · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

chore: improve server types #160

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev:prepare": "nuxt-module-build build --stub; nuxi prepare playground",
"dev:prepare": "nuxt-module-build build --stub; nuxt-module-build prepare; nuxi prepare playground",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"docs": "PORT=4000 nuxi dev docs",
Expand Down
3 changes: 3 additions & 0 deletions src/runtime/analytics/server/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "../../../../.nuxt/tsconfig.server.json",
}
3 changes: 3 additions & 0 deletions src/runtime/base/server/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "../../../../.nuxt/tsconfig.server.json",
}
3 changes: 3 additions & 0 deletions src/runtime/blob/server/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "../../../../.nuxt/tsconfig.server.json",
}
3 changes: 3 additions & 0 deletions src/runtime/cache/server/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "../../../../.nuxt/tsconfig.server.json",
}
3 changes: 3 additions & 0 deletions src/runtime/database/server/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "../../../../.nuxt/tsconfig.server.json",
}
3 changes: 3 additions & 0 deletions src/runtime/kv/server/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "../../../../.nuxt/tsconfig.server.json",
}
3 changes: 3 additions & 0 deletions src/runtime/openai/server/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "../../../../.nuxt/tsconfig.server.json",
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "./playground/.nuxt/tsconfig.json"
"extends": "./.nuxt/tsconfig.json"
}
Loading
0