Files
nachtigall.dev/tsconfig.json
vikingowl 93a42b8d65 chore: migrate to pnpm, fix tsconfig and postcss for ts7
- 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
2026-04-26 20:48:44 +02:00

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
}