chore: fix docker build, format (#1824)

This commit is contained in:
Stephen Zhou 2024-05-19 20:54:24 +08:00 committed by GitHub
parent abc6a8d832
commit d924b0d4d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 8 additions and 17 deletions

View File

@ -12,6 +12,7 @@ FROM base as deps
WORKDIR /app
COPY package.json pnpm-lock.yaml prisma ./
COPY patches ./patches
ENV PUPPETEER_SKIP_DOWNLOAD=true

View File

@ -219,4 +219,4 @@
"tailwindcss-variable-colors@0.0.2": "patches/tailwindcss-variable-colors@0.0.2.patch"
}
}
}
}

View File

@ -6,4 +6,4 @@
"default": "./shiki.client.tsx"
}
}
}
}

View File

@ -1,10 +1,6 @@
{
"compilerOptions": {
"lib": [
"DOM",
"DOM.Iterable",
"esnext"
],
"lib": ["DOM", "DOM.Iterable", "esnext"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "preserve",
@ -14,9 +10,7 @@
"strict": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./src/*"
]
"~/*": ["./src/*"]
},
"noEmit": true,
"forceConsistentCasingInFileNames": true,
@ -24,9 +18,7 @@
"skipLibCheck": true,
"incremental": true,
"module": "esnext",
"typeRoots": [
"./types"
],
"typeRoots": ["./types"],
"plugins": [
{
"name": "next"
@ -40,7 +32,5 @@
".next/types/**/*.ts",
"packages/**/*"
],
"exclude": [
"node_modules"
]
}
"exclude": ["node_modules"]
}