com.gradlets.typescript
Owner: Robert Kruszewski
TypeScript build tooling with gradle
Sources: https://github.com/gradlets/gradle-typescript
Version 1.4.1 (latest)
1.4.1
Created 24 January 2022.
TypeScript build tooling for gradle
Using the plugins DSL:
plugins {
id("com.gradlets.typescript") version "1.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.gradlets.gradle.typescript:gradle-typescript:1.4.1")
}
}
apply(plugin = "com.gradlets.typescript")
Using the plugins DSL:
plugins {
id "com.gradlets.typescript" version "1.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradlets.gradle.typescript:gradle-typescript:1.4.1"
}
}
apply plugin: "com.gradlets.typescript"