From be34472199c744a6d3788b72356ddfd5695f8e67 Mon Sep 17 00:00:00 2001 From: Alexander Svinarev Date: Mon, 16 Feb 2026 22:37:59 +0300 Subject: [PATCH] fix(oxlint): add configuration_schema.json to package exports The configuration_schema.json file was not accessible after adding the `exports` field in #18601. This adds the missing export entry. Fixes the import: `import schema from 'oxlint/configuration_schema.json'` --- npm/oxlint/package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/npm/oxlint/package.json b/npm/oxlint/package.json index ec7a16244c8ad..270e9f0c46469 100644 --- a/npm/oxlint/package.json +++ b/npm/oxlint/package.json @@ -42,6 +42,9 @@ "./plugins-dev": { "types": "./dist/plugins-dev.d.ts", "default": "./dist/plugins-dev.js" + }, + "./configuration_schema.json": { + "default": "./configuration_schema.json" } }, "peerDependencies": {