Add a tsconfig to the Thumbnailer example

This commit is contained in:
joeduffy 2017-02-03 12:14:40 -08:00
parent 7854e0d393
commit a0de263930
2 changed files with 11 additions and 0 deletions

View file

@ -5,6 +5,7 @@ export class Thumbnailer extends mu.Stack {
private dest: mu.Bucket; // the destination to store thumbnails in.
constructor(source: mu.Bucket, dest: mu.Bucket) {
super();
this.source = source;
this.dest = dest;
this.source.onObjectCreated(async (event) => {

View file

@ -0,0 +1,10 @@
{
"compilerOptions": {
"target": "es6"
},
"files": [
"index.ts",
"thumb.ts"
]
}