Skip to content

Instantly share code, notes, and snippets.

@vvakame
Created February 23, 2013 12:22
Show Gist options
  • Save vvakame/5019579 to your computer and use it in GitHub Desktop.
Save vvakame/5019579 to your computer and use it in GitHub Desktop.
findFile がないと困る事例
module.exports = function (grunt) {
"use strict";
grunt.initConfig({
typescript:{
test:{
src:["test.ts"],
dest:"test.js"
}
}
});
grunt.loadNpmTasks("grunt-typescript");
grunt.registerTask('default', ['typescript']);
};
{
"name": "grunt-typescript",
"version": "0.0.1",
"dependencies": {
"grunt": "0.3.17",
"grunt-typescript": "0.0.9",
"tsd": "0.3.1"
}
}
///<reference path='node_modules/tsd/src/tsd.ts' />
console.log("ignite");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment