mirror of
https://github.com/vercel/eve.git
synced 2026-09-20 05:35:39 +08:00
91e43ae7f4
Signed-off-by: Andrew Barba <barba@hey.com>
12 lines
303 B
JavaScript
12 lines
303 B
JavaScript
import { createDeclarationCopier } from "./_shared.mjs";
|
|
|
|
export default {
|
|
packageName: "@types/json-schema",
|
|
compiledPath: "json-schema",
|
|
typeOnly: true,
|
|
copyDeclarations: createDeclarationCopier({
|
|
declarationRoot: ".",
|
|
files: [{ source: "index.d.ts", output: "index.d.ts" }],
|
|
}),
|
|
};
|