create a package org.foo.bar with a class FooBar.java
Add a @jsweet.lang.Root annotation on the package
Run the jsweet transpiler w/o the module option
=> observe how the generated FooBar.ts directly under the root output folder (as expected)
Now turn on the module output (for instance using module = 'amd' in the gradle options)
=> observe how this time FooBar.ts is located under a org/foo/bar sub-folder
To reproduce:
@jsweet.lang.Root
annotation on the packagemodule = 'amd'
in the gradle options) => observe how this time FooBar.ts is located under a org/foo/bar sub-folder