10 lines
335 B
TypeScript
10 lines
335 B
TypeScript
|
/// <reference path="./index.ts" />
|
||
|
module NpmtsPaths {
|
||
|
export var init = function() {
|
||
|
var paths:any = {};
|
||
|
paths.cwd = plugins.smartcli.get.cwd().path;
|
||
|
paths.indexTS = plugins.path.join(paths.cwd,"ts/index.ts");
|
||
|
paths.testTS = plugins.path.join(paths.cwd,"ts/test.ts");
|
||
|
return paths;
|
||
|
}
|
||
|
}
|