| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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,
- }
- }
- };
- };
|