How to fix ERR_UNKNOWN_FILE_EXTENSION in

Поделиться
HTML-код
  • Опубликовано: 23 авг 2024

Комментарии • 13

  • @TypeScriptTV
    @TypeScriptTV  6 месяцев назад

    If you want to run "ts-node" in production with ESM, then use: "tsc --noEmit && node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only src/main.ts" (see github.com/TypeStrong/ts-node/issues/104#issuecomment-1941702624)

  • @antonioquintero-felizzola5334
    @antonioquintero-felizzola5334 6 месяцев назад +1

    This is easily the most underrated TS channel on RUclips. Thank you for your videos Benny.

    • @TypeScriptTV
      @TypeScriptTV  6 месяцев назад

      Thank you! I also think the same. 😅 Btw. I made an app for programmers: apps.apple.com/app/id659282498

  • @humaitrix
    @humaitrix 5 месяцев назад +1

    Thank you Benny! Amazing video, not only sharing the solution but explaining why it's the best solution available at the moment! Tks a lot

    • @TypeScriptTV
      @TypeScriptTV  5 месяцев назад

      Thank you, Daniel! It's important for me to not only show the "how" but also explain the "why". I try to follow this principle in all my TypeScript tutorials. 😀

  • @leonardogonzalezrodriguez2290
    @leonardogonzalezrodriguez2290 5 месяцев назад +1

    Thank you so much for your explanation, it helped me a lot

  • @damienbutt6320
    @damienbutt6320 5 месяцев назад

    I’ve been using vite-node as my ts-node alternative. Seems to work really well out of the box with ESM. And nodmon etc. No issues.

    • @TypeScriptTV
      @TypeScriptTV  5 месяцев назад

      Thanks for sharing this with us. Does it also show you stacktraces when using Node.js v20?

  • @seeyou7989
    @seeyou7989 6 месяцев назад

    Thanks but what if i have to use nodemon

    • @TypeScriptTV
      @TypeScriptTV  6 месяцев назад +1

      When using nodemon, you can create a "nodemon.json" file in your repository and use the commands in the "exec" section.

  • @sayandedotcom
    @sayandedotcom 6 месяцев назад

    how to do it with nodemon "node --loader ts-node/esm && nodemon ./index.ts"

    • @TypeScriptTV
      @TypeScriptTV  Месяц назад

      Will you get type checking when doing this?