de.richsource.gradle.plugins.typescript
                  Owner:
                  
                    
                    Sönke Sothmann
                  
                
This plugin makes it easy to build TypeScript projects using Gradle. Among other things, the plugin provides a task to run the TypeScript compiler.
https://github.com/sothmann/typescript-gradle-plugin
Sources: https://github.com/sothmann/typescript-gradle-plugin
Version 1.8.0 (latest)
Created 20 March 2016.
                This plugin makes it easy to build TypeScript projects using Gradle. Among other things, the plugin provides a task to run the TypeScript compiler.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("de.richsource.gradle.plugins.typescript") version "1.8.0"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("de.richsource.gradle.plugins.typescript:de.richsource.gradle.plugins.typescript.gradle.plugin:1.8.0") }It can then be applied in the precompiled script plugin:plugins { id("de.richsource.gradle.plugins.typescript") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.richsource.gradle.plugins.typescript:de.richsource.gradle.plugins.typescript.gradle.plugin:1.8.0") } } apply(plugin = "de.richsource.gradle.plugins.typescript")
- Applying plugins to all subprojects .