2016-01-16 13:33:09 +00:00
|
|
|
/// <reference path="./index.ts" />
|
|
|
|
module NpmtsPaths {
|
|
|
|
export var init = function() {
|
|
|
|
var paths:any = {};
|
|
|
|
paths.cwd = plugins.smartcli.get.cwd().path;
|
2016-01-31 21:24:57 +00:00
|
|
|
paths.tsDir = plugins.path.join(paths.cwd,"ts/");
|
2016-01-16 13:33:09 +00:00
|
|
|
paths.indexTS = plugins.path.join(paths.cwd,"ts/index.ts");
|
|
|
|
paths.testTS = plugins.path.join(paths.cwd,"ts/test.ts");
|
2016-01-30 03:57:24 +00:00
|
|
|
paths.testDir = plugins.path.join(paths.cwd,"test/");
|
2016-01-16 13:33:09 +00:00
|
|
|
return paths;
|
|
|
|
}
|
|
|
|
}
|