UNPKG

1.04 kBTypeScriptView Raw
1/**
2 * This file was automatically generated by json-schema-to-typescript.
3 * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
4 * and run json-schema-to-typescript to regenerate this file.
5 */
6/**
7 * JSON Schema for secondary entrypoint `ng-package.json` description file
8 */
9export interface NgPackageEntryConfig {
10 $schema?: string;
11 /**
12 * Description of the library's entry point.
13 */
14 lib?: {
15 /**
16 * Entry file to the public API (default: `src/public_api.ts`).
17 */
18 entryFile?: string;
19 /**
20 * Filename of the auto-generated flat module file (if empty, defaults to the package name as given in `package.json`).
21 */
22 flatModuleFile?: string;
23 /**
24 * Embed assets in css file using data URIs - see https://css-tricks.com/data-uris
25 */
26 cssUrl?: "none" | "inline";
27 /**
28 * Any additional paths that should be used to resolve style imports
29 */
30 styleIncludePaths?: string[];
31 };
32}