mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 10:37:56 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			465 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			465 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * Copyright (c) HashiCorp, Inc.
 | |
|  * 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: 'kv',
 | |
| 
 | |
|   lazyLoading: {
 | |
|     enabled: false,
 | |
|   },
 | |
| 
 | |
|   babel: {
 | |
|     plugins: [require.resolve('ember-concurrency/async-arrow-task-transform')],
 | |
|   },
 | |
| 
 | |
|   isDevelopingAddon() {
 | |
|     return true;
 | |
|   },
 | |
| });
 | 
