1
0
forked from noxious/server

Updated tsconfig.json and edited all required files to work with it

This commit is contained in:
2025-02-07 20:37:51 +01:00
parent fae428f239
commit f5e7d10fb4
70 changed files with 153 additions and 88 deletions

View File

@ -1,4 +1,5 @@
import { UUID } from '#application/types'
import type { UUID } from '#application/types'
import { Character } from '#entities/character'
import { Map } from '#entities/map'
import MapCharacter from '#models/mapCharacter'

View File

@ -1,9 +1,9 @@
import { Server } from 'socket.io'
import { TSocket, UUID } from '#application/types'
import type { TSocket, UUID } from '#application/types'
import { Character } from '#entities/character'
import MapManager from '#managers/mapManager'
import SocketManager from '#managers/socketManager'
import TeleportService from '#services/characterTeleportService'
class MapCharacter {