AlexWayne
AlexWayne
Explore posts from servers
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
Thanks again, sir. You've been most helpful
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
Indeed, I just switched from webpack, still working out the kinks apparently
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
Maybe there's an esbuild setting I need to find that mangles things less
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
How can this work if imports get hoisted and you compile to a single file?
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
I'm not sure, but I'm sure we have some commonjs deps, so maybe it's supporting that
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
Youve given me the right leads to investigate, though. I'll dig more soon
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
So now I'm confused.
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
Maybe... the start of the build artifact is this though...
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __decorateClass = (decorators, target, key, kind) => {
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
for (var i = decorators.length - 1, decorator; i >= 0; i--)
if (decorator = decorators[i])
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
if (kind && result)
__defProp(target, key, result);
return result;
};

// ...path here...
import "zod-openapi/extend";

// ...path here...
import tracer from "dd-trace";

// ...path here...
import { configure } from "arktype/config";
configure({
onUndeclaredKey: "delete"
});
console.log("cfg arktype from lib");

// ...path here...
import { Prisma, PrismaClient } from "@prisma/client";

// ...path here...
import { type } from "arktype";
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __decorateClass = (decorators, target, key, kind) => {
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
for (var i = decorators.length - 1, decorator; i >= 0; i--)
if (decorator = decorators[i])
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
if (kind && result)
__defProp(target, key, result);
return result;
};

// ...path here...
import "zod-openapi/extend";

// ...path here...
import tracer from "dd-trace";

// ...path here...
import { configure } from "arktype/config";
configure({
onUndeclaredKey: "delete"
});
console.log("cfg arktype from lib");

// ...path here...
import { Prisma, PrismaClient } from "@prisma/client";

// ...path here...
import { type } from "arktype";
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
Yeah that's happening before the config, so I have to figure out why
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
ohh, in arktype code. Gotcha
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
I tried to put that in the main.ts entry point of the server, and it happened after a file with the type was processed, which was surprising...
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
That's why I tried to use "console.log('cfg arktype')" to be sure it went first
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
Yeah it's going through esbuild
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
No description
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
Thank you for all you do. I’m going to try to replace zod for Arktype at work this year. Wish me luck.
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
Sorry posted and ran to lunch so on my phone.
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
No description
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
And maybe the docs should call that out, as it’s two files in the example but not clear why
40 replies
Aarktype
Created by AlexWayne on 1/31/2025 in #questions
configure({ onUndeclaredKey: 'delete' }) seems to allow extra properties through.
Ohh okay. Gotcha. That makes sense anyway in a real app. But doesn’t play well with just playing around.
40 replies