Hamet
Hamet
DDeno
Created by Hamet on 10/13/2024 in #help
Transpile TS to JS
That sounds good, Ill give it a shot
11 replies
DDeno
Created by Hamet on 10/13/2024 in #help
Transpile TS to JS
I think it worked, thanks for the help :)
import {build, stop} from "https://deno.land/x/esbuild@v0.24.0/mod.js"
import { denoPlugins } from "jsr:@luca/esbuild-deno-loader@^0.10.3"

await build({
plugins: [...denoPlugins()],
entryPoints: ["./static/test.ts"],
outfile: "./static/test.js",
bundle: true,
format: "esm",
})
stop()
import {build, stop} from "https://deno.land/x/esbuild@v0.24.0/mod.js"
import { denoPlugins } from "jsr:@luca/esbuild-deno-loader@^0.10.3"

await build({
plugins: [...denoPlugins()],
entryPoints: ["./static/test.ts"],
outfile: "./static/test.js",
bundle: true,
format: "esm",
})
stop()
11 replies
DDeno
Created by Hamet on 10/11/2024 in #help
Error running deno
I fixed my issue :)
4 replies
DDeno
Created by Hamet on 10/11/2024 in #help
Error running deno
I dont need to use it, is there anything similiar for my purpose? what I want is render my index.ejs so it can see my css files and get data to substitute
4 replies