···7474 ```
75754. Generate the package
7676 ```
7777- npm run build:package
7777+ npm run package
7878 ```
79795. Publish the package
8080 ```
8181- npm publish ./package
8181+ npm publish
8282 ```
83836. Commit with a tag in format "v#.#.#"
84847. Create GitHub release with release notes
···11import adapter from '@sveltejs/adapter-static'
22-import { vitePreprocess } from '@sveltejs/kit/vite'
22+import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
3344/** @type {import('@sveltejs/kit').Config} */
55export default {
+3-5
tsconfig.json
···88 "resolveJsonModule": true,
99 "skipLibCheck": true,
1010 "sourceMap": true,
1111- "strict": true
1111+ "strict": true,
1212+ "module": "NodeNext",
1313+ "moduleResolution": "NodeNext"
1214 }
1313- // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
1414- //
1515- // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
1616- // from the referenced tsconfig.json - TypeScript does not merge them in
1715}