@ant-design/tools
Version:
tools for ant design
14 lines (13 loc) • 343 B
TypeScript
interface CompilerOptions {
noUnusedParameters: boolean;
noUnusedLocals: boolean;
strictNullChecks: boolean;
target: string;
jsx: string;
moduleResolution: string;
declaration: boolean;
allowSyntheticDefaultImports: boolean;
[key: string]: unknown;
}
export default function (): CompilerOptions;
export {};