Alec Larson
Alec Larson
@aklinker1 I updated existing tests for `detectDevChanges`. I wasn't sure what the test for the new `errorFiles` argument should look like, so I created a stub for you to fill...
`db.select(…).from(…).as('alias')` also avoids the type error
I can retarget this to #1085 if you prefer. LMK!
> Isn't this... impossible to do? For example, you have to import `import { defineConfig } from 'wxt'` in the `wxt.config.ts` file. Doesn't that mean node types will always be...
I would love to get this merged. Let me know what the next step is.
Out of curiosity, how does this compare to TypeScript's incremental build feature? https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-4.html#faster-subsequent-builds-with-the---incremental-flag
I would also like to see inline, formatted snapshots. I doubt this will be added without outside contribution, though.
Oh wow, check this out: https://marketplace.visualstudio.com/items?itemName=asvetliakov.snapshot-tools Apparently https://github.com/asvetliakov/typescript-snapshots-plugin is the successor to "Snapshot tools". This one plugs into Typescript instead of VSCode.
You can create a package with exports like so: ```json "exports": { "worker": "./index.worker.ts", "default": "./index.node.ts" } ``` Use `@prisma/adapter-pg-worker` in the `index.worker.ts` module and use `@prisma/adapter-pg` in the `index.node.ts`...