7723fa70a4
- move schemas to constants - increase npm package version
11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
import { join } from 'path';
|
|
|
|
const BASE_PATH = join(__dirname, '../constants');
|
|
|
|
export const BASE_APPLICATION_PROJECT_PATH = join(
|
|
BASE_PATH,
|
|
'base-application-project',
|
|
);
|
|
|
|
export const BASE_SCHEMAS_PATH = join(BASE_PATH, 'schemas');
|