UNPKG

@kjn/ts-boilerplate

Version:

Lets do a proper setup for a ts project for the **last time**. This repo will function as a boilerplate for every ts browser project to come.

10 lines 208 B
export default class KjnTsBoilerplate { name; constructor(name) { this.name = name; } run() { console.log(`Hello there ${this.name}`); } } //# sourceMappingURL=index.js.map