@ainc/script
Version:
Script compiler for typescript
34 lines • 829 B
TypeScript
/**
*****************************************
* 配置对象
*****************************************
*/
export interface TSConfig {
compilerOptions?: {
baseUrl?: string;
paths?: {
[key: string]: string[];
};
alias?: {
[key: string]: string | string[];
};
esModuleInterop?: boolean;
};
}
/**
*****************************************
* 解析配置文件
*****************************************
*/
export declare const tsconfig: TSConfig;
export declare const compilerOptions: {
baseUrl?: string | undefined;
paths?: {
[key: string]: string[];
} | undefined;
alias?: {
[key: string]: string | string[];
} | undefined;
esModuleInterop?: boolean | undefined;
};
//# sourceMappingURL=tsconfig.d.ts.map