소스 검색

Notes for future me

Roel van Uden 9 년 전
부모
커밋
1288d0b3f8
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      ts.js

+ 4 - 0
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;