mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2025-12-06 02:30:47 -08:00
7 lines
373 B
TypeScript
7 lines
373 B
TypeScript
import path from 'path';
|
|
|
|
import { sourcePath } from '../../src/constants/paths';
|
|
import { developmentSettingFolderName, developmentWikiFolderName } from '../../src/constants/fileNames';
|
|
|
|
export const temporarySettingPath = path.resolve(sourcePath, '..', developmentSettingFolderName);
|
|
export const mockWikiPath = path.resolve(sourcePath, '..', developmentWikiFolderName);
|