tsbundle/ts/tsbundle.paths.ts

8 lines
335 B
TypeScript
Raw Normal View History

2019-06-16 15:47:34 +00:00
import * as plugins from './tsbundle.plugins';
export const cwd = process.cwd();
export const packageDir = plugins.path.join(__dirname, '../');
export const htmlDir = plugins.path.join(cwd, './html');
2020-03-13 18:54:31 +00:00
export const distWebDir = plugins.path.join(cwd, './dist_ts_web');
2020-03-13 14:53:15 +00:00
export const assetsDir = plugins.path.join(packageDir, 'assets');