Is there source map support for typescript in node / nodemon?

前端 未结 5 2053
盖世英雄少女心
盖世英雄少女心 2021-01-31 14:34

I have a node project written in typescript@2.

My tsconfig has sourceMap set to true and the *.map.js files are generated. When I

相关标签:
5条回答
  • 2021-01-31 15:08

    I found this npm module which seems to do the trick:

    https://github.com/evanw/node-source-map-support

    run npm install source-map-support --save at the root of your node project and add import 'source-map-support/register' to your main.ts or index.ts file.

    That's it.

    0 讨论(0)
  • 2021-01-31 15:21

    Install source map support:

    npm install source-map-support
    

    (I run in in production as well, as it immensely helps finding bugs from the logs of when an error an occurs. I did not experience a large performance impact, yet your experience may be different.)

    Add to your tsconfig.json:

    {
       "compilerOptions": {
          "sourceMap": true
       }
    }
    

    When running your JavaScript file, add the require parameter:

    nodemon -r source-map-support/register dist/pathToJson.js
    
    node -r source-map-support/register dist/pathToJson.js
    

    Alternatively, you add in your entry call:

    require('source-map-support').install()
    

    yet I find this tedious is projects with multiple entry points.


    Sidenote: mocha also supports the --require / -r option, so to have the sourcemap support in mocha you can also call your tests with it, e.g. similar to:

    NODE_ENV=test npx mocha --forbid-only --require source-map-support/register --exit --recursive ./path/to/your/tests/
    
    0 讨论(0)
  • 2021-01-31 15:24

    I recently got this working in my express app. Steps as follows:

    Install the required library:

    npm install --save-dev source-map-support

    In your entry point (eg app.ts):

    require('source-map-support').install();

    In your app.ts, you may also require better logging for errors within promises:

    process.on('unhandledRejection', console.log);

    In your tsconfig, under compilerOptions:

    "inlineSourceMap": true

    0 讨论(0)
  • 2021-01-31 15:24

    The answers here are correct for Node versions before v12.12.0, which added the (experimental) --enable-source-maps flag. With that enabled, source maps are applied to stack traces without an additional dependency. As demonstrated in this article, it has the slightly different and possibly beneficial behavior of including both the generated .js file location and the source file location. For example:

    Error: not found
        at Object.<anonymous> (/Users/bencoe/oss/source-map-testing/test.js:29:7)
            -> /Users/bencoe/oss/source-map-testing/test.ts:13:7
    
    0 讨论(0)
  • 2021-01-31 15:25

    Source map support works perfectly fine with node

    All you need to do is add

    "source-map-support": "0.4.11",
    

    to dependencies or dev-dependencies in package.json by running

    npm install --save source-map-support
    

    And in your entry point ts file, simply add at the top

    require('source-map-support').install()
    

    (note: this is calling nodeJS require - there is no need for source-map-support definition files)

    0 讨论(0)
提交回复
热议问题