parent
486e5863cb
commit
ee1dadecc3
3 changed files with 32 additions and 29 deletions
@ -1,25 +1,20 @@ |
||||
{ |
||||
"name": "game-server", |
||||
"version": "2.0", |
||||
"private": true, |
||||
"exports": { |
||||
".": "./out/index.js", |
||||
"./room": "./out/room.js", |
||||
"./server-game": "./out/game_standard.js", |
||||
"./client": "./out/client.js", |
||||
"./logger": "./out/logger.js" |
||||
}, |
||||
"dependencies": { |
||||
"dotenv": "^16.0.3", |
||||
"https": "^1.0.0", |
||||
"ini": "^2.0.0", |
||||
"socket.io": "^4.4.1" |
||||
}, |
||||
"devDependencies": { |
||||
"@types/node": "^17.0.18", |
||||
"typescript": "^4.8.4" |
||||
}, |
||||
"scripts": { |
||||
"start": "node out/index.js" |
||||
} |
||||
"name": "game-server", |
||||
"version": "2.0", |
||||
"private": true, |
||||
"main": "out/index.js", |
||||
"types": "out/index.d.ts", |
||||
"dependencies": { |
||||
"dotenv": "^16.0.3", |
||||
"https": "^1.0.0", |
||||
"ini": "^2.0.0", |
||||
"socket.io": "^4.4.1" |
||||
}, |
||||
"devDependencies": { |
||||
"@types/node": "^17.0.18", |
||||
"typescript": "^4.8.4" |
||||
}, |
||||
"scripts": { |
||||
"start": "node out/index.js" |
||||
} |
||||
} |
||||
|
@ -1,16 +1,19 @@ |
||||
{ |
||||
"compilerOptions": { |
||||
"target": "ES2022", |
||||
"module": "commonjs", |
||||
"sourceMap": true, |
||||
"target": "ESNext", |
||||
"module": "ESNext", |
||||
"moduleResolution": "NodeNext", |
||||
"esModuleInterop": true, |
||||
|
||||
"alwaysStrict": true, |
||||
"removeComments": true, |
||||
|
||||
"declaration": true, |
||||
"declarationMap": true, |
||||
"outDir": "./out", |
||||
"moduleResolution": "Node16" |
||||
"sourceMap": true, |
||||
"outDir": "./out" |
||||
}, |
||||
"include": [ |
||||
"./src" |
||||
"src/**/*.ts" |
||||
] |
||||
} |
Loading…
Reference in new issue