Fix imports?
This commit is contained in:
parent
64354e10e7
commit
8c989402c2
2 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
"compilerOptions": {
|
||||
"outDir": "./dist",
|
||||
"target": "ES2022",
|
||||
"moduleResolution": "bundler",
|
||||
"declaration": true,
|
||||
"stripInternal": true,
|
||||
"skipLibCheck": true,
|
||||
|
|
Loading…
Reference in a new issue