Fix eslint-config package internal imports so other packages can use it for their eslint config

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-01-21 18:34:49 +04:00
parent 469e1431a3
commit 21342fba05
9 changed files with 31 additions and 17 deletions

View File

@@ -5,6 +5,7 @@
"skipLibCheck": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"allowImportingTsExtensions": true,
"moduleDetection": "force",
"verbatimModuleSyntax": true,
"noEmit": true,
@@ -15,5 +16,5 @@
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["src/**/*.ts", "eslint.config.js"]
"include": ["src/**/*.ts", "eslint.config.mjs"]
}