返回 AiToEarn
channel-db.constants.ts
根目录 / project / aitoearn-backend / libs / channel-db / src / channel-db.constants.ts
1 import type { SchemaOptions } from 'mongoose'
2
3 export const DEFAULT_SCHEMA_OPTIONS: SchemaOptions = {
4 versionKey: false,
5 toJSON: { virtuals: true },
6 toObject: { virtuals: true },
7 id: true,
8 timestamps: true,
9 }
10
10 lines TYPESCRIPT