diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 1b6d82c8d..4c64a2612 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -67,6 +67,10 @@ runs: toolchain: stable components: clippy if: ${{ inputs.partial == 'false' }} + - name: Install wasm-pack + run: cargo install wasm-pack + shell: bash + if: ${{ inputs.partial == 'false' }} - name: Install RTI run: | cd lingua-franca diff --git a/tsconfig.json b/tsconfig.json index cf94e778a..ecd15dd46 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,13 +1,11 @@ { "compilerOptions": { - // "esModuleInterop": true, "inlineSources": false, "lib": [ "ES2022", "DOM" // hackily added to include wasm support ], "module": "Node16", - // "moduleResolution": "node", "outDir": "./out", "sourceMap": false, "target": "ES2022",