admin管理员组

文章数量:1122846

I am using Webpack to bundle node.js app so I won't need to deploy node_modules to my serverless infrastructure.

Since Node.js 22 (LTS) officially supports Typescript, it now makes sense to only bundle node_modules dependencies with the TS app without compiling everything to the JS.

Theoretically, it should reduce build time.

Is it possible to achieve this with Webpack?

本文标签: nodejsBundle TS code with Webpack without compiling it to JSStack Overflow