UNPKG

kintone-as-code

Version:

A CLI tool for managing kintone applications as code with type-safe TypeScript schemas

7 lines 279 B
import path from 'path'; export const loadConfig = async (configPath) => { const fullPath = path.resolve(configPath || 'kintone-as-code.config.js'); const configModule = await import(fullPath); return configModule.default; }; //# sourceMappingURL=config-loader.js.map