tech(typescript): testing for how to migrate to typescript

This commit is contained in:
Torkel Ödegaard
2015-09-09 09:57:06 +02:00
parent 3e9e34afb8
commit 3c40310e9b
10 changed files with 443 additions and 1 deletions

View File

@ -0,0 +1,19 @@
module.exports = function() {
'use strict';
return {
base: {
src: ['public/app/**/*.ts'],
dest: '',
options: {
module: 'amd', //or commonjs
target: 'es5', //or es3
keepDirectoryHierarchy: true,
declaration: true,
watch: true,
sourceMap: true,
}
}
};
};