@prisma/config 6.4.0-dev.43 → 6.4.0-dev.45

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.
@@ -1,4 +1,4 @@
1
- import { PrismaConfig } from './PrismaConfig';
1
+ import type { PrismaConfig } from './PrismaConfig';
2
2
  /**
3
3
  * All default values for the config shall be set here.
4
4
  * Modules should not have to deal with missing config values and determining a default themselves as far as possible.
@@ -25,7 +25,7 @@ __export(defaultConfig_exports, {
25
25
  module.exports = __toCommonJS(defaultConfig_exports);
26
26
  function defaultConfig() {
27
27
  return {
28
- experimental: true,
28
+ earlyAccess: true,
29
29
  studio: void 0,
30
30
  loadedFromFile: null
31
31
  };
@@ -1,4 +1,4 @@
1
- import { PrismaConfig } from './PrismaConfig';
1
+ import type { PrismaConfig } from './PrismaConfig';
2
2
  /**
3
3
  * This default config can be used as basis for unit and integration tests.
4
4
  */
@@ -25,7 +25,7 @@ __export(defaultTestConfig_exports, {
25
25
  module.exports = __toCommonJS(defaultTestConfig_exports);
26
26
  function defaultTestConfig() {
27
27
  return {
28
- experimental: true,
28
+ earlyAccess: true,
29
29
  loadedFromFile: null
30
30
  };
31
31
  }
@@ -9,7 +9,7 @@ export type PrismaConfigInput<Env> = {
9
9
  * Whether to enable experimental features.
10
10
  * Currently, every feature is considered experimental.
11
11
  */
12
- experimental: true;
12
+ earlyAccess: true;
13
13
  /**
14
14
  * The configuration for the Prisma Studio.
15
15
  */
@@ -275,7 +275,7 @@ var debug = (0, import_debug.Debug)("prisma:config:defineConfig");
275
275
  function defineConfig(configInput) {
276
276
  const config = {
277
277
  // Currently, every feature is considered experimental.
278
- experimental: true,
278
+ earlyAccess: true,
279
279
  loadedFromFile: null
280
280
  // will be overwritten after loading the config file from disk
281
281
  };