UNPKG

ngx-fastboot

Version:

ngx-fastboot is an Angular library designed to dynamically load configuration settings at runtime, optimizing application startup performance by offloading configurations to a separate compilation chunk.

14 lines (13 loc) 268 B
import { defineConfig } from "tsup"; export default defineConfig({ entry: ["src/index.ts"], format: ["esm"], dts: true, splitting: true, treeshake: true, sourcemap: true, minify: true, clean: true, cjsInterop: true, tsconfig: './tsconfig.json' });