feat(dependencies and cache): remove caching

This commit is contained in:
2019-03-02 22:38:01 +01:00
parent 9ae4f9f82b
commit 92ac844954
5 changed files with 688 additions and 157 deletions

View File

@ -8,8 +8,7 @@ const defaultTsNodeOptions: tsNode.Options = {
target: <any>'es2015', // Script Target should be a string -> 2 is for ES2015
experimentalDecorators: true
},
skipIgnore: true,
cacheDirectory: path.join(__dirname, '../tscache')
skipIgnore: true
};
if (process.argv.includes('--web')) {
@ -21,7 +20,7 @@ if (process.argv.includes('--web')) {
}
if (process.argv.includes('--nocache')) {
defaultTsNodeOptions.cache = false;
// currently caching is not used
}
tsNode.register(defaultTsNodeOptions);