Skip to content

Commit

Permalink
chore: improve server types (#160)
Browse files Browse the repository at this point in the history
Co-authored-by: Sébastien Chopin <[email protected]>
  • Loading branch information
Barbapapazes and atinux authored Jun 14, 2024
1 parent 8351707 commit d0c5b5c
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 2 deletions.
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"
}

0 comments on commit d0c5b5c

Please sign in to comment.