@mikro-orm/reflection 7.0.0-dev.3 → 7.0.0-dev.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -157,6 +157,7 @@ export class TsMorphMetadataProvider extends MetadataProvider {
157
157
  try {
158
158
  this.project = new Project({
159
159
  tsConfigFilePath: Utils.normalizePath(process.cwd(), tsConfigFilePath),
160
+ skipAddingFilesFromTsConfig: true,
160
161
  compilerOptions: {
161
162
  strictNullChecks: true,
162
163
  module: ModuleKind.Node16,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mikro-orm/reflection",
3
3
  "type": "module",
4
- "version": "7.0.0-dev.3",
4
+ "version": "7.0.0-dev.5",
5
5
  "description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
6
6
  "exports": {
7
7
  "./package.json": "./package.json",
@@ -54,9 +54,9 @@
54
54
  "ts-morph": "25.0.1"
55
55
  },
56
56
  "devDependencies": {
57
- "@mikro-orm/core": "^6.4.5"
57
+ "@mikro-orm/core": "^6.4.7"
58
58
  },
59
59
  "peerDependencies": {
60
- "@mikro-orm/core": "7.0.0-dev.3"
60
+ "@mikro-orm/core": "7.0.0-dev.5"
61
61
  }
62
62
  }