File size: 1,516 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
interface SharedOpts {
// JS target
target: 'node' | 'browser';
// Path to tsconfig file
tsconfig?: string;
// Is error extraction running?
extractErrors?: boolean;
}
export type ModuleFormat = 'cjs' | 'umd' | 'esm' | 'system';
export interface BuildOpts extends SharedOpts {
name?: string;
entry?: string | string[];
format: 'cjs,esm';
target: 'browser';
}
export interface WatchOpts extends BuildOpts {
verbose?: boolean;
noClean?: boolean;
// callback hooks
onFirstSuccess?: string;
onSuccess?: string;
onFailure?: string;
}
export interface NormalizedOpts
extends Omit<WatchOpts, 'name' | 'input' | 'format'> {
name: string;
input: string[];
format: [ModuleFormat, ...ModuleFormat[]];
}
export interface TsdxOptions extends SharedOpts {
// Name of package
name: string;
// path to file
input: string;
// Environment
env: 'development' | 'production';
// Module format
format: ModuleFormat;
/** If `true`, Babel transpile and emit ES5. */
legacy: boolean;
// Is minifying?
minify?: boolean;
// Is this the very first rollup config (and thus should one-off metadata be extracted)?
writeMeta?: boolean;
// Only transpile, do not type check (makes compilation faster)
transpileOnly?: boolean;
}
export interface PackageJson {
name: string;
source?: string;
jest?: any;
eslint?: any;
dependencies?: { [packageName: string]: string };
devDependencies?: { [packageName: string]: string };
engines?: {
node?: string;
};
}
|