| 3 | */ |
| 4 | // #region Interfaces |
| 5 | export interface AttwOptions extends CheckPackageOptions { |
| 6 | module?: typeof import("@arethetypeswrong/core"); |
| 7 | profile?: "strict" | "node16" | "esm-only"; |
| 8 | level?: "error" | "warn"; |
| 9 | ignoreRules?: ("no-resolution" | "untyped-resolution" | "false-cjs" | "false-esm" | "cjs-resolves-to-esm" | "fallback-condition" | "cjs-only-exports-default" | "named-exports" | "false-export-default" | "missing-export-equals" | "unexpected-module-syntax" | "internal-resolution-error" | (string & {}))[]; |
| 10 | } |
| 11 | export interface BuildContext { |
| 12 | options: ResolvedConfig; |
| 13 | hooks: Hookable<TsdownHooks>; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…