···11+import { mdsvex } from "mdsvex";
22+import adapter from '@sveltejs/adapter-auto';
33+import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
44+55+/** @type {import('@sveltejs/kit').Config} */
66+const config = {
77+ // Consult https://kit.svelte.dev/docs/integrations#preprocessors
88+ // for more information about preprocessors
99+ preprocess: [vitePreprocess(), mdsvex()],
1010+1111+ kit: {
1212+ // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
1313+ // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
1414+ // See https://kit.svelte.dev/docs/adapters for more information about adapters.
1515+ adapter: adapter()
1616+ },
1717+1818+ extensions: [".svelte", ".svx"]
1919+};
2020+2121+export default config;
···11+{
22+ "extends": "./.svelte-kit/tsconfig.json",
33+ "compilerOptions": {
44+ "allowJs": true,
55+ "checkJs": true,
66+ "esModuleInterop": true,
77+ "forceConsistentCasingInFileNames": true,
88+ "resolveJsonModule": true,
99+ "skipLibCheck": true,
1010+ "sourceMap": true,
1111+ "strict": true,
1212+ "moduleResolution": "bundler"
1313+ }
1414+ // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
1515+ // except $lib which is handled by https://kit.svelte.dev/docs/configuration#files
1616+ //
1717+ // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
1818+ // from the referenced tsconfig.json - TypeScript does not merge them in
1919+}