@stryke/prisma-trpc-generator
Version:
A fork of the prisma-trpc-generator code to work in ESM with Prisma v6.
15 lines (13 loc) • 403 B
JavaScript
import { ModuleKind, Project, ScriptTarget } from "ts-morph";
//#region src/project.ts
const compilerOptions = {
target: ScriptTarget.ESNext,
module: ModuleKind.ESNext,
emitDecoratorMetadata: true,
experimentalDecorators: true,
esModuleInterop: true
};
const project = new Project({ compilerOptions: { ...compilerOptions } });
//#endregion
export { project };
//# sourceMappingURL=project.mjs.map