fix(core): update

This commit is contained in:
2022-03-11 18:05:02 +01:00
parent 70245584d7
commit 9c9f7ae1dc
8 changed files with 102 additions and 25 deletions

View File

@ -1,5 +1,5 @@
import * as early from '@pushrocks/early';
early.start('tsbuild');
export * from './tsbuild.exports.js';
export * from './tsbuild.cli.js';
export * from './tsbuild.exports';
export * from './tsbuild.cli';
early.stop();

View File

@ -1,5 +1,5 @@
// import all the stuff we need
import * as plugins from './tsbuild.plugins.js';
import * as plugins from './tsbuild.plugins';
import { CompilerOptions } from 'typescript';
export { CompilerOptions, ScriptTarget, ModuleKind } from 'typescript';

View File

@ -1,5 +1,5 @@
import * as plugins from './tsbuild.plugins.js';
import * as tsbuild from './tsbuild.exports.js';
import * as plugins from './tsbuild.plugins';
import * as tsbuild from './tsbuild.exports';
export const runCli = async () => {
const tsbuildCli = new plugins.smartcli.Smartcli();

View File

@ -1,5 +1,5 @@
import * as plugins from './tsbuild.plugins.js';
import { compiler, CompilerOptions, mergeCompilerOptions } from './tsbuild.classes.compiler.js';
import * as plugins from './tsbuild.plugins';
import { compiler, CompilerOptions, mergeCompilerOptions } from './tsbuild.classes.compiler';
export * from './tsbuild.classes.compiler';