2016-03-12 09:21:16 +00:00
|
|
|
"use strict";
|
2016-05-19 20:11:18 +00:00
|
|
|
/// <reference path="./typings/index.d.ts" />
|
2016-02-19 23:53:23 +00:00
|
|
|
var plugins = require("./npmts.plugins");
|
2016-05-19 22:55:14 +00:00
|
|
|
exports.cwd = plugins.smartcli.get.cwd().path;
|
2016-02-22 21:22:39 +00:00
|
|
|
//Directories
|
2016-05-19 22:55:14 +00:00
|
|
|
exports.tsDir = plugins.path.join(exports.cwd, "ts/");
|
|
|
|
exports.distDir = plugins.path.join(exports.cwd, "dist/");
|
|
|
|
exports.docsDir = plugins.path.join(exports.cwd, "docs/");
|
|
|
|
exports.testDir = plugins.path.join(exports.cwd, "test/");
|
|
|
|
exports.typingsDir = plugins.path.join(exports.cwd, "ts/typings/");
|
|
|
|
exports.coverageDir = plugins.path.join(exports.cwd, "coverage/");
|
|
|
|
exports.npmtsAssetsDir = plugins.path.join(__dirname, "../assets/");
|
2016-02-22 21:22:39 +00:00
|
|
|
//Files
|
2016-05-19 22:55:14 +00:00
|
|
|
exports.indexTS = plugins.path.join(exports.cwd, "ts/index.ts");
|
|
|
|
exports.testTS = plugins.path.join(exports.cwd, "ts/test.ts");
|