12 lines
431 B
JavaScript
12 lines
431 B
JavaScript
|
/// <reference path="./index.ts" />
|
||
|
var NpmtsPaths;
|
||
|
(function (NpmtsPaths) {
|
||
|
NpmtsPaths.init = function () {
|
||
|
var paths = {};
|
||
|
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;
|
||
|
};
|
||
|
})(NpmtsPaths || (NpmtsPaths = {}));
|
||
|
//# sourceMappingURL=npmts.paths.js.map
|