DEV Community

Discussion on: Using TypeScript without TypeScript 😎

 
dgreene1 profile image
Dan Greene • Edited

Sure, I hadn’t thought about pushing the transpiration responsibilities down the consumer of the library.

To be fair, the typescript compiler can turn off a lot of the transpiration stuff if you change the target in tsconfig.JSON to ESNext or ES2020. That means you can get the advantages of (full) type checking without the noise since the compiler assumes the browser knows about things like Object.entries and the spread operator.

typescriptlang.org/tsconfig#target