# includeFiles

### Type: [Path](https://prisma-util.gitbook.io/stable/api-documentation/types-and-objects/path)\[]

<details>

<summary>Versioning History</summary>

**API Version v1.0.0** - Introduced `includeFiles` configuration option.

</details>

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:

{% code title="prisma-util.config.mjs" %}

```javascript
export default {
    // Other configuration lines
    includeFiles: ["yourPath"]
}
```

{% endcode %}
