peterreisz
peterreisz
I've also faced with this issue, but in a non-nx project, so I think this issue is not related to nx.
Haven't tried, but something like this should work: ```diff diff --git a/src/internal/configProvider.ts b/src/internal/configProvider.ts index 44af3ae58..6de804e54 100644 --- a/src/internal/configProvider.ts +++ b/src/internal/configProvider.ts @@ -95,6 +95,37 @@ export const fromFlat = (flat: ConfigProvider.ConfigProvider.Flat):...
I'm glad you are open to support Deno. I'll submit a PR then, just have to figure out some things. For example how to test the project with Deno.
I has the same error by using libsql server. This is what cause the problem: `SELECT * FROM "main".pragma_table_info("xxx");` xxx is a the view I'd like to open
1) Download the libsql server binary: https://github.com/tursodatabase/libsql/releases/tag/libsql-server-v0.24.31 2) Start it in a terminal `sqld --http-listen-addr=0.0.0.0:8080` 3) Connect to it via turso/libsql option in studio (url: `http://localhost:8080`, token is empty) 4)...