-
Notifications
You must be signed in to change notification settings - Fork 927
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[lit-starter-ts] Output files into a directory instead of top level #2617
Comments
I think @justinfagnani meant that an end user of a published package shouldn't need to be aware of whether it's written in TypeScript or JavaScript. |
Yep ^ |
I think there are some valid concerns here. The .gitignore and clean script both get kind of gnarly (and would be nigh unmanageable if you had a bunch of TS files). |
Could have a top-level static |
Interpret paths relative to config file, fix some tsc/npm issues, release v0.1.1
Hey all,
I think I jumped the gun with lit/lit-element-starter-ts#10, my rationale was outputting files to the top level dir seems harder to maintain and can pollute your workspace when you run
npm run build
. At the very least it will mean..gitignore
for every.ts
file in yoursrc
I think that is enough reason to want to output the transplied
ts
into another directory like/build
.I'm not sure im sold on this reasoning since this is a TS starter repo and I don't think people would want to write raw
js
here.Would love your thoughts!
The text was updated successfully, but these errors were encountered: