Doric command line tool refact to typescript

This commit is contained in:
pengfeizhou
2021-02-05 15:33:21 +08:00
committed by osborn
parent e32e6a321a
commit e9035858aa
63 changed files with 2149 additions and 109 deletions

View File

@@ -0,0 +1,27 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}