AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 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