"compareUrl": "https://github.com/sap/e-mobility-charging-stations-simulator/compare/{from}...{to}"
},
"mikro-orm": {
- "tsConfigPath": "./tsconfig-orm.json",
+ "tsConfigPath": "./tsconfig-mikro-orm.json",
"useTsNode": true
},
"scripts": {
"build:dev": "cross-env BUILD=development pnpm esbuild",
"build:cf": "pnpm clean:node_modules && npx cross-env SKIP_PREINSTALL=1 npm install && pnpm build",
"build:cf:dev": "pnpm clean:node_modules && npx cross-env SKIP_PREINSTALL=1 npm install && pnpm build:dev",
+ "build:entities": "tsc -p tsconfig-mikro-orm.json",
"clean:dist": "npx rimraf dist",
"clean:node_modules": "npx rimraf node_modules",
"lint": "cross-env TIMING=1 eslint --cache src tests .eslintrc.cjs bundle.js mikro-orm.config-template.ts",
"mongodb": "^6.3.0",
"poolifier": "^3.1.18",
"tar": "^6.2.0",
- "tslib": "^2.6.2",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1",
"ws": "^8.16.0"
tar:
specifier: ^6.2.0
version: 6.2.0
- tslib:
- specifier: ^2.6.2
- version: 2.6.2
winston:
specifier: ^3.11.0
version: 3.11.0
/tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+ dev: true
/tsx@4.7.0:
resolution: {integrity: sha512-I+t79RYPlEYlHn9a+KzwrvEwhJg35h/1zHsLC2JXvhC2mdynMv6Zxzvhv5EMV6VF5qJlLlkSnMVvdZV3PSIGcg==}
--- /dev/null
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "rootDir": "./src/types/orm/entities",
+ "outDir": "./dist/types/orm/entities",
+ "sourceMap": true,
+ "esModuleInterop": true
+ },
+ "include": ["src/types/orm/entities/*.ts"]
+}