# HG changeset patch # User cin # Date 2020-12-29 19:03:10 # Node ID 346ba910a5425ed95f7a67ef4db1dbbf599e2cab # Parent a5a55d949be13d558eab29b2ee5f47cbdb4b1492 Changed build script to include local typings to compilation task diff --git a/build.gradle b/build.gradle --- a/build.gradle +++ b/build.gradle @@ -31,13 +31,16 @@ typescript { } configureTsMain { + sourceFiles { + from sources.main.typings + } compilerOptions { - //baseUrl = "$projectDir/src" + // baseUrl = "$projectDir/src" /*paths = [ "dojo/*" : [ "typings/dojo/*" ], "dijit/*" : [ "typings/dijit/*" ] ]*/ - types = ["requirejs", "dojo-typings", "$projectDir/src/main/typings"] + types = ["requirejs", "dojo-typings"] } }