royale-compiler icon indicating copy to clipboard operation
royale-compiler copied to clipboard

Support for inline source maps

Open velara3 opened this issue 2 years ago • 0 comments

In Typescript you have an option to put source maps inline in the exported js output. This is useful when you have a lot of files in the project. Basically, including source maps doubles number of files.

Example:

/project
   - MyApp.as
   - DataModel.as
   - /bin/js-debug/
      - MyApp.js
      - MyApp.js.map
      - DataModel.js
      - DataModel.js.map

More info here:

https://www.typescriptlang.org/tsconfig#inlineSourceMap

velara3 avatar Dec 24 '23 00:12 velara3