Skip to main content

Dependencies

It is an array that contains the dependencies of the project. The array must be provided with the configuration object for the dependency.

Here is a minimal example:

import tiff from '@cpp.js/package-tiff/cppjs.config.js';
import sqlite3 from '@cpp.js/package-sqlite3/cppjs.config.js';

export default {
dependencies: [
tiff,
sqlite3,
]
paths: {
config: import.meta.url,
},
};
tip

Below are examples demonstrating various uses of the configurations.