Skip to content

Instantly share code, notes, and snippets.

@colinhicks
Created December 18, 2012 18:41
Show Gist options
  • Save colinhicks/4330733 to your computer and use it in GitHub Desktop.
Save colinhicks/4330733 to your computer and use it in GitHub Desktop.
Gruntfile TypeScript config
typescript: {
compile: {
files: {
'temp/scripts/app-all.js': 'app/scripts/**/*.ts'
},
options: {
comments: true,
declarations: false,
exec: false,
module: 'commonjs',
target: 'ES3',
sourcemap:true
}
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment