This commit is contained in:
Oleksandr Honcharov
2024-06-09 01:35:14 +03:00
commit d67073d739
11 changed files with 1435 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{
"name": "rage-f-shared",
"version": "0.0.1",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "tsup"
},
"keywords": [],
"author": "SashaGonncharov19",
"license": "MIT",
"description": "Server side of rage-f"
}
View File
+10
View File
@@ -0,0 +1,10 @@
{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}