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