Typescript Compiler Inconsistency


#1

Hello,

When using jovo with typescript the following inconsistency occurs:

Executing npm run tsc executes the typescript compiler and copies the compiled js files into dist/ using the following structure:

dist/
    src/
        app.js
        ...
    test/

Executing jovo deploy --target zip also copies the compiled js files into the dist/ folder but results into the following structure (no src/ or test/ folder):

dist/
    app.js
    ...

Is this an intended behaviour?

Cheers, Michael