tscoverage/ts/npmts.paths.ts

24 lines
744 B
TypeScript
Raw Normal View History

2016-05-25 05:23:48 +02:00
import "typings-global";
2016-02-20 00:53:23 +01:00
import plugins = require("./npmts.plugins");
2016-06-10 00:53:30 +02:00
//Npmts Paths
export let npmtsPackageRoot = plugins.path.join(__dirname,"../");
//Project paths
2016-06-10 06:14:12 +02:00
export let cwd = process.cwd();
2016-02-22 22:22:39 +01:00
//Directories
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 22:22:39 +01:00
export let npmtsAssetsDir = plugins.path.join(__dirname,"../assets/");
2016-03-14 04:32:52 +01:00
2016-02-22 22:22:39 +01:00
//Files
export let indexTS = plugins.path.join(cwd,"ts/index.ts");
export let testTS = plugins.path.join(cwd,"ts/test.ts");