mirror of
https://github.com/grafana/grafana.git
synced 2025-01-09 23:53:25 -06:00
20 lines
341 B
JavaScript
20 lines
341 B
JavaScript
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,
|
|
}
|
|
}
|
|
};
|
|
|
|
};
|