Capítulo 107 de 988

Chapter 107: Plain JavaScript

Core Idea

Since Remotion 1. 3, you can opt out of Typescript and it's type checking advantages in Remotion.

Key Concepts

  • Opting out of Typescript
  • Upgrading
  • See also

Code Examples

-  "test": "eslint src --ext ts,tsx && tsc"
+  "test": "eslint src --ext ts,tsx,js,jsx"
  • What it demonstrates: Usage pattern for Plain JavaScript from the official docs.

Key Takeaways

  1. Understand opting out of typescript when working with Plain JavaScript.
  2. Understand upgrading when working with Plain JavaScript.
  3. Understand see also when working with Plain JavaScript.

Connects To

  • Authoring Packages: related page in the CLI & Bundling section.
  • Bundle: related page in the CLI & Bundling section.
  • Bundler: related page in the CLI & Bundling section.