Compare commits

..

1 commit

Author SHA1 Message Date
67f54430f9
Merge e285c47e01 into 6678ded2f9 2024-08-07 10:31:02 -05:00
4 changed files with 10 additions and 9 deletions

Binary file not shown.

View file

@ -9,7 +9,7 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/cloudflare": "^11.0.4",
"@astrojs/cloudflare": "^11.0.1",
"@astrojs/preact": "^3.5.1",
"@astrojs/prefetch": "^0.2.1",
"@astrojs/sitemap": "^3.1.6",
@ -25,7 +25,6 @@
"tailwindcss": "^3.3.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240806.0",
"autoprefixer": "^10.4.14",
"cssnano": "^6.0.0",
"postcss": "^8.4.21",

View file

@ -1,6 +1,7 @@
/// <reference types="astro/client" />
type Env = {
type D1Database = import("@cloudflare/workers-types").D1Database;
type ENV = {
GITHUB_APP_NAME: string;
DISCORD_CLIENT_ID: string;
DISCORD_CLIENT_SECRET: string;
@ -9,7 +10,7 @@ type Env = {
DB: D1Database;
};
/*export interface Guild {
export interface Guild {
id: string;
name: string;
icon: string;
@ -20,9 +21,9 @@ type Env = {
export interface MutualeGuild {
mutual: boolean;
guild: Guild;
}*/
}
type Runtime = import("@astrojs/cloudflare").Runtime<Env>;
type Runtime = import("@astrojs/cloudflare").Runtime<ENV>;
// https://github.com/withastro/astro/issues/7394#issuecomment-1975657601
declare namespace App {

View file

@ -1,11 +1,12 @@
{
"extends": "astro/tsconfigs/strict",
"extends": "astro/tsconfigs/strictest",
"compilerOptions": {
"types": ["@cloudflare/workers-types"],
"strictNullChecks": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
"~/*": ["src/*"]
}
},
"types": ["./src/env.d.ts"]
}
}