react-code-dataset / tsdx /src /constants.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
545 Bytes
import { resolveApp } from './utils';
export const paths = {
appPackageJson: resolveApp('package.json'),
tsconfigJson: resolveApp('tsconfig.json'),
testsSetup: resolveApp('test/setupTests.ts'),
appRoot: resolveApp('.'),
appSrc: resolveApp('src'),
appErrorsJson: resolveApp('errors/codes.json'),
appErrors: resolveApp('errors'),
appDist: resolveApp('dist'),
appConfig: resolveApp('tsdx.config.js'),
jestConfig: resolveApp('jest.config.js'),
progressEstimatorCache: resolveApp('node_modules/.cache/.progress-estimator'),
};