Antonio Silva
Antonio Silva
This plugin worked for me: ```ts import { Editor, Element, Node, Transforms } from 'slate'; function nodeHasNoText(node: Node) { return Node.string(node) === ''; } export const withDeleteCheck = (editor: Editor)...
This just worked 🎉 // `override.d.ts` (note the `d.ts` ⚠️) ```ts declare global { module '@darch/schema' { export * from '@darch/schema'; // 👈🏼 export the same module // Function override...
@dac09 @darch/schema is installed. this is my tsconfig, nothing special, I think. ```json { "ts-node": { "transpileOnly": true, "compilerOptions": { "module": "commonjs" }, "compilerOptions": { "outDir": "dist", "rootDir": "src", "baseUrl":...
@dac09 are you also using a `*.d.ts` file? I tried ts `4.5.4` and the latest `4.7.4` - both worked
I'm going to start this this weekend 👍🏽
Im sorry, I ended having no time to work on this
I have a small utility called `runmate` and [i just added support for deps sync](https://github.com/swindio/solarwind/blob/786385a7764f189f10433bf4d9e5302cc72d8df5/packages/runmate/src/commands/align.ts#L33-L35)
In my case the problem was just the name of the model. Removing the `.bin` extension solved it: `ggml-gpt4all-j.bin`-> `ggml-gpt4all-j` 😅
you can use $ to represent the array index you matched: musicas.$.field
Hi @TanyuS thanks for your solution. Feel free to send a pull request :)