mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
44 lines
931 B
JavaScript
44 lines
931 B
JavaScript
module.exports = function() {
|
|
'use strict';
|
|
|
|
return {
|
|
build: {
|
|
src: ['public/app/**/*.ts'],
|
|
dest: 'public_gen/app',
|
|
options: {
|
|
module: 'amd', //or commonjs
|
|
target: 'es5', //or es3
|
|
rootDir: 'public/app',
|
|
declaration: true,
|
|
sourceMap: true,
|
|
generateTsConfig: true,
|
|
}
|
|
},
|
|
|
|
// build2: {
|
|
// src: ['public/app/alerting#<{(||)}>#*.ts'],
|
|
// dest: 'public/.app_gen/alerting/all.js',
|
|
// options: {
|
|
// target: 'es5', //or es3
|
|
// declaration: true,
|
|
// sourceMap: true,
|
|
// }
|
|
// },
|
|
|
|
watch: {
|
|
src: ['public/app/**/*.ts'],
|
|
dest: 'public/app_gen',
|
|
options: {
|
|
module: 'amd', //or commonjs
|
|
target: 'es5', //or es3
|
|
rootDir: 'public/app',
|
|
declaration: true,
|
|
sourceMap: true,
|
|
watch: true,
|
|
generateTsConfig: true,
|
|
}
|
|
}
|
|
};
|
|
|
|
};
|