diff --git a/.changeset/shy-months-watch.md b/.changeset/shy-months-watch.md new file mode 100644 index 0000000000..471bd89c29 --- /dev/null +++ b/.changeset/shy-months-watch.md @@ -0,0 +1,6 @@ +--- +'houdini': patch +'houdini-svelte': patch +--- + +Added typescript codegen diff --git a/e2e/sveltekit/src/routes/plugin/+layout.ts b/e2e/sveltekit/src/routes/plugin/+layout.ts index 4ad8ed4e66..e5c4880609 100644 --- a/e2e/sveltekit/src/routes/plugin/+layout.ts +++ b/e2e/sveltekit/src/routes/plugin/+layout.ts @@ -1,4 +1,6 @@ // don't delete this. It's here as a way to verify some behavior on the session test export async function load() { - return {}; + return { + test: 'test' + }; } diff --git a/e2e/sveltekit/src/routes/stores/partial/partial_List/+page.svelte b/e2e/sveltekit/src/routes/stores/partial/partial_List/+page.svelte index cca5ee42a6..372e63209f 100644 --- a/e2e/sveltekit/src/routes/stores/partial/partial_List/+page.svelte +++ b/e2e/sveltekit/src/routes/stores/partial/partial_List/+page.svelte @@ -1,5 +1,5 @@