The enable-source-map Element"

From Documentation
 
(No difference)

Latest revision as of 06:33, 8 May 2024


The enable-source-map Element



Syntax:

<enable-source-map>true|false</enable-source-map>
[Default: false]

It specifies whether to produce source map links for browsers to load the JavaScript/TypeScript source. By default, ZK only loads *.wpd, the merged JavaScript files of the same package. One wpd file contains multiple JavaScript files. Those files are merged upon JavaScript widget packages (e.g. zk.wpd or zkbind.wpd).

DisabledSourceMap.png

When enabling it, you can open the browser developer tool to check loaded source files and help you debug. You will see //# sourceMappingURL=/link-to-source-map.map in a wpd file.

ZK 8 and 9

A browser loads and shows each JavaScript widget file under src:

Zk9SourceMap.png

(A known issue that the line number in a source file might not always match the actual running code)

ZK 10

A browser loads and show each TypeScript widget file under zk-build-utils:

Zk10SourceMap.png



Last Update : 2024/05/08

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.