Platform-specific native binary for SWC TypeScript/JavaScript compiler on macOS ARM64 architecture
89
{
"context": "This criteria evaluates how well the engineer uses @swc/core's bundling API to handle circular dependencies. The focus is on proper usage of SWC's bundle() method with appropriate configuration for circular dependency resolution.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Uses bundle method",
"description": "Code imports and calls the bundle() method from @swc/core to perform module bundling",
"max_score": 25
},
{
"name": "Entry configuration",
"description": "Properly configures the entry point using the 'entry' option in bundle() configuration, specifying the starting module path",
"max_score": 15
},
{
"name": "Output configuration",
"description": "Correctly configures the output file path using bundle() configuration options to write the bundled result",
"max_score": 15
},
{
"name": "Mode configuration",
"description": "Sets appropriate bundling mode (production or development) in the bundle() configuration for proper circular dependency handling",
"max_score": 15
},
{
"name": "Module options",
"description": "Configures module-related options in bundle() configuration to ensure proper module resolution and circular dependency support",
"max_score": 15
},
{
"name": "Async handling",
"description": "Properly handles the asynchronous nature of bundle() method using async/await or promises",
"max_score": 15
}
]
}Install with Tessl CLI
npx tessl i tessl/npm-swc--core-darwin-arm64docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10