Fix missing dependency in asc, see #157; Downgrade ts-node to v6

This commit is contained in:
dcodeIO
2018-07-04 21:47:58 +02:00
parent 5ca5df3dc7
commit c4ebc8c291
19 changed files with 79 additions and 91 deletions

View File

@ -49,11 +49,7 @@ if (argv.length) {
}
}
require("ts-node").register({
project: path.join(__dirname, "..", "src", "tsconfig.json"),
cache: false // FIXME: for some reason, if both asc and the parser tests use caching, the one
// invoked later cannot find some definition files.
});
require("ts-node").register({ project: path.join(__dirname, "..", "src", "tsconfig.json") });
require("../src/glue/js");
var Parser = require("../src/parser").Parser;