This commit is contained in:
Oleksandr Honcharov
2024-06-13 01:59:21 +03:00
commit 9ab27a83dd
24 changed files with 261 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{
"name": "rage-fw-example-server",
"version": "0.1.0",
"author": "Entity Seven Group",
"license": "CC BY-ND",
"description": "Server side of rage-fw example",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node10.4 --outfile=../../server/packages/server/index.js"
},
"dependencies": {
"rage-fw-server": "latest"
}
}
View File
+11
View File
@@ -0,0 +1,11 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"resolveJsonModule": true,
"baseUrl": "./src",
"types": [
"../../node_modules/@ragempcommunity/types-server",
"../shared/declarations/rage-fw-shared-types/"
]
}
}