From 1288d0b3f8e208d0d2abb0060acc4e08bc5d079c Mon Sep 17 00:00:00 2001 From: Roel van Uden Date: Sat, 7 Mar 2015 13:29:36 +0100 Subject: [PATCH] Notes for future me --- ts.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ts.js b/ts.js index c004547..3865d22 100644 --- a/ts.js +++ b/ts.js @@ -4,6 +4,10 @@ var fs = require('fs'); var path = require('path'); var isTest = process.argv[2] === '--only-test'; +// TODO: This file can use some cleaning up. We want to use the tsconfig.json +// and go from there, but then without source maps. That should give us a final +// build output. For now, this legacy build file will remain to do its job. + read(function(err, fileNames) { clean(fileNames, function() { var hasLintError = false;