typescript-gradle-plugin
typescript-gradle-plugin copied to clipboard
TypeScript Gradle Plugin, integrates the TypeScript compiler into a Gradle build
This is the error log: ``` - Type 'CompileTypeScript' property 'allowJs' has redundant getters: 'getAllowJs()' and 'isAllowJs()'. Reason: Boolean property 'allowJs' has both an `is` and a `get` getter. Possible...
Some newer options are not yet supported: - strict - strictNullChecks - noImplicitThis - alwaysStrict - noUnusedLocals - noUnusedParameters These are the ones I need :) There are surely others,...
Update example code, such that running gradle to compile them works, rather than complaining about the typscript-gradle-plugin (pom and jar) not being present. Maybe also update them to current gradle...
Support for declaring a list of tsd files that should be pulled in to build, similar to how the bower gradle plugin is configured to install dependencies: https://github.com/craigburke/bower-installer-gradle https://github.com/DefinitelyTyped/tsd Same...
Include the tsc.js and *.d.ts files from a TypeScript node.js installation in the plugin. Call the compiler by invoking the node executable. node tsc.js [Arguments for tsc] Keep the "old...