2022-03-16 00:21:05 +01:00
|
|
|
import * as plugins from './plugins.js';
|
2019-06-16 17:47:34 +02:00
|
|
|
|
|
|
|
export const cwd = process.cwd();
|
2022-03-14 16:32:12 +01:00
|
|
|
export const packageDir = plugins.path.join(
|
|
|
|
plugins.smartpath.get.dirnameFromImportMetaUrl(import.meta.url),
|
|
|
|
'../'
|
|
|
|
);
|
2019-06-16 17:47:34 +02:00
|
|
|
export const htmlDir = plugins.path.join(cwd, './html');
|
2020-03-14 22:40:09 +00:00
|
|
|
export const distServeDir = plugins.path.join(cwd, './dist_serve');
|
2020-03-13 14:53:15 +00:00
|
|
|
export const assetsDir = plugins.path.join(packageDir, 'assets');
|
2022-05-04 18:51:15 +02:00
|
|
|
export const tsconfigPath = plugins.path.join(assetsDir, './tsconfig.json');
|