- delete package-lock.json, add pnpm-lock.yaml - add packageManager field (pnpm@10.33.0) - switch Dockerfile and Woodpecker CI to corepack + pnpm - remove esModuleInterop/sourceMap/forceConsistentCasingInFileNames from tsconfig (redundant with verbatimModuleSyntax + noEmit) - install @tailwindcss/postcss, fix postcss.config.js for tailwind v4 split package
18 lines
600 B
JSON
18 lines
600 B
JSON
{
|
|
"extends": "./.svelte-kit/tsconfig.json",
|
|
"compilerOptions": {
|
|
"rewriteRelativeImportExtensions": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"moduleResolution": "bundler"
|
|
}
|
|
// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
|
|
// except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
|
|
//
|
|
// To make changes to top-level options such as include and exclude, we recommend extending
|
|
// the generated config; see https://svelte.dev/docs/kit/configuration#typescript
|
|
}
|