-
Notifications
You must be signed in to change notification settings - Fork 122
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
Configuration options are confusing #316
Comments
OK, I should remove the grunt.initConfig({
typescript: {
all: {
options: {
rootDir: 'app/',
},
// expand: true, <--- removed
src: 'app/**/*.ts',
outDir: '<%= config.web.tmp %>/',
},
},
}); |
Anyway, do you plan to support a stadndard grunt file configuration ( As I see it, it can be just a thin layer inside the plugin converting |
All are wrong. Docs : https://github.com/TypeStrong/grunt-ts#getting-started |
Yeah, probably I've posted the issue to a wrong repo ))) I played interchangeably with What about a support of a stadndard grunt file configuration ( IMHO one of the main goals of such grunt plugin is translating grunt's standard configuration options to a specific options of the relevant backend. |
While We have no plans to change the API at this time. |
Hi guys,
I really don't get it. What is the correct
typescript
configuration that is equivalent to:What I want to achieve is:
The problems that I have:
cwd
options is not supported.dest
is not honouredI tried
But it did not work.
The text was updated successfully, but these errors were encountered: