mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 14:47:01 +02:00
19 lines
302 B
JavaScript
19 lines
302 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
/* eslint-disable */
|
|
|
|
module.exports = {
|
|
name: require('./package').name,
|
|
|
|
babel: {
|
|
plugins: [require.resolve('ember-concurrency/async-arrow-task-transform')],
|
|
},
|
|
|
|
isDevelopingAddon() {
|
|
return true;
|
|
},
|
|
};
|