BREAKING(structure): modernize internal structure and support unpacking

This commit is contained in:
2025-12-13 22:59:58 +00:00
parent 4ebc37fa5a
commit e5fcbb9a09
19 changed files with 1605 additions and 1318 deletions

View File

@@ -1,5 +1,14 @@
import * as early from '@push.rocks/early';
early.start('tsbuild');
export * from './tsbuild.exports.js';
export * from './tsbuild.cli.js';
// Export from new modular structure
export * from './mod_fs/index.js';
export * from './mod_config/index.js';
export * from './mod_unpack/index.js';
export * from './mod_compiler/index.js';
export * from './mod_cli/index.js';
// Re-export TypeScript types for convenience
export type { CompilerOptions, ScriptTarget, ModuleKind } from 'typescript';
early.stop();