 e89f2f4b7b
			
		
	
	e89f2f4b7b
	
	
	
		
			
			Created 10 detailed GitHub issues covering: - Project activation and management UI (#1-2) - Worker node coordination and visualization (#3-4) - Automated GitHub repository scanning (#5) - Intelligent model-to-issue matching (#6) - Multi-model task execution system (#7) - N8N workflow integration (#8) - Hive-Bzzz P2P bridge (#9) - Peer assistance protocol (#10) Each issue includes detailed specifications, acceptance criteria, technical implementation notes, and dependency mapping. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| Object.defineProperty(exports, "__esModule", { value: true });
 | |
| var util_1 = require("../lib/util");
 | |
| function getBabelOptions(options) {
 | |
|     // The goal here is to tolerate as much syntax as possible, since Recast
 | |
|     // is not in the business of forbidding anything. If you want your
 | |
|     // parser to be more restrictive for some reason, you can always pass
 | |
|     // your own parser object to recast.parse.
 | |
|     return {
 | |
|         sourceType: (0, util_1.getOption)(options, "sourceType", "module"),
 | |
|         strictMode: (0, util_1.getOption)(options, "strictMode", false),
 | |
|         allowImportExportEverywhere: true,
 | |
|         allowReturnOutsideFunction: true,
 | |
|         startLine: 1,
 | |
|         tokens: true,
 | |
|         plugins: [
 | |
|             "asyncGenerators",
 | |
|             "bigInt",
 | |
|             "classPrivateMethods",
 | |
|             "classPrivateProperties",
 | |
|             "classProperties",
 | |
|             "classStaticBlock",
 | |
|             "decimal",
 | |
|             "decorators-legacy",
 | |
|             "doExpressions",
 | |
|             "dynamicImport",
 | |
|             "exportDefaultFrom",
 | |
|             "exportExtensions",
 | |
|             "exportNamespaceFrom",
 | |
|             "functionBind",
 | |
|             "functionSent",
 | |
|             "importAssertions",
 | |
|             "importMeta",
 | |
|             "nullishCoalescingOperator",
 | |
|             "numericSeparator",
 | |
|             "objectRestSpread",
 | |
|             "optionalCatchBinding",
 | |
|             "optionalChaining",
 | |
|             [
 | |
|                 "pipelineOperator",
 | |
|                 {
 | |
|                     proposal: "minimal",
 | |
|                 },
 | |
|             ],
 | |
|             [
 | |
|                 "recordAndTuple",
 | |
|                 {
 | |
|                     syntaxType: "hash",
 | |
|                 },
 | |
|             ],
 | |
|             "throwExpressions",
 | |
|             "topLevelAwait",
 | |
|             "v8intrinsic",
 | |
|         ],
 | |
|     };
 | |
| }
 | |
| exports.default = getBabelOptions;
 |