UNPKG

quant-zero

Version:

Node-Quant is a powerful Node.js package for developing and testing quantitative trading strategies in cryptocurrency markets, offering tools for backtesting and performance analysis.

11 lines (9 loc) 262 B
import { defineConfig } from 'tsup' import path from 'path' export default defineConfig({ entry: ['src/index.ts'], splitting: false, sourcemap: true, clean: true, publicDir: path.join(process.cwd(), 'src', 'managers', 'Report', 'views'), })