mirror of
https://github.com/hashicorp/vault.git
synced 2025-12-26 03:41:18 +01:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
27 lines
483 B
JavaScript
27 lines
483 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
/* eslint-env node */
|
|
/* eslint-disable n/no-extraneous-require */
|
|
'use strict';
|
|
|
|
const { buildEngine } = require('ember-engines/lib/engine-addon');
|
|
|
|
module.exports = buildEngine({
|
|
name: 'sync',
|
|
|
|
lazyLoading: Object.freeze({
|
|
enabled: false,
|
|
}),
|
|
|
|
babel: {
|
|
plugins: [require.resolve('ember-concurrency/async-arrow-task-transform')],
|
|
},
|
|
|
|
isDevelopingAddon() {
|
|
return true;
|
|
},
|
|
});
|