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";
|
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;
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue