2016-05-25 03:23:48 +00:00
|
|
|
import "typings-global";
|
2016-02-19 23:53:23 +00:00
|
|
|
import plugins = require("./npmts.plugins");
|
2016-05-19 22:55:14 +00:00
|
|
|
|
|
|
|
export let cwd = plugins.smartcli.get.cwd().path;
|
2016-02-22 21:22:39 +00:00
|
|
|
|
|
|
|
//Directories
|
2016-05-19 22:55:14 +00:00
|
|
|
export let tsDir = plugins.path.join(cwd,"ts/");
|
|
|
|
export let distDir = plugins.path.join(cwd,"dist/");
|
|
|
|
export let docsDir = plugins.path.join(cwd,"docs/");
|
|
|
|
export let testDir = plugins.path.join(cwd,"test/");
|
|
|
|
export let typingsDir = plugins.path.join(cwd,"ts/typings/");
|
|
|
|
export let coverageDir = plugins.path.join(cwd,"coverage/");
|
2016-02-22 21:22:39 +00:00
|
|
|
|
2016-05-19 22:55:14 +00:00
|
|
|
export let npmtsAssetsDir = plugins.path.join(__dirname,"../assets/");
|
2016-03-14 03:32:52 +00:00
|
|
|
|
2016-02-22 21:22:39 +00:00
|
|
|
//Files
|
2016-05-19 22:55:14 +00:00
|
|
|
export let indexTS = plugins.path.join(cwd,"ts/index.ts");
|
|
|
|
export let testTS = plugins.path.join(cwd,"ts/test.ts");
|