Package Exports
- source-academy-wabt
- source-academy-wabt/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (source-academy-wabt) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
WABT-Parser
Note on Preprocessor
- This project uses the C Preprocessor to preprocess certain TypeScript files.
Running the Preprocessor
- To run the preprocessor, do
yarn run preprocess
oryarn run cpp
.
Macro Directives
- Since macro directives such as
#include "something"
are not valid TypeScript/JavaScript, they prefixed with a triple-forward slash///#include "something"
. Triple slashes will be stripped from the source files before preprocessing, so take note not to use them as comments.