Add a tsconfig.json file to the root of your project:
{
// TypeScript to JavaScript compilation options. Add what you want here.
"compilerOptions": {
"noImplicitAny": true, // Do not allow implicit any variables.
"noEmitOnError": true, // Stop processing on error.
"removeComments": false, // Do not remove comments.
"sourceMap": false, // Do not create source map files.
"module": "commonjs", // Use the Common JS modules or some other format.
"target": "es5" // Compile to ECMAScript 5.
},
// Exclude the bower_components, node_modules and wwwroot folders from
// being scanned for TypeScript (.ts) or TypeScript definition (.d.ts) files.
"exclude": [
"bower_components",
"node_modules",
"wwwroot"
]
}
Add the gulp-typescript to compile .ts files, gulp-concat to concatenate files and merge-stream to merge Gulp streams to package.json:
{
// Omitted...
"devDependencies": {
// Omitted...
"gulp-concat": "2.6.0",
"gulp-typescript": "2.9.2",
"merge-stream": "1.0.0"
}
}
In your gulpfile.js file, add a new build TypeScript task (I show how to do incremental building for faster build times so this is a little advanced, you can look at the documentation for gulp-typescript if you want to look at something simpler):
var gulp = require("gulp");
var concat = require("gulp-concat");
var typescript = require("gulp-typescript");
var merge = require("merge-stream");
// A TypeScript project is used to enable faster incremental compilation,
// rather than recompiling everything from scratch each time. Each
// resulting compiled file has it's own project which is stored in
// the typeScriptProjects array.
var typeScriptProjects = [];
function getTypeScriptProject(name) {
var item;
for (var i = 0; i < typeScriptProjects.length; ++i) {
if (typeScriptProjects[i].name === name) {
item = typeScriptProjects[i];
}
}
if (item === undefined) {
// Use the tsconfig.json file to specify how TypeScript (.ts)
// files should be compiled to JavaScript (.js).
var project = typescript.createProject("tsconfig.json");
item = { name: name, project: project };
typeScriptProjects.push(item);
}
return item.project;
}
var sources = {
// An array containing objects required to build a single JavaScript file.
ts: [
{
// name - The name of the final JavaScript file to build.
name: "main.js",
// paths - A single or array of paths to TypeScript files.
paths: [
"Folder1/one.ts",
"Folder1/two.ts",
"Folder2/**/*.ts"
]
}
]
};
gulp.task("build-ts", function () {
var tasks = sources.ts.map(function (source) { // For each set of source files in the sources.
return gulp // Return the stream.
.src(source.paths) // Start with the source paths.
.pipe(typescript(getTypeScriptProject(source))) // Compile TypeScript (.ts) to JavaScript (.js) using the specified options.
.pipe(concat(source.name)) // Concatenate JavaScript files into a single file with the specified name.
.pipe(gulp.dest("./wwwroot/js/")); // Saves the JavaScript file to the specified destination path.
});
return merge(tasks); // Combine multiple streams to one and return it so the task can be chained.
});