1
0
forked from noxious/server

Removed TSC in favour of node's own Typescript exec.

This commit is contained in:
2025-02-07 22:27:19 +01:00
parent 52b8a9b7ad
commit cff5fed4f7
19 changed files with 2300 additions and 167 deletions

View File

@ -1,11 +1,11 @@
import { randomUUID } from 'node:crypto'
import { Entity, ManyToOne, PrimaryKey, Property } from '@mikro-orm/core'
import { ManyToOne, PrimaryKey, Property } from '@mikro-orm/core'
import type { UUID } from '#application/types'
import type { User } from '#entities/user'
import { BaseEntity } from '#application/base/baseEntity'
import { User } from '#entities/user'
export class BasePasswordResetToken extends BaseEntity {
@PrimaryKey()