tessl install tessl/npm-stencil--core@4.36.0A comprehensive web component compiler that transforms TypeScript and JSX code into standards-compliant web components with complete development toolchain.
Agent Success
Agent success rate when using this tile
75%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.44x
Baseline
Agent success rate without this tile
52%
Build a web component library with proper build configuration for code splitting and lazy loading.
Create two web components:
User Card Component (user-card)
Product Card Component (product-card)
Create a utility file with a formatCurrency(amount: number): string function that both components can import and use.
Configure the build to:
dist output with lazy-loadable ES modules@generates
export interface Config {
outputTargets?: OutputTarget[];
// Other configuration options
}
export interface OutputTarget {
type: string;
dir?: string;
// Other output target options
}Provides web component compilation and build tooling with code splitting support.