includeFiles

Type: Path[]

Versioning History

API Version v1.0.0 - Introduced includeFiles configuration option.

Files included in this array will be added by Prisma Util to the final bundled schema. These files can contain a generator or datasource, although it will be ignored when parsed. To include a list of files, add the following line to your exported configuration object:

prisma-util.config.mjs
export default {
    // Other configuration lines
    includeFiles: ["yourPath"]
}

Last updated