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"; import { integration as htaccessIntegration } from "./htaccess.js";
export type { Config as HtaccessConfig, RedirectCode, ErrorCode } from "./htaccess"; export type { Config as HtaccessConfig, RedirectCode, ErrorCode } from "./htaccess.d.ts";
export { htaccessIntegration }; export { htaccessIntegration };
export default htaccessIntegration; export default htaccessIntegration;

View file

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