c040e556ae
* chore: eslintrc fix * chore: update package json with new build scripts, correct build folder * feat: build ui scripts * chore: start fixing eslint * chore: fix interfaces name * feat: add copy dist source to build with cp (for now)
5 lines
203 B
TypeScript
5 lines
203 B
TypeScript
import * as path from 'path';
|
|
|
|
export const SRC_FOLDER_PATH = path.resolve('./src');
|
|
export const BUILD_FOLDER_PATH = path.resolve('./build');
|
|
export const TS_BUILD_FOLDER_PATH = path.resolve('./dist');
|