export interface ICompilerSettings {
    standard: boolean;
    spaces: number;
    comment: boolean;
    tags: true;
    output: string;
    types?: string[];
}
