chore: fix docker build, format (#1824)
This commit is contained in:
parent
abc6a8d832
commit
d924b0d4d1
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -219,4 +219,4 @@
|
|||
"tailwindcss-variable-colors@0.0.2": "patches/tailwindcss-variable-colors@0.0.2.patch"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,4 +6,4 @@
|
|||
"default": "./shiki.client.tsx"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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"]
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue