Fix imports?

This commit is contained in:
Bad Manners 2024-08-30 16:58:38 -03:00
parent 64354e10e7
commit 8c989402c2
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,4 @@
import { integration as htaccessIntegration } from "./htaccess";
export type { Config as HtaccessConfig, RedirectCode, ErrorCode } from "./htaccess";
import { integration as htaccessIntegration } from "./htaccess.js";
export type { Config as HtaccessConfig, RedirectCode, ErrorCode } from "./htaccess.d.ts";
export { htaccessIntegration };
export default htaccessIntegration;

View file

@ -3,6 +3,7 @@
"compilerOptions": {
"outDir": "./dist",
"target": "ES2022",
"moduleResolution": "bundler",
"declaration": true,
"stripInternal": true,
"skipLibCheck": true,