Problema de los path en build
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -17,3 +17,5 @@ node_modules
|
||||
.pnp.*
|
||||
|
||||
*.pem
|
||||
|
||||
dist/*
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
],
|
||||
"scripts": {
|
||||
"test": "vitest watch",
|
||||
"build": "npx tsc",
|
||||
"start": "node dist/index.js",
|
||||
"build": "yarn workspaces foreach -A run build",
|
||||
"start": "yarn workspaces foreach -A run start",
|
||||
"typecheck": "npx tsc --noEmit",
|
||||
"dev": "yarn workspaces foreach -Apiv run dev ",
|
||||
"lint": "eslint .",
|
||||
@@ -18,14 +18,17 @@
|
||||
"dependencies": {
|
||||
"@tsconfig/node22": "^22.0.5",
|
||||
"amqp-connection-manager": "^5.0.0",
|
||||
"amqplib": "^0.10.9",
|
||||
"axios": "^1.13.3",
|
||||
"cors": "^2.8.5",
|
||||
"dotenv": "^17.2.3",
|
||||
"express": "^5.2.1",
|
||||
"typescript": "^5.9.3",
|
||||
"vite": "^7.3.1",
|
||||
"vite-tsconfig-paths": "^6.0.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/amqplib": "^0.10.8",
|
||||
"@types/cors": "^2.8.19",
|
||||
"@types/express": "^5.0.6",
|
||||
"@types/node": "^25.0.3",
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
import { makeValidator } from 'envalid';
|
||||
|
||||
import { isValidEnvString, isValidEnvStringArray } from '#shared/domain/utils/env-validators';
|
||||
|
||||
export const ensureEnvStringArray = makeValidator((value: unknown) => isValidEnvStringArray(value));
|
||||
|
||||
export const ensureEnvString = makeValidator((value: unknown) => isValidEnvString(value));
|
||||
@@ -4,7 +4,8 @@
|
||||
"description": "",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"dev": "echo \" Shared no es un modulo ejecutable \" "
|
||||
"dev": "echo \" Shared no es un modulo ejecutable \" ",
|
||||
"build": "tsc"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
|
||||
34
packages/shared/tsconfig.json
Normal file
34
packages/shared/tsconfig.json
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../../dist/packages/shared",
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"#config/*": [
|
||||
"config/*"
|
||||
],
|
||||
"#adapters/*": [
|
||||
"adapters/*"
|
||||
],
|
||||
"#domain/*": [
|
||||
"domain/*"
|
||||
],
|
||||
"#ports/*": [
|
||||
"ports/*"
|
||||
],
|
||||
"#tests/*": [
|
||||
"__tests__/*"
|
||||
],
|
||||
"#shared/*": [
|
||||
"../shared/*"
|
||||
],
|
||||
}
|
||||
},
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
],
|
||||
"include": [
|
||||
"**/*.ts",
|
||||
"src/**/*.d.ts"
|
||||
],
|
||||
}
|
||||
@@ -5,7 +5,8 @@
|
||||
"main": "index.ts",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"dev": "tsx watch index.ts "
|
||||
"dev": "tsx watch index.ts ",
|
||||
"start": "echo \"Proyecto no completado\""
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../../dist/sim-consumidor-nos",
|
||||
"outDir": "../../dist/packages/sim-consumidor-nos",
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"#config/*": [
|
||||
|
||||
@@ -5,7 +5,9 @@
|
||||
"main": "index.ts",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"dev": "tsx watch index.ts "
|
||||
"dev": "tsx watch index.ts",
|
||||
"build": "yarn tsc --project tsconfig.json",
|
||||
"start": "node index.js"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../../dist/sim-consumidor-objenioius",
|
||||
"outDir": "../../dist/packages/sim-consumidor-objenioius",
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"#config/*": [
|
||||
|
||||
@@ -5,7 +5,9 @@
|
||||
"main": "index.ts",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"dev": "tsx watch index.ts"
|
||||
"build": "yarn tsc --project tsconfig.json",
|
||||
"dev": "tsx watch index.ts",
|
||||
"start": "node index.js"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../../dist/sim-entrada-eventos",
|
||||
"outDir": "../../dist/packages/sim-entrada-eventos",
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"#config/*": [
|
||||
|
||||
@@ -3,7 +3,12 @@
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist",
|
||||
"rootDir": "./",
|
||||
"paths": {}
|
||||
"paths": {},
|
||||
"esModuleInterop": true,
|
||||
"sourceMap": true,
|
||||
"inlineSources": true,
|
||||
"skipLibCheck": true,
|
||||
"resolveJsonModule": true
|
||||
},
|
||||
"include": [
|
||||
"**/*.ts",
|
||||
|
||||
@@ -2408,11 +2408,13 @@ __metadata:
|
||||
resolution: "sim-eventos@workspace:."
|
||||
dependencies:
|
||||
"@tsconfig/node22": "npm:^22.0.5"
|
||||
"@types/amqplib": "npm:^0.10.8"
|
||||
"@types/cors": "npm:^2.8.19"
|
||||
"@types/express": "npm:^5.0.6"
|
||||
"@types/node": "npm:^25.0.3"
|
||||
"@types/supertest": "npm:^6.0.3"
|
||||
amqp-connection-manager: "npm:^5.0.0"
|
||||
amqplib: "npm:^0.10.9"
|
||||
axios: "npm:^1.13.3"
|
||||
concurrently: "npm:^9.2.1"
|
||||
cors: "npm:^2.8.5"
|
||||
@@ -2422,6 +2424,7 @@ __metadata:
|
||||
supertest: "npm:^7.1.4"
|
||||
tsx: "npm:^4.21.0"
|
||||
typescript: "npm:^5.9.3"
|
||||
vite: "npm:^7.3.1"
|
||||
vite-tsconfig-paths: "npm:^6.0.5"
|
||||
vitest: "npm:^4.0.16"
|
||||
languageName: unknown
|
||||
@@ -2792,7 +2795,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"vite@npm:^6.0.0 || ^7.0.0":
|
||||
"vite@npm:^6.0.0 || ^7.0.0, vite@npm:^7.3.1":
|
||||
version: 7.3.1
|
||||
resolution: "vite@npm:7.3.1"
|
||||
dependencies:
|
||||
|
||||
Reference in New Issue
Block a user