Move payload types so dev container doesn't crash
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
tobias
2024-05-20 14:20:00 +02:00
parent 370eac2b25
commit f94bc5d822
4 changed files with 6 additions and 6 deletions

5
astro/.gitignore vendored
View File

@ -15,7 +15,4 @@ pnpm-debug.log*
# macOS-specific files
.DS_Store
# types
src/types/payload-types.ts
.DS_Store

View File

@ -4,7 +4,8 @@
"types": ["@astrojs/image/client"],
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
"@/*": ["src/*"],
"@/types/*": ["../types/*"]
}
}
}