A grunt multitask plugin that processes @embed decorators and generates the corresponding library**.tse**.
- ts-embed utils to load the generated .tse files
$> npm install grunt-ts-embed --save-dev
grunt.initConfig({
demo: {
src: ['./demo/**/*.ts'],
out:'./demo/bin/embedOutput.tse'
}
});
grunt.loadNpmTasks('grunt-ts-embed');