##// END OF EJS Templates
Added tag v1.1.0 for changeset 1a0018655d1c
Added tag v1.1.0 for changeset 1a0018655d1c

File last commit:

r50:346ba910a542 v1.0.5 default
r64:3f27d1084ced default
Show More
build.gradle
76 lines | 1.9 KiB | text/x-groovy | GroovyLexer
cin
Initial commit, copied files related to .tsx scripts support.
r0 plugins {
cin
sync
r8 id "org.implab.gradle-typescript" version "1.3.3"
cin
Initial commit, copied files related to .tsx scripts support.
r0 id "ivy-publish"
}
typescript {
compilerOptions {
lib = ["es5", "dom", "scripthost", "es2015.promise", "es2015.symbol", "es2015.iterable"]
cin
created typings for basic part of dojo and dijit further work is required to...
r2 //listFiles = true
cin
Initial commit, copied files related to .tsx scripts support.
r0 declaration = true
cin
typescript strict mode...
r1 strict = true
cin
Initial commit, copied files related to .tsx scripts support.
r0 types = []
module = "amd"
it.target = "es5"
experimentalDecorators = true
jsx = "react"
jsxFactory = "createElement"
moduleResolution = "node"
cin
switched back to dojo-typings module...
r4 // dojo-typings are sick
skipLibCheck = true
cin
created typings for basic part of dojo and dijit further work is required to...
r2 // traceResolution = true
// baseUrl = "./"
// paths = [ "*": [ "$projectDir/src/typings/*" ] ]
// baseUrl = "$projectDir/src/typings"
// typeRoots = ["$projectDir/src/typings"]
cin
Initial commit, copied files related to .tsx scripts support.
r0 }
tscCmd = "$projectDir/node_modules/.bin/tsc"
tsLintCmd = "$projectDir/node_modules/.bin/tslint"
esLintCmd = "$projectDir/node_modules/.bin/eslint"
}
configureTsMain {
cin
Changed build script to include local typings to compilation task
r50 sourceFiles {
from sources.main.typings
}
cin
Initial commit, copied files related to .tsx scripts support.
r0 compilerOptions {
cin
Changed build script to include local typings to compilation task
r50 // baseUrl = "$projectDir/src"
cin
Added support for ContentPane, corrected widget startup calls
r48 /*paths = [
cin
Working on dojo typings
r15 "dojo/*" : [ "typings/dojo/*" ],
"dijit/*" : [ "typings/dijit/*" ]
cin
Switched to dojo-typings...
r22 ]*/
cin
Changed build script to include local typings to compilation task
r50 types = ["requirejs", "dojo-typings"]
cin
created typings for basic part of dojo and dijit further work is required to...
r2 }
}
cin
sync
r8 configureTsTest {
compilerOptions {
cin
fixed strict mode @bind decorator
r28 typeRoots = []
cin
Corrected tsx typings
r41 types = ["requirejs", sources.main.output.typingsDir.get().toString() ]
cin
sync
r8 }
}
cin
created typings for basic part of dojo and dijit further work is required to...
r2 npmPackMeta {
meta {
name = "@$npmScope/$project.name"
cin
Initial commit, copied files related to .tsx scripts support.
r0 }
}
cin
created typings for basic part of dojo and dijit further work is required to...
r2 task npmPackTypings(type: Copy) {
cin
sync
r7 dependsOn typings
cin
created typings for basic part of dojo and dijit further work is required to...
r2
cin
added 'dom-inject' and 'css' modules
r6 npmPackContents.dependsOn it
cin
created typings for basic part of dojo and dijit further work is required to...
r2
cin
sync
r7 from typescript.typingsDir
cin
created typings for basic part of dojo and dijit further work is required to...
r2 into npm.packageDir
}
cin
Initial commit, copied files related to .tsx scripts support.
r0 task printVersion {
doLast {
cin
created typings for basic part of dojo and dijit further work is required to...
r2 println "packageName: ${npmPackMeta.metadata.get().name}";
cin
Initial commit, copied files related to .tsx scripts support.
r0 println "version: $version";
println "target: $typescript.compilerOptions.target";
println "module: $typescript.compilerOptions.module";
println "symbols: $symbols";
}
}