NullBitMe
NullBitMe
Explore posts from servers
DDeno
Created by NullBitMe on 10/18/2024 in #help
SvelteKit ./$types can't be found in +page.server.ts
VSCode: 1.94.2 OS: MacOS Sequoia 15.0.1 Deno: 2.0.2 Deno Extension: 3.42.0 Typescript: 5.6.3 After some research/testing I can't get Deno 2.0.2 to find ./$types for sveltekit. I'm not sure if i need to explicitly reference the generated tsconfig.json or I'm missing something else. A current workaround is to import from a much longer relative path (ie import type { PageServerLoad } from "../../.svelte-kit/types/src/routes/$types.d.ts";) but of course ./$types) would be preferred. This is the exact error vscode intellisense is giving me:
Unable to load a local module: file:///Users/USERNAME/projects/deno-deno/src/routes/$types
Please check the file path.deno(no-local)

**Resolved Dependency**

**Code**: file​:///Users/USERNAME/projects/deno-deno/src/routes/$types

module "/Users/USERNAME/projects/deno-deno/.svelte-kit/types/src/routes/$types"
Unable to load a local module: file:///Users/USERNAME/projects/deno-deno/src/routes/$types
Please check the file path.deno(no-local)

**Resolved Dependency**

**Code**: file​:///Users/USERNAME/projects/deno-deno/src/routes/$types

module "/Users/USERNAME/projects/deno-deno/.svelte-kit/types/src/routes/$types"
This is the smallest reproduction I could create:
$: deno --version
deno 2.0.2 (stable, release, aarch64-apple-darwin)
v8 12.9.202.13-rusty
typescript 5.6.2

$: deno run -A npm:create-svelte@latest
> Skeleton project
> Use TypeScript syntax
> 0 additional options selected
$: deno --version
deno 2.0.2 (stable, release, aarch64-apple-darwin)
v8 12.9.202.13-rusty
typescript 5.6.2

$: deno run -A npm:create-svelte@latest
> Skeleton project
> Use TypeScript syntax
> 0 additional options selected
Run "Deno: Enable" in vscode command palette to create .vscode/settings.json with this content:
{
"deno.enable": true
}
{
"deno.enable": true
}
$: deno add -D npm:@deno/vite-plugin
$: deno add -D npm:@deno/vite-plugin
Use the deno vite plugin in vite.config.ts:
import deno from "@deno/vite-plugin";
import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";

export default defineConfig({
plugins: [deno(), sveltekit()],
});
import deno from "@deno/vite-plugin";
import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";

export default defineConfig({
plugins: [deno(), sveltekit()],
});
$: deno install --allow-scripts
$: deno install --allow-scripts
I create a src/routes/+page.server.ts file with the following data
import { type PageServerLoad } from "./$types"; // Type error here

export const load: PageServerLoad = () => {
return { test: 123 };
};
import { type PageServerLoad } from "./$types"; // Type error here

export const load: PageServerLoad = () => {
return { test: 123 };
};
Thanks for any help you can offer!
1 replies
RRailway
Created by NullBitMe on 11/16/2023 in #✋|help
Can't install latest version of Deno Nix package
I can't seem to get the latest version (1.38) of deno to be used in my railway service. I thought this could have been an issue with the Nix cache however setting NIXPACKS_NO_CACHE doesn't seem to change anything. My service is stuck using 1.36. Is there anything I can do to fix this beyond recreating the service?
13 replies