fix api production deployment

This commit is contained in:
root
2026-05-10 23:55:00 -04:00
committed by Administrator
parent f1c7fec162
commit 00834dcb7e
3 changed files with 70 additions and 9 deletions
+3 -2
View File
@@ -2,9 +2,10 @@
"name": "@rentaldrivego/types",
"version": "1.0.0",
"private": true,
"main": "./src/index.ts",
"types": "./src/index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"type-check": "tsc --noEmit"
},
"devDependencies": {
+1 -7
View File
@@ -1,15 +1,9 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"skipLibCheck": true,
"noEmit": true,
"rootDir": "./src",
"outDir": "./dist",
"declaration": false,
"declaration": true,
"declarationMap": false,
"sourceMap": false
},