Pistonmaster
Pistonmaster
DTDrizzle Team
Created by Pistonmaster on 1/7/2024 in #help
Weird type errors in Webstorm
Seems like WebStorm supported typescript before they even had a official language API https://blog.jetbrains.com/webstorm/2024/01/everything-you-ve-always-wanted-to-know-about-typescript-s-integration-in-webstorm/
31 replies
DTDrizzle Team
Created by Pistonmaster on 1/7/2024 in #help
Weird type errors in Webstorm
That's what I'll do tomorrow.
31 replies
DTDrizzle Team
Created by Pistonmaster on 1/7/2024 in #help
Weird type errors in Webstorm
Personally I heard the typescript language server likes to be slow and crash a lot. I think they also have it because it allows them to better integrate with their own completion systems.
31 replies
DTDrizzle Team
Created by Pistonmaster on 1/7/2024 in #help
Weird type errors in Webstorm
They did write in a blog post recently that they have their own language server implementation and wanna have a hybrid system with the official typescript language server in the future.
31 replies
DTDrizzle Team
Created by Pistonmaster on 1/7/2024 in #help
Weird type errors in Webstorm
I like it for the great tooling.
31 replies
DTDrizzle Team
Created by Pistonmaster on 1/7/2024 in #help
Weird type errors in Webstorm
It's Jetbrains proprietary javascript IDE
31 replies
DTDrizzle Team
Created by Pistonmaster on 1/7/2024 in #help
Weird type errors in Webstorm
I'll try with some other IDE tomorrow
31 replies
DTDrizzle Team
Created by Pistonmaster on 1/7/2024 in #help
Weird type errors in Webstorm
Could be WebStorms fault then.
31 replies
DTDrizzle Team
Created by Pistonmaster on 1/7/2024 in #help
Weird type errors in Webstorm
31 replies
DTDrizzle Team
Created by Pistonmaster on 1/7/2024 in #help
Weird type errors in Webstorm
I sent the wrong screenshot here by accident.
31 replies
DTDrizzle Team
Created by Pistonmaster on 1/7/2024 in #help
Weird type errors in Webstorm
but update set doesn't require every column to be modified
31 replies
DTDrizzle Team
Created by Pistonmaster on 1/7/2024 in #help
Weird type errors in Webstorm
{
"compilerOptions": {
"target": "es2017",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"checkJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"noUncheckedIndexedAccess": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./src/*"
]
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
".eslintrc.cjs",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.cjs",
"**/*.mjs",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}
{
"compilerOptions": {
"target": "es2017",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"checkJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"noUncheckedIndexedAccess": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./src/*"
]
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
".eslintrc.cjs",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.cjs",
"**/*.mjs",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}
31 replies
DTDrizzle Team
Created by Pistonmaster on 1/7/2024 in #help
Weird type errors in Webstorm
31 replies
DTDrizzle Team
Created by Pistonmaster on 12/4/2023 in #help
Question about dynamic query building
It's overall configusing how they first show that where chaining does not work in traditional drizzle and then they show $dynamic, it makes it seem like $dynamic is the solution for chaining not working.
19 replies
DTDrizzle Team
Created by Pistonmaster on 12/4/2023 in #help
Question about dynamic query building
Why does the page even give that example then? lol
19 replies
DTDrizzle Team
Created by Pistonmaster on 12/4/2023 in #help
Question about dynamic query building
that does look interesting, thanks will try it!
19 replies
DTDrizzle Team
Created by Thomas van der Westen on 12/4/2023 in #help
Can I run the `migrate()` function exporting a raw SQL query in Drizzle ORM?
9 replies
DTDrizzle Team
Created by Pistonmaster on 12/4/2023 in #help
Question about dynamic query building
What is the proper way to merge querybuilder/$dynamic wheres?
19 replies
DTDrizzle Team
Created by Pistonmaster on 12/4/2023 in #help
Question about dynamic query building
it seems to just override the last where instead of merging it
19 replies