gitextract_lihzjcl8/ ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── appveyor.yml ├── examples/ │ ├── .gitignore │ ├── HelloWorld.elm │ ├── compileHelloWorld.js │ └── elm.json ├── package.json ├── src/ │ ├── index.ts │ └── worker.ts ├── test/ │ ├── compile.ts │ ├── compileSync.ts │ ├── compileToStringSync.ts │ └── fixtures/ │ ├── Bad.elm │ ├── BasicWorker.elm │ ├── Nested/ │ │ ├── Child.elm │ │ ├── Parent/ │ │ │ └── Test.elm │ │ └── Test/ │ │ └── Child.elm │ ├── Parent.elm │ ├── ParentWithNestedDeps.elm │ ├── ParentWithPort.elm │ ├── ParentWithUnindentedMultilineComment.elm │ ├── SimplestMain.elm │ ├── Test/ │ │ ├── ChildA.elm │ │ ├── ChildB.elm │ │ └── Sample/ │ │ └── NestedChild.elm │ ├── TypeError.elm │ └── elm.json └── tsconfig.json