Closed 6rube closed 1 year ago
That's weird.. are you on latest deno version? Run deno upgrade just to make sure.
Version is up to date.
Seems to be a problem with vscode launch.json.
{
"version": "0.2.0",
"configurations": [
{
"request": "launch",
"name": "Deno",
"type": "node",
"program": "${workspaceFolder}/test.ts",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "C:\\Users\\6rube\\.deno\\bin\\deno.EXE",
"runtimeArgs": [
"run",
"-A",
"--unstable"
],
"attachSimplePort": 9229
}
]
}
It works by running it by hand now.
I suspect the --unstable argument is not getting passed correctly, as this error is only reproducible when --unstable is not passed. Either way, seems like it's not a problem in sqlite3 module.
Yes there seems to be an issue with the parsing of the deno extension im using. Thank you again for your Help!
Hi, i tried to use the newest version of sqlite3 and get this error:
my code looks like this:
my runtime args looks like this:
deno run -A --unstable test.ts
Did i miss something ?